From owner-cvs-src@FreeBSD.ORG Sun Aug 29 00:48:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DFF616A4CE; Sun, 29 Aug 2004 00:48:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41A8443D55; Sun, 29 Aug 2004 00:48:42 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T0mgvb029372; Sun, 29 Aug 2004 00:48:42 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T0mgZC029371; Sun, 29 Aug 2004 00:48:42 GMT (envelope-from iedowse) Message-Id: <200408290048.i7T0mgZC029371@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 00:48:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/common Makefile.inc bootstrap.h load_elf32_obj.c load_elf64_obj.c load_elf_obj.c src/sys/boot/i386/libi386 elf32_freebsd.c elf64_freebsd.c src/sys/boot/i386/loader conf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 00:48:42 -0000 iedowse 2004-08-29 00:48:42 UTC FreeBSD src repository Modified files: sys/boot/common Makefile.inc bootstrap.h sys/boot/i386/libi386 elf32_freebsd.c elf64_freebsd.c sys/boot/i386/loader conf.c Added files: sys/boot/common load_elf32_obj.c load_elf64_obj.c load_elf_obj.c Log: Add the loader side of support for preloading ELF relocatable object format modules, which are currently only used on the amd64 platform. This initial implementation just parses enough of the module to allow it to extract dependencies and load all the bits into the right place in memory, so the kernel must still do the full relocation and linking. The details of the loaded sections are passed to the kernel by supplying a copy of the ELF section header table as module metadata with the MODINFOMD_SHDR tag. Revision Changes Path 1.19 +1 -1 src/sys/boot/common/Makefile.inc 1.41 +2 -0 src/sys/boot/common/bootstrap.h 1.1 +6 -0 src/sys/boot/common/load_elf32_obj.c (new) 1.1 +6 -0 src/sys/boot/common/load_elf64_obj.c (new) 1.1 +515 -0 src/sys/boot/common/load_elf_obj.c (new) 1.14 +8 -0 src/sys/boot/i386/libi386/elf32_freebsd.c 1.15 +8 -0 src/sys/boot/i386/libi386/elf64_freebsd.c 1.25 +4 -0 src/sys/boot/i386/loader/conf.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 01:02:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2134516A4CE; Sun, 29 Aug 2004 01:02:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 026F643D66; Sun, 29 Aug 2004 01:02:34 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T12Xpr029807; Sun, 29 Aug 2004 01:02:33 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T12XV7029806; Sun, 29 Aug 2004 01:02:33 GMT (envelope-from iedowse) Message-Id: <200408290102.i7T12XV7029806@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 01:02:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_zeroidle.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 01:02:34 -0000 iedowse 2004-08-29 01:02:33 UTC FreeBSD src repository Modified files: sys/vm vm_zeroidle.c Log: Prevent vm_page_zero_idle_wakeup() from attempting to wake up the page zeroing thread before it has been created. It was possible for calls to free() very early in the boot process to panic here because the sleep queues were not yet initialised. Specifically, sysinit_add() running at SI_SUB_KLD would trigger this if the array of pointers became big enough to require uma_large_alloc() allocations. Submitted by: peter Revision Changes Path 1.27 +5 -2 src/sys/vm/vm_zeroidle.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 01:21:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFDBD16A4CE; Sun, 29 Aug 2004 01:21:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A031543D39; Sun, 29 Aug 2004 01:21:51 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T1Lp0V030606; Sun, 29 Aug 2004 01:21:51 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T1Lppf030605; Sun, 29 Aug 2004 01:21:51 GMT (envelope-from iedowse) Message-Id: <200408290121.i7T1Lppf030605@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 01:21:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern link_elf_obj.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 01:21:52 -0000 iedowse 2004-08-29 01:21:51 UTC FreeBSD src repository Modified files: sys/kern link_elf_obj.c Log: Add support for completing the installation of ELF relocatable object format modules that were read in by the loader. Loading modules via the loader should now work on the amd64 platform. Revision Changes Path 1.87 +208 -3 src/sys/kern/link_elf_obj.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 02:00:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6615516A4CE; Sun, 29 Aug 2004 02:00:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47A4E43D1F; Sun, 29 Aug 2004 02:00:51 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T20pKY031791; Sun, 29 Aug 2004 02:00:51 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T20pr1031790; Sun, 29 Aug 2004 02:00:51 GMT (envelope-from iedowse) Message-Id: <200408290200.i7T20pr1031790@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 02:00:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 02:00:51 -0000 iedowse 2004-08-29 02:00:51 UTC FreeBSD src repository Modified files: sys/conf kmod.mk Log: Unconditionally add `-fno-omit-frame-pointer' to CFLAGS when building modules on the amd64 platform. Without this, ddb stack traces cannot follow module function calls, which makes debugging very difficult. Revision Changes Path 1.167 +3 -0 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Sun Aug 29 02:36:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09F6816A4CE; Sun, 29 Aug 2004 02:36:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0CAD43D31; Sun, 29 Aug 2004 02:35:59 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T2ZxKk032756; Sun, 29 Aug 2004 02:35:59 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T2Zxlh032755; Sun, 29 Aug 2004 02:35:59 GMT (envelope-from iedowse) Message-Id: <200408290235.i7T2Zxlh032755@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 02:35:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usbdi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 02:36:00 -0000 iedowse 2004-08-29 02:35:59 UTC FreeBSD src repository Modified files: sys/dev/usb usbdi.c Log: Fix two cases where a successful return from usbd_transfer() would be treated as an error and cause a transfer to be freed twice. This can probably only happen at boot time when transfers are processed synchronously. Revision Changes Path 1.87 +2 -2 src/sys/dev/usb/usbdi.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 02:53:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C27416A4CE; Sun, 29 Aug 2004 02:53:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E95D43D41; Sun, 29 Aug 2004 02:53:07 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T2r7fC033201; Sun, 29 Aug 2004 02:53:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T2r75H033200; Sun, 29 Aug 2004 02:53:07 GMT (envelope-from marcel) Message-Id: <200408290253.i7T2r75H033200@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 29 Aug 2004 02:53:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/tga tga_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 02:53:07 -0000 marcel 2004-08-29 02:53:07 UTC FreeBSD src repository Modified files: sys/dev/tga tga_pci.c Log: Do not match TGA2 adapters. They are not compatible with TGA adapters, nor are they 3D accelarators as the description would like us to believe. Since the TGA2 adapter has a VGA mode (unlike the TGA adapter), one can use the VGA driver instead. This fixes GENERIC kernels on alpha with TGA2 adapters. Revision Changes Path 1.9 +0 -2 src/sys/dev/tga/tga_pci.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 03:59:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E371C16A4CF; Sun, 29 Aug 2004 03:59:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C618243D31; Sun, 29 Aug 2004 03:59:49 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T3xnlu038050; Sun, 29 Aug 2004 03:59:49 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T3xnnr038047; Sun, 29 Aug 2004 03:59:49 GMT (envelope-from iedowse) Message-Id: <200408290359.i7T3xnnr038047@repoman.freebsd.org> From: Ian Dowse Date: Sun, 29 Aug 2004 03:59:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 03:59:50 -0000 iedowse 2004-08-29 03:59:49 UTC FreeBSD src repository Modified files: sys/conf files Log: Add an entry for ichwd to hopefully unbreak the LINT build. Revision Changes Path 1.946 +1 -0 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Sun Aug 29 04:56:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89C6A16A4CE; Sun, 29 Aug 2004 04:56:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DCA643D1F; Sun, 29 Aug 2004 04:56:38 +0000 (GMT) (envelope-from dwhite@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T4ucB2042283; Sun, 29 Aug 2004 04:56:38 GMT (envelope-from dwhite@repoman.freebsd.org) Received: (from dwhite@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T4ucLI042282; Sun, 29 Aug 2004 04:56:38 GMT (envelope-from dwhite) Message-Id: <200408290456.i7T4ucLI042282@repoman.freebsd.org> From: Doug White Date: Sun, 29 Aug 2004 04:56:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/mpt mpt_freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 04:56:38 -0000 dwhite 2004-08-29 04:56:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/mpt mpt_freebsd.c Log: MFC: Pick up changes in rev 1.8 of src/sys/dev/ic/mpt_netbsd.c from NetBSD. Set the DMA SGL length correctly if the DMA request must be chained because it is too large to fit in one SGL. Approved by: re Revision Changes Path 1.15.4.1 +3 -1 src/sys/dev/mpt/mpt_freebsd.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 05:37:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 230CE16A4CE; Sun, 29 Aug 2004 05:37:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0621E43D46; Sun, 29 Aug 2004 05:37:21 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T5bKMo043314; Sun, 29 Aug 2004 05:37:20 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T5bKHr043313; Sun, 29 Aug 2004 05:37:20 GMT (envelope-from kensmith) Message-Id: <200408290537.i7T5bKHr043313@repoman.freebsd.org> From: Ken Smith Date: Sun, 29 Aug 2004 05:37:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 05:37:21 -0000 kensmith 2004-08-29 05:37:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release Makefile Log: s/5.2/5.3/ Approved by: re (scottl) Revision Changes Path 1.853.2.1 +2 -2 src/release/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 29 05:55:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3A6516A4CE; Sun, 29 Aug 2004 05:55:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B575943D45; Sun, 29 Aug 2004 05:55:58 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T5twsV043814; Sun, 29 Aug 2004 05:55:58 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T5twvI043813; Sun, 29 Aug 2004 05:55:58 GMT (envelope-from tjr) Message-Id: <200408290555.i7T5twvI043813@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 29 Aug 2004 05:55:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/timedef sl_SI.ISO8859-2.src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 05:55:59 -0000 tjr 2004-08-29 05:55:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/timedef sl_SI.ISO8859-2.src Log: MFC rev. 1.7: Begin month and weekday names with a lowercase letter. PR: 65317 Approved by: re (kensmith) Revision Changes Path 1.7.10.1 +51 -51 src/share/timedef/sl_SI.ISO8859-2.src From owner-cvs-src@FreeBSD.ORG Sun Aug 29 05:58:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6869216A4CE; Sun, 29 Aug 2004 05:58:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BCC143D67; Sun, 29 Aug 2004 05:58:11 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T5wBFb043876; Sun, 29 Aug 2004 05:58:11 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T5wBwI043875; Sun, 29 Aug 2004 05:58:11 GMT (envelope-from tjr) Message-Id: <200408290558.i7T5wBwI043875@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 29 Aug 2004 05:58:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/timedef sl_SI.UTF-8.src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 05:58:11 -0000 tjr 2004-08-29 05:58:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/timedef sl_SI.UTF-8.src Log: MFC rev. 1.2: Re-generate from sl_SI.ISO8859-2.src rev. 1.8 (lowercase month/weekday names). Approved by: re (kensmith) Revision Changes Path 1.1.2.1 +50 -50 src/share/timedef/sl_SI.UTF-8.src From owner-cvs-src@FreeBSD.ORG Sun Aug 29 05:59:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD41616A4D2; Sun, 29 Aug 2004 05:59:40 +0000 (GMT) Received: from smtp01.syd.iprimus.net.au (smtp01.syd.iprimus.net.au [210.50.30.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FF5643D64; Sun, 29 Aug 2004 05:59:40 +0000 (GMT) (envelope-from tim@robbins.dropbear.id.au) Received: from robbins.dropbear.id.au (211.26.233.196) by smtp01.syd.iprimus.net.au (7.0.028) id 412F6C140006FF08; Sun, 29 Aug 2004 15:59:38 +1000 Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id 1D988420F; Sun, 29 Aug 2004 15:59:34 +1000 (EST) Date: Sun, 29 Aug 2004 15:59:34 +1000 From: Tim Robbins To: "Tim J. Robbins" Message-ID: <20040829055934.GA51491@cat.robbins.dropbear.id.au> References: <200408290555.i7T5twvI043813@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408290555.i7T5twvI043813@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/timedef sl_SI.ISO8859-2.src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 05:59:40 -0000 On Sun, Aug 29, 2004 at 05:55:58AM +0000, Tim J. Robbins wrote: > tjr 2004-08-29 05:55:58 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > share/timedef sl_SI.ISO8859-2.src > Log: > MFC rev. 1.7: Begin month and weekday names with a lowercase letter. ^^^ Should have been 1.8. > > PR: 65317 > Approved by: re (kensmith) > > Revision Changes Path > 1.7.10.1 +51 -51 src/share/timedef/sl_SI.ISO8859-2.src From owner-cvs-src@FreeBSD.ORG Sun Aug 29 06:10:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79F716A4CE; Sun, 29 Aug 2004 06:10:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A7BA43D54; Sun, 29 Aug 2004 06:10:53 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T6ArQL044331; Sun, 29 Aug 2004 06:10:53 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T6Ar9M044330; Sun, 29 Aug 2004 06:10:53 GMT (envelope-from tjr) Message-Id: <200408290610.i7T6Ar9M044330@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 29 Aug 2004 06:10:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/include ftw.h src/lib/libc/gen Makefile.inc ftw.c nftw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 06:10:53 -0000 tjr 2004-08-29 06:10:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) include ftw.h lib/libc/gen Makefile.inc ftw.c Added files: (Branch: RELENG_5) lib/libc/gen nftw.c Log: MFC: Better ftw() and nftw() implementations from OpenBSD. Approved by: re (kensmith) Revision Changes Path 1.1.2.1 +46 -91 src/include/ftw.h 1.116.2.1 +1 -1 src/lib/libc/gen/Makefile.inc 1.3.2.1 +89 -191 src/lib/libc/gen/ftw.c 1.1.2.1 +117 -0 src/lib/libc/gen/nftw.c (new) From owner-cvs-src@FreeBSD.ORG Sun Aug 29 06:15:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9817116A4CE; Sun, 29 Aug 2004 06:15:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C3B043D54; Sun, 29 Aug 2004 06:15:44 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T6FikO044489; Sun, 29 Aug 2004 06:15:44 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T6Fi5X044488; Sun, 29 Aug 2004 06:15:44 GMT (envelope-from tjr) Message-Id: <200408290615.i7T6Fi5X044488@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 29 Aug 2004 06:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/modules/linprocfs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 06:15:44 -0000 tjr 2004-08-29 06:15:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/modules/linprocfs Makefile Log: MFC rev. 1.12: Build a dummy opt_compat.h header. Approved by: re (kensmith) Revision Changes Path 1.11.4.1 +5 -1 src/sys/modules/linprocfs/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 29 06:25:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C63D16A4CE; Sun, 29 Aug 2004 06:25:49 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DC5C43D53; Sun, 29 Aug 2004 06:25:48 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7T6PhZs038505 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 29 Aug 2004 09:25:43 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i7T6Pm2j083004; Sun, 29 Aug 2004 09:25:48 +0300 (EEST) (envelope-from ru) Date: Sun, 29 Aug 2004 09:25:47 +0300 From: Ruslan Ermilov To: Ian Dowse Message-ID: <20040829062547.GB82870@ip.net.ua> References: <200408290359.i7T3xnnr038047@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Bn2rw/3z4jIqBvZU" Content-Disposition: inline In-Reply-To: <200408290359.i7T3xnnr038047@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 06:25:49 -0000 --Bn2rw/3z4jIqBvZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 29, 2004 at 03:59:49AM +0000, Ian Dowse wrote: > iedowse 2004-08-29 03:59:49 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/conf files=20 > Log: > Add an entry for ichwd to hopefully unbreak the LINT build. > =20 > Revision Changes Path > 1.946 +1 -0 src/sys/conf/files >=20 You probably also meant to remove it from files.i386 now. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Bn2rw/3z4jIqBvZU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBMXbrqRfpzJluFF4RAo/ZAJ95zqm8JN34f/RxW2onJy0hp7QaUQCgnjX3 FBe31sTCKaqkJXA9y92gPhE= =RTiX -----END PGP SIGNATURE----- --Bn2rw/3z4jIqBvZU-- From owner-cvs-src@FreeBSD.ORG Sun Aug 29 06:39:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B23F616A4CE; Sun, 29 Aug 2004 06:39:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9696643D45; Sun, 29 Aug 2004 06:39:58 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T6dwwh045072; Sun, 29 Aug 2004 06:39:58 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T6dwH1045071; Sun, 29 Aug 2004 06:39:58 GMT (envelope-from tjr) Message-Id: <200408290639.i7T6dwH1045071@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 29 Aug 2004 06:39:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen fts.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 06:39:58 -0000 tjr 2004-08-29 06:39:58 UTC FreeBSD src repository Modified files: lib/libc/gen fts.3 Log: Add cross-reference to ftw(3). Revision Changes Path 1.21 +1 -0 src/lib/libc/gen/fts.3 From owner-cvs-src@FreeBSD.ORG Sun Aug 29 07:08:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D918716A4CE; Sun, 29 Aug 2004 07:08:26 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B042043D55; Sun, 29 Aug 2004 07:08:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7T78OGR034891; Sun, 29 Aug 2004 00:08:24 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7T78OUq034890; Sun, 29 Aug 2004 00:08:24 -0700 (PDT) (envelope-from obrien) Date: Sun, 29 Aug 2004 00:08:22 -0700 From: "David O'Brien" To: Tim Robbins Message-ID: <20040829070822.GD16748@dragon.nuxi.com> References: <200408290555.i7T5twvI043813@repoman.freebsd.org> <20040829055934.GA51491@cat.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040829055934.GA51491@cat.robbins.dropbear.id.au> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/timedef sl_SI.ISO8859-2.src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 07:08:27 -0000 On Sun, Aug 29, 2004 at 03:59:34PM +1000, Tim Robbins wrote: > On Sun, Aug 29, 2004 at 05:55:58AM +0000, Tim J. Robbins wrote: > > tjr 2004-08-29 05:55:58 UTC > > > > FreeBSD src repository > > > > Modified files: (Branch: RELENG_5) > > share/timedef sl_SI.ISO8859-2.src > > Log: > > MFC rev. 1.7: Begin month and weekday names with a lowercase letter. > > Should have been 1.8. It is nice to know in email, but does little good 1 year from now. You should do a forced commit (cvs ci -f) noting the correct version MFC'ed. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Sun Aug 29 07:49:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A06816A4CE; Sun, 29 Aug 2004 07:49:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F046743D2F; Sun, 29 Aug 2004 07:49:53 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T7nrfc047101; Sun, 29 Aug 2004 07:49:53 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T7nrUE047100; Sun, 29 Aug 2004 07:49:53 GMT (envelope-from ru) Message-Id: <200408290749.i7T7nrUE047100@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 29 Aug 2004 07:49:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/drm radeon_drv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 07:49:54 -0000 ru 2004-08-29 07:49:53 UTC FreeBSD src repository Modified files: sys/dev/drm radeon_drv.c Log: Fixed the module name (macros don't work here). Revision Changes Path 1.10 +1 -1 src/sys/dev/drm/radeon_drv.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 08:25:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D73A516A4CE; Sun, 29 Aug 2004 08:25:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA9D943D46; Sun, 29 Aug 2004 08:25:02 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T8P2lL048233; Sun, 29 Aug 2004 08:25:02 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T8P2ZC048232; Sun, 29 Aug 2004 08:25:02 GMT (envelope-from maxim) Message-Id: <200408290825.i7T8P2ZC048232@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 29 Aug 2004 08:25:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 08:25:03 -0000 maxim 2004-08-29 08:25:02 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw2.c Log: o Restore a historical ipfw1 logamount behaviour: rules with 'log' keyword but without 'logamount' limit the amount of their log messages by net.inet.ip.fw.verbose_limit sysctl value. RELENG_5 candidate. PR: kern/46080 Submitted by: Dan Pelleg MFC after: 1 week Revision Changes Path 1.56 +7 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 09:14:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8650016A4CE; Sun, 29 Aug 2004 09:14:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B93743D3F; Sun, 29 Aug 2004 09:14:18 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7T9EIVG049451; Sun, 29 Aug 2004 09:14:18 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7T9EIiY049450; Sun, 29 Aug 2004 09:14:18 GMT (envelope-from obrien) Message-Id: <200408290914.i7T9EIiY049450@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 29 Aug 2004 09:14:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 09:14:18 -0000 obrien 2004-08-29 09:14:18 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Enable sound modules. Revision Changes Path 1.395 +1 -0 src/sys/modules/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 29 09:34:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 486BC16A4CE; Sun, 29 Aug 2004 09:34:03 +0000 (GMT) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDD6E43D48; Sun, 29 Aug 2004 09:34:02 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7T9Y1K8011250; Sun, 29 Aug 2004 11:34:01 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7T9Y1N7043404; Sun, 29 Aug 2004 11:34:01 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7T9Y15h043403; Sun, 29 Aug 2004 11:34:01 +0200 (CEST) (envelope-from wb) Date: Sun, 29 Aug 2004 11:34:01 +0200 From: Wilko Bulte To: Marcel Moolenaar Message-ID: <20040829093401.GA43378@freebie.xs4all.nl> References: <200408290253.i7T2r75H033200@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408290253.i7T2r75H033200@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/tga tga_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 09:34:03 -0000 On Sun, Aug 29, 2004 at 02:53:07AM +0000, Marcel Moolenaar wrote.. > marcel 2004-08-29 02:53:07 UTC > > FreeBSD src repository > > Modified files: > sys/dev/tga tga_pci.c > Log: > Do not match TGA2 adapters. They are not compatible with TGA adapters, > nor are they 3D accelarators as the description would like us to > believe. Since the TGA2 adapter has a VGA mode (unlike the TGA adapter), > one can use the VGA driver instead. > > This fixes GENERIC kernels on alpha with TGA2 adapters. RELENG_5 candidate.. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sun Aug 29 10:05:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9056316A4CE; Sun, 29 Aug 2004 10:05:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71FED43D39; Sun, 29 Aug 2004 10:05:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TA51QO050948; Sun, 29 Aug 2004 10:05:01 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TA51nJ050947; Sun, 29 Aug 2004 10:05:01 GMT (envelope-from obrien) Message-Id: <200408291005.i7TA51nJ050947@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 29 Aug 2004 10:05:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 10:05:01 -0000 obrien 2004-08-29 10:05:00 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Enable more modules on AMD64: ciss em ext2fs i2c ida iir ips lnc mly safe scsi_low smbfs sppp twa Revision Changes Path 1.396 +14 -0 src/sys/modules/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 29 10:52:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82AB616A4CE; Sun, 29 Aug 2004 10:52:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63A8943D55; Sun, 29 Aug 2004 10:52:40 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TAqeWX052309; Sun, 29 Aug 2004 10:52:40 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TAqeYA052308; Sun, 29 Aug 2004 10:52:40 GMT (envelope-from des) Message-Id: <200408291052.i7TAqeYA052308@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 10:52:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 10:52:40 -0000 des 2004-08-29 10:52:40 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Back out the two previous commits; ichwd is i386-only. Revision Changes Path 1.1268 +0 -6 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:10:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C58A16A4CE; Sun, 29 Aug 2004 11:10:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C22543D2F; Sun, 29 Aug 2004 11:10:10 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBAAL1053037; Sun, 29 Aug 2004 11:10:10 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBAAo0053036; Sun, 29 Aug 2004 11:10:10 GMT (envelope-from des) Message-Id: <200408291110.i7TBAAo0053036@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 11:10:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_da.c src/sys/conf options src/sys/kern kern_shutdown.c src/sys/modules/cam Makefile src/sys/pc98/pc98 wd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 11:10:10 -0000 des 2004-08-29 11:10:10 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c sys/conf options sys/kern kern_shutdown.c sys/modules/cam Makefile sys/pc98/pc98 wd.c Log: Remove the HW_WDOG option; it serves no purpose. MFC after: 3 days Revision Changes Path 1.172 +0 -4 src/sys/cam/scsi/scsi_da.c 1.479 +0 -1 src/sys/conf/options 1.165 +0 -12 src/sys/kern/kern_shutdown.c 1.12 +0 -1 src/sys/modules/cam/Makefile 1.138 +0 -2 src/sys/pc98/pc98/wd.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:11:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 699B616A4CE; Sun, 29 Aug 2004 11:11:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EBE643D48; Sun, 29 Aug 2004 11:11:32 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBBWbl053172; Sun, 29 Aug 2004 11:11:32 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBBWa2053171; Sun, 29 Aug 2004 11:11:32 GMT (envelope-from des) Message-Id: <200408291111.i7TBBWa2053171@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 11:11:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:11:32 -0000 des 2004-08-29 11:11:32 UTC FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Add a section for hardware watchdog timers, initially populated by ichwd. MFC after: 3 days Revision Changes Path 1.1171 +7 -0 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:19:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5526616A4CE; Sun, 29 Aug 2004 11:19:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DE543D46; Sun, 29 Aug 2004 11:19:35 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBJZfg053366; Sun, 29 Aug 2004 11:19:35 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBJZIc053365; Sun, 29 Aug 2004 11:19:35 GMT (envelope-from des) Message-Id: <200408291119.i7TBJZIc053365@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 11:19:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 ichwd.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:19:35 -0000 des 2004-08-29 11:19:35 UTC FreeBSD src repository Modified files: share/man/man4/man4.i386 ichwd.4 Log: According to mdoc(7), HISTORY comes before AUTHORS. MFC after: 3 days Revision Changes Path 1.3 +5 -5 src/share/man/man4/man4.i386/ichwd.4 From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:23:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB6CF16A4CE; Sun, 29 Aug 2004 11:23:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD16143D3F; Sun, 29 Aug 2004 11:23:59 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBNx5H053545; Sun, 29 Aug 2004 11:23:59 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBNxMO053544; Sun, 29 Aug 2004 11:23:59 GMT (envelope-from sobomax) Message-Id: <200408291123.i7TBNxMO053544@repoman.freebsd.org> From: Maxim Sobolev Date: Sun, 29 Aug 2004 11:23:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:24:00 -0000 sobomax 2004-08-29 11:23:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/i386/conf NOTES Log: MFC: CPU_DISABLE_CMPXCHG is no longer necessary with VmWare 4.x. Approved by: re@ Revision Changes Path 1.1168.2.1 +5 -3 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:26:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1600C16A4CE; Sun, 29 Aug 2004 11:26:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B1943D5C; Sun, 29 Aug 2004 11:26:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBQagM053701; Sun, 29 Aug 2004 11:26:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBQaX1053700; Sun, 29 Aug 2004 11:26:36 GMT (envelope-from des) Message-Id: <200408291126.i7TBQaX1053700@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 11:26:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:26:37 -0000 des 2004-08-29 11:26:36 UTC FreeBSD src repository Modified files: sys/conf files Log: Back out previous commit, ichwd is i386-only. Revision Changes Path 1.947 +0 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:43:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72EC816A4CE; Sun, 29 Aug 2004 11:43:49 +0000 (GMT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF7ED43D53; Sun, 29 Aug 2004 11:43:48 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd01.aul.t-online.de by mailout05.sul.t-online.com with smtp id 1C1O67-00073T-04; Sun, 29 Aug 2004 13:43:47 +0200 Received: from Andro-Beta.Leidinger.net (E4zXPUZVgeOeJix1CURgqEkgtPTCKrQVhm3wgcHM15mzsADaX8TS6f@[217.229.212.164]) by fmrl01.sul.t-online.com with esmtp id 1C1O60-0xl6ye0; Sun, 29 Aug 2004 13:43:40 +0200 Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) i7TBhgu6059592; Sun, 29 Aug 2004 13:43:42 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Sun, 29 Aug 2004 13:44:55 +0200 From: Alexander Leidinger To: Dag-Erling Smorgrav Message-ID: <20040829134455.313e1e7d@Magellan.Leidinger.net> In-Reply-To: <200408291052.i7TAqeYA052308@repoman.freebsd.org> References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 0.9.12a (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-ID: E4zXPUZVgeOeJix1CURgqEkgtPTCKrQVhm3wgcHM15mzsADaX8TS6f@t-dialin.net X-TOI-MSGID: d3a63247-425b-433b-af70-5780aa12ad08 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:43:49 -0000 On Sun, 29 Aug 2004 10:52:40 +0000 (UTC) Dag-Erling Smorgrav wrote: > des 2004-08-29 10:52:40 UTC > > FreeBSD src repository > > Modified files: > sys/conf NOTES > Log: > Back out the two previous commits; ichwd is i386-only. Isn't ichsmb i386 only too? If yes, shouldn't it move to the i386 NOTES too? BTW: My intend was to add it to the i386 NOTES, but after noticing ichsmb (and snd_ich) in the global NOTES files, I submitted the global NOTES patch (for consistency) to you. Bye, Alexander. -- The best things in life are free, but the expensive ones are still worth a look. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:51:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E0D116A4CE; Sun, 29 Aug 2004 11:51:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D78043D58; Sun, 29 Aug 2004 11:51:08 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TBp7FZ054543; Sun, 29 Aug 2004 11:51:07 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TBp73J054542; Sun, 29 Aug 2004 11:51:07 GMT (envelope-from mlaier) Message-Id: <200408291151.i7TBp73J054542@repoman.freebsd.org> From: Max Laier Date: Sun, 29 Aug 2004 11:51:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/contrib/pf/pfctl pfctl_table.csrc/sys/contrib/pf/net pf_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:51:08 -0000 mlaier 2004-08-29 11:51:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/pf/pfctl pfctl_table.c sys/contrib/pf/net pf_ioctl.c Log: MT5: Fix securelevel handling for tables: Loopback a fix from Cedric Berger: Fix table add/replace commands with securelevel=2. Reported by James J. Lippard. and Use securelevel_gt instead of reading global securelevel unprotected. Approved by: re (kensmith) Revision Changes Path 1.5.2.1 +9 -2 src/contrib/pf/pfctl/pfctl_table.c 1.12.2.1 +5 -0 src/sys/contrib/pf/net/pf_ioctl.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 11:59:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3397916A4CE; Sun, 29 Aug 2004 11:59:19 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B423E43D64; Sun, 29 Aug 2004 11:59:18 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id B3B3B6213; Sun, 29 Aug 2004 13:59:55 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id ADE90B875; Sun, 29 Aug 2004 13:59:17 +0200 (CEST) To: Alexander Leidinger References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829134455.313e1e7d@Magellan.Leidinger.net> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Sun, 29 Aug 2004 13:59:17 +0200 In-Reply-To: <20040829134455.313e1e7d@Magellan.Leidinger.net> (Alexander Leidinger's message of "Sun, 29 Aug 2004 13:44:55 +0200") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 11:59:19 -0000 Alexander Leidinger writes: > Isn't ichsmb i386 only too? If yes, shouldn't it move to the i386 NOTES > too? Probably. I haven't looked at it. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sun Aug 29 13:45:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E02116A4CE; Sun, 29 Aug 2004 13:45:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FE9C43D58; Sun, 29 Aug 2004 13:45:55 +0000 (GMT) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TDjtxK057569; Sun, 29 Aug 2004 13:45:55 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TDjt2R057568; Sun, 29 Aug 2004 13:45:55 GMT (envelope-from simokawa) Message-Id: <200408291345.i7TDjt2R057568@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 29 Aug 2004 13:45:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire fwcrom.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 13:45:55 -0000 simokawa 2004-08-29 13:45:55 UTC FreeBSD src repository Modified files: sys/dev/firewire fwcrom.c Log: Remove an unused variable. Revision Changes Path 1.12 +1 -1 src/sys/dev/firewire/fwcrom.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 14:29:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BCAB16A4CE; Sun, 29 Aug 2004 14:29:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEEA443D2D; Sun, 29 Aug 2004 14:29:30 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TETUZ8059242; Sun, 29 Aug 2004 14:29:30 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TETU1I059241; Sun, 29 Aug 2004 14:29:30 GMT (envelope-from pjd) Message-Id: <200408291429.i7TETU1I059241@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 29 Aug 2004 14:29:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 14:29:31 -0000 pjd 2004-08-29 14:29:30 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c sys/geom/raid3 g_raid3.c Log: GCC, ehh. Revision Changes Path 1.24 +1 -0 src/sys/geom/mirror/g_mirror.c 1.12 +1 -0 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 14:52:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0526216A4CE; Sun, 29 Aug 2004 14:52:47 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81ECD43D31; Sun, 29 Aug 2004 14:52:46 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 82676690E; Sun, 29 Aug 2004 16:53:23 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 619E6B86E; Sun, 29 Aug 2004 16:52:45 +0200 (CEST) To: Pawel Jakub Dawidek References: <200408291429.i7TETU1I059241@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Sun, 29 Aug 2004 16:52:45 +0200 In-Reply-To: <200408291429.i7TETU1I059241@repoman.freebsd.org> (Pawel Jakub Dawidek's message of "Sun, 29 Aug 2004 14:29:30 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 14:52:47 -0000 Pawel Jakub Dawidek writes: > GCC, ehh. I didn't realize you were Canadian... DES *ducks* *runs* --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sun Aug 29 15:02:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7671416A4CE; Sun, 29 Aug 2004 15:02:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5662A43D3F; Sun, 29 Aug 2004 15:02:43 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TF2hn2060297; Sun, 29 Aug 2004 15:02:43 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TF2hBf060296; Sun, 29 Aug 2004 15:02:43 GMT (envelope-from kensmith) Message-Id: <200408291502.i7TF2hBf060296@repoman.freebsd.org> From: Ken Smith Date: Sun, 29 Aug 2004 15:02:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d routed X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 15:02:43 -0000 kensmith 2004-08-29 15:02:43 UTC FreeBSD src repository Modified files: etc/rc.d routed Log: Protect the command flags set in the rc.conf files in case they're more than one word, adding some quotes. Advice from: mtm (my first attempt wasn't quite right) Reviewed by: mtm MFC after: 3 days Revision Changes Path 1.11 +1 -1 src/etc/rc.d/routed From owner-cvs-src@FreeBSD.ORG Sun Aug 29 15:03:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE8E16A4CE; Sun, 29 Aug 2004 15:03:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F27043D2D; Sun, 29 Aug 2004 15:03:06 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TF3644060330; Sun, 29 Aug 2004 15:03:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TF36xg060329; Sun, 29 Aug 2004 15:03:06 GMT (envelope-from ru) Message-Id: <200408291503.i7TF36xg060329@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 29 Aug 2004 15:03:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 15:03:06 -0000 ru 2004-08-29 15:03:06 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Finish the removal of the HW_WDOG option. Hopefully, we'll finally have the compilable LINT kernels again. ;) Revision Changes Path 1.1269 +0 -6 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Aug 29 17:50:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E16D216A4CF; Sun, 29 Aug 2004 17:50:22 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B98CF43D4C; Sun, 29 Aug 2004 17:50:22 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7THoL0t087144; Sun, 29 Aug 2004 10:50:21 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7THoLEf087143; Sun, 29 Aug 2004 10:50:21 -0700 (PDT) (envelope-from obrien) Date: Sun, 29 Aug 2004 10:50:21 -0700 From: "David O'Brien" To: Alexander Leidinger Message-ID: <20040829175021.GB41269@dragon.nuxi.com> References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829134455.313e1e7d@Magellan.Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040829134455.313e1e7d@Magellan.Leidinger.net> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Dag-Erling Smorgrav Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 17:50:23 -0000 On Sun, Aug 29, 2004 at 01:44:55PM +0200, Alexander Leidinger wrote: > On Sun, 29 Aug 2004 10:52:40 +0000 (UTC) > Dag-Erling Smorgrav wrote: > > > des 2004-08-29 10:52:40 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf NOTES > > Log: > > Back out the two previous commits; ichwd is i386-only. > > Isn't ichsmb i386 only too? If yes, shouldn't it move to the i386 NOTES > too? Could it also be Intel Xeon CT[*]? And thus amd64 also? -- -- David (obrien@FreeBSD.org) [*] "Copied^H^H^HClackamas Technology" From owner-cvs-src@FreeBSD.ORG Sun Aug 29 18:11:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9092A16A4CE; Sun, 29 Aug 2004 18:11:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F77743D2F; Sun, 29 Aug 2004 18:11:10 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TIBApL066210; Sun, 29 Aug 2004 18:11:10 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TIBAe3066209; Sun, 29 Aug 2004 18:11:10 GMT (envelope-from imp) Message-Id: <200408291811.i7TIBAe3066209@repoman.freebsd.org> From: Warner Losh Date: Sun, 29 Aug 2004 18:11:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_bus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 18:11:10 -0000 imp 2004-08-29 18:11:10 UTC FreeBSD src repository Modified files: sys/kern subr_bus.c Log: MFp4: Merge in the patches, submitted long ago by someone whose email address I've lost, that move the location information to the atttach routine as well. While one could use devinfo to get this data, that is difficult and error prone and subject to races for short lived devices. Would make a good MT5 candidate. Revision Changes Path 1.158 +26 -12 src/sys/kern/subr_bus.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 18:25:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BAFE16A4CE; Sun, 29 Aug 2004 18:25:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B4DD43D1F; Sun, 29 Aug 2004 18:25:21 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TIPLiW066767; Sun, 29 Aug 2004 18:25:21 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TIPLrI066766; Sun, 29 Aug 2004 18:25:21 GMT (envelope-from imp) Message-Id: <200408291825.i7TIPLrI066766@repoman.freebsd.org> From: Warner Losh Date: Sun, 29 Aug 2004 18:25:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_bus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 18:25:21 -0000 imp 2004-08-29 18:25:21 UTC FreeBSD src repository Modified files: sys/kern subr_bus.c Log: Initial support (disabled) for rebidding devices. I've been running this in my tree for a while and in its disabled state there are no issues. It isn't enabled yet because some drivers (in acpi) have side effects in their probe routines that need to be resolved in some manner before this can be turned on. The consensus at the last developer's summit was to provide a static method for each driver class that will return characteristics of the driver, one of which is if can be reprobed idempotently. Revision Changes Path 1.159 +36 -4 src/sys/kern/subr_bus.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 18:27:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E44AE16A4CE; Sun, 29 Aug 2004 18:27:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7D6D43D46; Sun, 29 Aug 2004 18:27:00 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TIR0ST066965; Sun, 29 Aug 2004 18:27:00 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TIR0S9066964; Sun, 29 Aug 2004 18:27:00 GMT (envelope-from obrien) Message-Id: <200408291827.i7TIR0S9066964@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 29 Aug 2004 18:27:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile src/release Makefile src/release/scripts compat1x-install.sh compat20-install.sh compat21-install.sh compat22-install.sh compat3x-install.sh compat4x-install.sh src/usr.sbin/sysinstall dist.c dist.h menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 18:27:01 -0000 obrien 2004-08-29 18:27:00 UTC FreeBSD src repository Modified files: lib Makefile release Makefile usr.sbin/sysinstall dist.c dist.h menus.c Removed files: release/scripts compat1x-install.sh compat20-install.sh compat21-install.sh compat22-install.sh compat3x-install.sh compat4x-install.sh Log: Start the de-orbital burn of our previous FreeBSD version compat libs living in usr/src. We need to use them from ports to record dependencies. Discussed with: re(scottl) Revision Changes Path 1.191 +1 -3 src/lib/Makefile 1.857 +2 -7 src/release/Makefile 1.5 +0 -11 src/release/scripts/compat1x-install.sh (dead) 1.5 +0 -11 src/release/scripts/compat20-install.sh (dead) 1.5 +0 -11 src/release/scripts/compat21-install.sh (dead) 1.4 +0 -11 src/release/scripts/compat22-install.sh (dead) 1.3 +0 -11 src/release/scripts/compat3x-install.sh (dead) 1.2 +0 -11 src/release/scripts/compat4x-install.sh (dead) 1.236 +0 -10 src/usr.sbin/sysinstall/dist.c 1.64 +4 -14 src/usr.sbin/sysinstall/dist.h 1.399 +0 -16 src/usr.sbin/sysinstall/menus.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:00:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B42F16A4CE; Sun, 29 Aug 2004 19:00:17 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E8F943D2D; Sun, 29 Aug 2004 19:00:17 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 161512FEE; Sun, 29 Aug 2004 21:00:54 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id EC1E5B92E; Sun, 29 Aug 2004 21:00:15 +0200 (CEST) To: obrien@freebsd.org References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829134455.313e1e7d@Magellan.Leidinger.net> <20040829175021.GB41269@dragon.nuxi.com> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Sun, 29 Aug 2004 21:00:15 +0200 In-Reply-To: <20040829175021.GB41269@dragon.nuxi.com> (David O'Brien's message of "Sun, 29 Aug 2004 10:50:21 -0700") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: Alexander Leidinger cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 19:00:17 -0000 "David O'Brien" writes: > Could it also be Intel Xeon CT[*]? And thus amd64 also? It's really chipset-dependent, not processor-dependent. Will EM64T- enabled P4s or Xeons run on ICH motherboards? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:07:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2C4716A4CE; Sun, 29 Aug 2004 19:07:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99B9243D1D; Sun, 29 Aug 2004 19:07:14 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TJ7ENg068242; Sun, 29 Aug 2004 19:07:14 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TJ7Eti068241; Sun, 29 Aug 2004 19:07:14 GMT (envelope-from marcel) Message-Id: <200408291907.i7TJ7Eti068241@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 29 Aug 2004 19:07:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/pci pcibus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 19:07:14 -0000 marcel 2004-08-29 19:07:14 UTC FreeBSD src repository Modified files: sys/alpha/pci pcibus.c Log: In alpha_pci_alloc_resource(), when allocating a memory resource, do not set the virtual address to the bus address when the bus doesn't have either of the PCI_RF_DENSE or PCI_RF_BWX flags set. The TGA driver uses the virtual address to access the registers, which on some machines can cause a memory management fault. Map the bus address as K0SEG virtual memory instead. Note that with some hardware combinations involving the TGA2 adapter this change merely results that the memory management fault is replaced by a machine check. Revision Changes Path 1.35 +1 -1 src/sys/alpha/pci/pcibus.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:19:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CA1216A4CE; Sun, 29 Aug 2004 19:19:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DEA143D1D; Sun, 29 Aug 2004 19:19:39 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TJJds3068544; Sun, 29 Aug 2004 19:19:39 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TJJdfK068543; Sun, 29 Aug 2004 19:19:39 GMT (envelope-from des) Message-Id: <200408291919.i7TJJdfK068543@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 19:19:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys systm.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 19:19:39 -0000 des 2004-08-29 19:19:39 UTC FreeBSD src repository Modified files: sys/sys systm.h Log: Remove the last remnants of HW_WDOG (no, really!) Revision Changes Path 1.214 +0 -15 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:19:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CF1516A4E1; Sun, 29 Aug 2004 19:19:44 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B0643D58; Sun, 29 Aug 2004 19:19:43 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id A70C33141; Sun, 29 Aug 2004 21:20:20 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 94666B86E; Sun, 29 Aug 2004 21:19:42 +0200 (CEST) To: Ruslan Ermilov References: <200408291503.i7TF36xg060329@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Sun, 29 Aug 2004 21:19:42 +0200 In-Reply-To: <200408291503.i7TF36xg060329@repoman.freebsd.org> (Ruslan Ermilov's message of "Sun, 29 Aug 2004 15:03:06 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 19:19:44 -0000 Ruslan Ermilov writes: > Modified files: > sys/conf NOTES=20 > Log: > Finish the removal of the HW_WDOG option. damn... I don't understand how two files (NOTES and systm.h) didn't get committed... DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:45:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F4816A4CE; Sun, 29 Aug 2004 19:45:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63E7243D1D; Sun, 29 Aug 2004 19:45:50 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TJjobT069425; Sun, 29 Aug 2004 19:45:50 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TJjobH069424; Sun, 29 Aug 2004 19:45:50 GMT (envelope-from des) Message-Id: <200408291945.i7TJjobH069424@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 29 Aug 2004 19:45:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/genericize genericize.pl X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 19:45:50 -0000 des 2004-08-29 19:45:50 UTC FreeBSD src repository Modified files: tools/tools/genericize genericize.pl Log: Add -c option to preserve comments from GENERIC in the output. Revision Changes Path 1.2 +12 -4 src/tools/tools/genericize/genericize.pl From owner-cvs-src@FreeBSD.ORG Sun Aug 29 19:52:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 925DF16A4CE; Sun, 29 Aug 2004 19:52:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E3743D45; Sun, 29 Aug 2004 19:52:33 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TJqX2t069636; Sun, 29 Aug 2004 19:52:33 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TJqX5c069635; Sun, 29 Aug 2004 19:52:33 GMT (envelope-from marcel) Message-Id: <200408291952.i7TJqX5c069635@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 29 Aug 2004 19:52:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 19:52:33 -0000 marcel 2004-08-29 19:52:33 UTC FreeBSD src repository Modified files: release/ia64 mkisoimages.sh Log: Put the ispfw.ko module on the EFI boot partition when creating a bootable ISO. HP machines (like the rx2600) that (also) have isp(4) may have a non-standard firmware on the controller. Our isp(4) driver is not able to work with those and even panics. This makes installing FreeBSD rather impossible. By adding the ispfw.ko module, we give the user a chance to upload a certified firmware onto the card and so make it possible to either use the isp(4) successfully or otherwise avoid the panic. Revision Changes Path 1.10 +1 -0 src/release/ia64/mkisoimages.sh From owner-cvs-src@FreeBSD.ORG Sun Aug 29 20:13:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F13B716A4CE; Sun, 29 Aug 2004 20:13:09 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id A07F443D5D; Sun, 29 Aug 2004 20:13:09 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from [192.168.0.12] (g4.samsco.home [192.168.0.12]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i7TKCasV062704; Sun, 29 Aug 2004 14:12:36 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <4132388C.7010103@freebsd.org> Date: Sun, 29 Aug 2004 14:11:56 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7) Gecko/20040514 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <200408291005.i7TA51nJ050947@repoman.freebsd.org> In-Reply-To: <200408291005.i7TA51nJ050947@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 20:13:10 -0000 David E. O'Brien wrote: > obrien 2004-08-29 10:05:00 UTC > > FreeBSD src repository > > Modified files: > sys/modules Makefile > Log: > Enable more modules on AMD64: > ciss em ext2fs i2c ida iir ips lnc mly safe scsi_low smbfs sppp twa > > Revision Changes Path > 1.396 +14 -0 src/sys/modules/Makefile Have these all been tested? I'd be surprised if there weren't 64-bit cleanliness isssues with some. Scott From owner-cvs-src@FreeBSD.ORG Sun Aug 29 20:14:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14C3816A4CE; Sun, 29 Aug 2004 20:14:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9C7343D5A; Sun, 29 Aug 2004 20:14:10 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TKEA9L070321; Sun, 29 Aug 2004 20:14:10 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TKEA0J070320; Sun, 29 Aug 2004 20:14:10 GMT (envelope-from alc) Message-Id: <200408292014.i7TKEA0J070320@repoman.freebsd.org> From: Alan Cox Date: Sun, 29 Aug 2004 20:14:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_object.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 20:14:11 -0000 alc 2004-08-29 20:14:10 UTC FreeBSD src repository Modified files: sys/vm vm_object.c Log: Move the acquisition and release of the lock on the object at the head of the shadow chain outside of the loop in vm_object_madvise(), reducing the number of times that this lock is acquired and released. Revision Changes Path 1.332 +12 -4 src/sys/vm/vm_object.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 20:24:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 518BE16A4CE; Sun, 29 Aug 2004 20:24:28 +0000 (GMT) Received: from smtp-vbr11.xs4all.nl (smtp-vbr11.xs4all.nl [194.109.24.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2A6A43D55; Sun, 29 Aug 2004 20:24:27 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7TKOQsM099066; Sun, 29 Aug 2004 22:24:26 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7TKOQ8j045844; Sun, 29 Aug 2004 22:24:26 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7TKOQsM045843; Sun, 29 Aug 2004 22:24:26 +0200 (CEST) (envelope-from wb) Date: Sun, 29 Aug 2004 22:24:26 +0200 From: Wilko Bulte To: Marcel Moolenaar Message-ID: <20040829202426.GB45805@freebie.xs4all.nl> References: <200408291952.i7TJqX5c069635@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408291952.i7TJqX5c069635@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 20:24:28 -0000 On Sun, Aug 29, 2004 at 07:52:33PM +0000, Marcel Moolenaar wrote.. > marcel 2004-08-29 19:52:33 UTC > > FreeBSD src repository > > Modified files: > release/ia64 mkisoimages.sh > Log: > Put the ispfw.ko module on the EFI boot partition when creating a > bootable ISO. HP machines (like the rx2600) that (also) have isp(4) > may have a non-standard firmware on the controller. Our isp(4) driver > is not able to work with those and even panics. This makes installing > FreeBSD rather impossible. By adding the ispfw.ko module, we give the > user a chance to upload a certified firmware onto the card and so make > it possible to either use the isp(4) successfully or otherwise avoid > the panic. Neat! I have the distinct feeling I know the box where this needs to be tested on ;) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sun Aug 29 20:50:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AB2F16A4CF; Sun, 29 Aug 2004 20:50:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B28A43D53; Sun, 29 Aug 2004 20:50:33 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TKoXgk071675; Sun, 29 Aug 2004 20:50:33 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TKoXfp071674; Sun, 29 Aug 2004 20:50:33 GMT (envelope-from green) Message-Id: <200408292050.i7TKoXfp071674@repoman.freebsd.org> From: Brian Feldman Date: Sun, 29 Aug 2004 20:50:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/sound/pci maestro.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 29 Aug 2004 20:50:33 -0000 green 2004-08-29 20:50:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/sound/pci maestro.c Log: MFC r1.24: fix totally broken memory allocation exposed by new contigmalloc. Approved by: re Revision Changes Path 1.23.2.1 +15 -21 src/sys/dev/sound/pci/maestro.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 21:31:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63DF816A4CE; Sun, 29 Aug 2004 21:31:57 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC86A43D31; Sun, 29 Aug 2004 21:31:56 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp53.pn.xcllnt.net (dhcp53.pn.xcllnt.net [192.168.4.253]) by ns1.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7TLVsSN047994; Sun, 29 Aug 2004 14:31:54 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp53.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp53.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7TLVt3p023312; Sun, 29 Aug 2004 14:31:55 -0700 (PDT) (envelope-from marcel@dhcp53.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp53.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7TLVtA4023311; Sun, 29 Aug 2004 14:31:55 -0700 (PDT) (envelope-from marcel) Date: Sun, 29 Aug 2004 14:31:55 -0700 From: Marcel Moolenaar To: Wilko Bulte Message-ID: <20040829213155.GB23266@dhcp53.pn.xcllnt.net> References: <200408291952.i7TJqX5c069635@repoman.freebsd.org> <20040829202426.GB45805@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040829202426.GB45805@freebie.xs4all.nl> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 21:31:57 -0000 On Sun, Aug 29, 2004 at 10:24:26PM +0200, Wilko Bulte wrote: > > Modified files: > > release/ia64 mkisoimages.sh > > Log: > > Put the ispfw.ko module on the EFI boot partition when creating a > > bootable ISO. HP machines (like the rx2600) that (also) have isp(4) > > may have a non-standard firmware on the controller. Our isp(4) driver > > is not able to work with those and even panics. This makes installing > > FreeBSD rather impossible. By adding the ispfw.ko module, we give the > > user a chance to upload a certified firmware onto the card and so make > > it possible to either use the isp(4) successfully or otherwise avoid > > the panic. > > Neat! I have the distinct feeling I know the box where this needs to be > tested on ;) Oh, good. I don't have to ask then... :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Sun Aug 29 23:10:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A415F16A4CF; Sun, 29 Aug 2004 23:10:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7635043D4C; Sun, 29 Aug 2004 23:10:02 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TNA26o075829; Sun, 29 Aug 2004 23:10:02 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TNA2o4075828; Sun, 29 Aug 2004 23:10:02 GMT (envelope-from davidxu) Message-Id: <200408292310.i7TNA2o4075828@repoman.freebsd.org> From: David Xu Date: Sun, 29 Aug 2004 23:10:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 23:10:02 -0000 davidxu 2004-08-29 23:10:02 UTC FreeBSD src repository Modified files: sys/kern kern_thread.c Log: Only test return_instead if P_SINGLE_EXIT is set, otherwise a fork() syscall can interrupt other thread's syscall in sleepq_catch_signals(). Current, all callers know thread_suspend_check may suspend thread itself, so we need't to check return_instead for normal suspension flags (no P_SINGLE_EXIT set). Tested by: deischen Reported by: Maarten L. Hekkelman Revision Changes Path 1.195 +1 -1 src/sys/kern/kern_thread.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 23:23:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DCDE16A4CE; Sun, 29 Aug 2004 23:23:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3005543D3F; Sun, 29 Aug 2004 23:23:38 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TNNcEO076217; Sun, 29 Aug 2004 23:23:38 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TNNcTc076216; Sun, 29 Aug 2004 23:23:38 GMT (envelope-from njl) Message-Id: <200408292323.i7TNNcTc076216@repoman.freebsd.org> From: Nate Lawson Date: Sun, 29 Aug 2004 23:23:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 23:23:38 -0000 njl 2004-08-29 23:23:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/acpica acpi_pci_link.c Log: MFC rev 1.26-1.28: When ignoring an invalid _CRS response, be sure to set a status of success. Also moves a printf under bootverbose. Approved by: re (kensmith) Revision Changes Path 1.24.2.3 +9 -5 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Sun Aug 29 23:24:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FB5C16A4CE; Sun, 29 Aug 2004 23:24:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E672443D1D; Sun, 29 Aug 2004 23:24:33 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7TNOX9j076255; Sun, 29 Aug 2004 23:24:33 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7TNOX8M076254; Sun, 29 Aug 2004 23:24:33 GMT (envelope-from njl) Message-Id: <200408292324.i7TNOX8M076254@repoman.freebsd.org> From: Nate Lawson Date: Sun, 29 Aug 2004 23:24:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/acpica acpi_lid.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 23:24:34 -0000 njl 2004-08-29 23:24:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/acpica acpi_lid.c Log: MFC rev 1.27: Remove code to initialize the lid state at boot. Approved by: re (kensmith) Revision Changes Path 1.26.2.1 +16 -29 src/sys/dev/acpica/acpi_lid.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 01:10:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A710716A4CE; Mon, 30 Aug 2004 01:10:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 890D443D1F; Mon, 30 Aug 2004 01:10:20 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U1AKsR078814; Mon, 30 Aug 2004 01:10:20 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U1AKBs078813; Mon, 30 Aug 2004 01:10:20 GMT (envelope-from pjd) Message-Id: <200408300110.i7U1AKBs078813@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 30 Aug 2004 01:10:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_conf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 01:10:20 -0000 pjd 2004-08-30 01:10:20 UTC FreeBSD src repository Modified files: sys/kern kern_conf.c Log: Add a missing '\n'. Revision Changes Path 1.156 +2 -2 src/sys/kern/kern_conf.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 01:32:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40A9116A4CE; Mon, 30 Aug 2004 01:32:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FA8043D39; Mon, 30 Aug 2004 01:32:29 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U1WT5r079430; Mon, 30 Aug 2004 01:32:29 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U1WS2O079429; Mon, 30 Aug 2004 01:32:29 GMT (envelope-from marcel) Message-Id: <200408300132.i7U1WS2O079429@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 30 Aug 2004 01:32:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 exception.S locore.S support.S syscall.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 01:32:29 -0000 marcel 2004-08-30 01:32:28 UTC FreeBSD src repository Modified files: sys/ia64/ia64 exception.S locore.S support.S syscall.S Log: s/ENTRY/ENTRY_NOPROFILE/g for particular functions that do not follow the C calling convention or are otherwise not regular functions. This allows us to boot a profiling kernel. Revision Changes Path 1.54 +2 -2 src/sys/ia64/ia64/exception.S 1.36 +2 -2 src/sys/ia64/ia64/locore.S 1.23 +1 -1 src/sys/ia64/ia64/support.S 1.13 +3 -3 src/sys/ia64/ia64/syscall.S From owner-cvs-src@FreeBSD.ORG Mon Aug 30 01:34:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76BDE16A4E1; Mon, 30 Aug 2004 01:34:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 545B943D48; Mon, 30 Aug 2004 01:34:01 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U1Y1A4079476; Mon, 30 Aug 2004 01:34:01 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U1Y1xt079475; Mon, 30 Aug 2004 01:34:01 GMT (envelope-from mlaier) Message-Id: <200408300134.i7U1Y1xt079475@repoman.freebsd.org> From: Max Laier Date: Mon, 30 Aug 2004 01:34:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man9 altq.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 01:34:01 -0000 mlaier 2004-08-30 01:34:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man9 altq.9 Log: MT5: Document supported devices here (for lack of a better place). Users interested in ALTQ are likely to type in "man altq" at some point and maybe they will scroll down to the bottom as well. Approved by: re (hrs) Revision Changes Path 1.2.2.1 +31 -1 src/share/man/man9/altq.9 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 02:59:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF1F16A4CE; Mon, 30 Aug 2004 02:59:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BAF643D5C; Mon, 30 Aug 2004 02:59:12 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U2xB65081726; Mon, 30 Aug 2004 02:59:11 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U2xBD9081725; Mon, 30 Aug 2004 02:59:11 GMT (envelope-from marcel) Message-Id: <200408300259.i7U2xBD9081725@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 30 Aug 2004 02:59:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 02:59:12 -0000 marcel 2004-08-30 02:59:11 UTC FreeBSD src repository Modified files: usr.sbin Makefile Log: Build kgmon(8) on ia64. Revision Changes Path 1.304 +1 -0 src/usr.sbin/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 30 03:11:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E29A716A4CE; Mon, 30 Aug 2004 03:11:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C220443D39; Mon, 30 Aug 2004 03:11:46 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U3BkkO082376; Mon, 30 Aug 2004 03:11:46 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U3BkQZ082375; Mon, 30 Aug 2004 03:11:46 GMT (envelope-from marcel) Message-Id: <200408300311.i7U3BkQZ082375@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 30 Aug 2004 03:11:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kgmon kgmon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 03:11:47 -0000 marcel 2004-08-30 03:11:46 UTC FreeBSD src repository Modified files: usr.sbin/kgmon kgmon.c Log: Improve 64-bit cleanliness: make sure to use long format specifiers for long arguments. This is WARNS=2 clean now. Revision Changes Path 1.14 +12 -12 src/usr.sbin/kgmon/kgmon.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 03:12:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E7616A4CE; Mon, 30 Aug 2004 03:12:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9199E43D45; Mon, 30 Aug 2004 03:12:49 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U3CnRI082419; Mon, 30 Aug 2004 03:12:49 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U3CnpH082418; Mon, 30 Aug 2004 03:12:49 GMT (envelope-from marcel) Message-Id: <200408300312.i7U3CnpH082418@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 30 Aug 2004 03:12:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kgmon Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 03:12:50 -0000 marcel 2004-08-30 03:12:49 UTC FreeBSD src repository Modified files: usr.sbin/kgmon Makefile Log: Set WARNS level to 2. Revision Changes Path 1.6 +2 -1 src/usr.sbin/kgmon/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 30 03:35:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC2216A4CE; Mon, 30 Aug 2004 03:35:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E07D443D2D; Mon, 30 Aug 2004 03:35:17 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U3ZHAF082955; Mon, 30 Aug 2004 03:35:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U3ZHN4082954; Mon, 30 Aug 2004 03:35:17 GMT (envelope-from scottl) Message-Id: <200408300335.i7U3ZHN4082954@repoman.freebsd.org> From: Scott Long Date: Mon, 30 Aug 2004 03:35:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/aac Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 03:35:18 -0000 scottl 2004-08-30 03:35:17 UTC FreeBSD src repository Modified files: sys/modules/aac Makefile Log: Only compile aac_linux.ko for i386 Revision Changes Path 1.8 +2 -0 src/sys/modules/aac/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 30 03:37:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69DDD16A4D1; Mon, 30 Aug 2004 03:37:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 430AB43D4C; Mon, 30 Aug 2004 03:37:37 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U3bb7t083136; Mon, 30 Aug 2004 03:37:37 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U3bbWd083135; Mon, 30 Aug 2004 03:37:37 GMT (envelope-from scottl) Message-Id: <200408300337.i7U3bbWd083135@repoman.freebsd.org> From: Scott Long Date: Mon, 30 Aug 2004 03:37:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 03:37:37 -0000 scottl 2004-08-30 03:37:37 UTC FreeBSD src repository Modified files: sys/modules Makefile Log: Enable aac(4) module build for amd64 Revision Changes Path 1.397 +1 -0 src/sys/modules/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 30 03:52:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54B916A4CE; Mon, 30 Aug 2004 03:52:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84F9D43D1D; Mon, 30 Aug 2004 03:52:05 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U3q51J083608; Mon, 30 Aug 2004 03:52:05 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U3q5fW083607; Mon, 30 Aug 2004 03:52:05 GMT (envelope-from alc) Message-Id: <200408300352.i7U3q5fW083607@repoman.freebsd.org> From: Alan Cox Date: Mon, 30 Aug 2004 03:52:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 03:52:05 -0000 alc 2004-08-30 03:52:05 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: Remove unnecessary check for curthread == NULL. Revision Changes Path 1.496 +1 -1 src/sys/amd64/amd64/pmap.c 1.498 +1 -1 src/sys/i386/i386/pmap.c 1.148 +1 -1 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 04:32:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD54916A4CE; Mon, 30 Aug 2004 04:32:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AAA443D41; Mon, 30 Aug 2004 04:32:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U4WqxO084832; Mon, 30 Aug 2004 04:32:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U4WqVa084831; Mon, 30 Aug 2004 04:32:52 GMT (envelope-from yar) Message-Id: <200408300432.i7U4WqVa084831@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 30 Aug 2004 04:32:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_sl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 04:32:52 -0000 yar 2004-08-30 04:32:52 UTC FreeBSD src repository Modified files: sys/net if_sl.c Log: Grant the poor old SLIP driver with an if_start handler so that it becomes happy and no longer panics the system upon getting the very first packet to transmit. Reported and tested by: Igor Timkin Reviewed by: rwatson MFC after: 5 days Revision Changes Path 1.125 +18 -7 src/sys/net/if_sl.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 04:42:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8280216A4CE; Mon, 30 Aug 2004 04:42:55 +0000 (GMT) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4D4643D48; Mon, 30 Aug 2004 04:42:54 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.12.9p2/8.12.9) with ESMTP id i7U4gq6E013501; Mon, 30 Aug 2004 08:42:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.12.9p2/8.12.9/Submit) id i7U4gqBM013500; Mon, 30 Aug 2004 08:42:52 +0400 (MSD) (envelope-from yar) Date: Mon, 30 Aug 2004 08:42:52 +0400 From: Yar Tikhiy To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040830044251.GA13201@comp.chem.msu.su> References: <200408300432.i7U4WqVa084831@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408300432.i7U4WqVa084831@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/sys/net if_sl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 04:42:55 -0000 On Mon, Aug 30, 2004 at 04:32:52AM +0000, Yar Tikhiy wrote: > yar 2004-08-30 04:32:52 UTC > > FreeBSD src repository > > Modified files: > sys/net if_sl.c > Log: > Grant the poor old SLIP driver with an if_start handler > so that it becomes happy and no longer panics the system > upon getting the very first packet to transmit. A small note: It took a normal-priority packet to panic the system. Therefore you couldn't trigger the bug with telnet(1), which was marking its traffic as low-delay. OTOH, ssh, ping, or traceroute via SLIP would result in an instant crash. > Reported and tested by: Igor Timkin > Reviewed by: rwatson > MFC after: 5 days > > Revision Changes Path > 1.125 +18 -7 src/sys/net/if_sl.c -- Yar From owner-cvs-src@FreeBSD.ORG Mon Aug 30 04:48:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F0E616A4CE; Mon, 30 Aug 2004 04:48:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E3A843D46; Mon, 30 Aug 2004 04:48:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U4mqZT085353; Mon, 30 Aug 2004 04:48:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U4mq4p085352; Mon, 30 Aug 2004 04:48:52 GMT (envelope-from yar) Message-Id: <200408300448.i7U4mq4p085352@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 30 Aug 2004 04:48:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_sl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 04:48:52 -0000 yar 2004-08-30 04:48:52 UTC FreeBSD src repository Modified files: sys/net if_sl.c Log: Use an ANSI-style definition for slstart() in accord with the rest of the file. Revision Changes Path 1.126 +1 -2 src/sys/net/if_sl.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 05:48:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4C2916A4CE; Mon, 30 Aug 2004 05:48:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85D2943D2D; Mon, 30 Aug 2004 05:48:49 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U5mn8q086900; Mon, 30 Aug 2004 05:48:49 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U5mnsN086899; Mon, 30 Aug 2004 05:48:49 GMT (envelope-from imp) Message-Id: <200408300548.i7U5mnsN086899@repoman.freebsd.org> From: Warner Losh Date: Mon, 30 Aug 2004 05:48:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_bus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 05:48:50 -0000 imp 2004-08-30 05:48:49 UTC FreeBSD src repository Modified files: sys/kern subr_bus.c Log: Fix BUS_DEBUG case Revision Changes Path 1.160 +1 -1 src/sys/kern/subr_bus.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 06:19:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EEF516A4CE; Mon, 30 Aug 2004 06:19:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF7343D2F; Mon, 30 Aug 2004 06:19:35 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U6JZU4087939; Mon, 30 Aug 2004 06:19:35 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U6JZ8q087938; Mon, 30 Aug 2004 06:19:35 GMT (envelope-from ru) Message-Id: <200408300619.i7U6JZ8q087938@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 30 Aug 2004 06:19:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile.inc.docports X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 06:19:35 -0000 ru 2004-08-30 06:19:34 UTC FreeBSD src repository Modified files: release Makefile.inc.docports Log: Added lang/perl5.8 to the doc/ ports list, it's the default Perl version, and "make release -DNOPORTS" breaks without it. Noticed by: scottl Keep lang/perl5 in the list because it's the default Perl version for 4.x, and it's still possible to "make release" of HEAD on 4.x. Revision Changes Path 1.25 +1 -0 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Mon Aug 30 06:29:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A29FC16A4CF; Mon, 30 Aug 2004 06:29:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F27343D55; Mon, 30 Aug 2004 06:29:26 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U6TQIH088280; Mon, 30 Aug 2004 06:29:26 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U6TQ5C088279; Mon, 30 Aug 2004 06:29:26 GMT (envelope-from brooks) Message-Id: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> From: Brooks Davis Date: Mon, 30 Aug 2004 06:29:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 06:29:26 -0000 brooks 2004-08-30 06:29:26 UTC FreeBSD src repository Modified files: . UPDATING sys/sys param.h sys/net if.c if.h Log: Add a new variable, ifi_epoch, to struct if_data. It is set to the last time the interface counters were zeroed, currently the time if_attach() was called. It is indentended to be a valid value for RFC2233's ifCounterDiscontinuityTime and to make it easier for applications to verify that the interface they find at a given index is the one that was there last time they looked. An if_epoch "compatability" macro has not been created as ifi_epoch has never been a member of struct ifnet. Approved by: andre, bms, wollman Revision Changes Path 1.352 +5 -0 src/UPDATING 1.201 +1 -0 src/sys/net/if.c 1.89 +1 -0 src/sys/net/if.h 1.214 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Mon Aug 30 06:31:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B48A116A4D0; Mon, 30 Aug 2004 06:31:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9247843D1F; Mon, 30 Aug 2004 06:31:55 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U6Vtlw088460; Mon, 30 Aug 2004 06:31:55 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U6Vt7a088459; Mon, 30 Aug 2004 06:31:55 GMT (envelope-from roam) Message-Id: <200408300631.i7U6Vt7a088459@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 30 Aug 2004 06:31:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 06:31:55 -0000 roam 2004-08-30 06:31:55 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_5) sys/net rtsock.c Log: MFC rtsock.c 1.116: typo fix - attacked -> attached. Approved by: re (kensmith) Revision Changes Path 1.113.2.2 +1 -1 src/sys/net/rtsock.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 08:09:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8503E16A4CF; Mon, 30 Aug 2004 08:09:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6608643D2F; Mon, 30 Aug 2004 08:09:07 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U8979C091730; Mon, 30 Aug 2004 08:09:07 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U8972C091729; Mon, 30 Aug 2004 08:09:07 GMT (envelope-from truckman) Message-Id: <200408300809.i7U8972C091729@repoman.freebsd.org> From: Don Lewis Date: Mon, 30 Aug 2004 08:09:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 08:09:07 -0000 truckman 2004-08-30 08:09:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern vfs_subr.c Log: MFC vfs_subr.c 1.523 > Don't attempt to trigger the syncer thread final sync code in the > shutdown_pre_sync state if the RB_NOSYNC flag is set. This is the > likely cause of hangs after a system panic that are keeping crash > dumps from being done. Approved by: re (kensmith) Revision Changes Path 1.522.2.1 +3 -0 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 08:11:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1915116A4CE; Mon, 30 Aug 2004 08:11:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FE0443D5C; Mon, 30 Aug 2004 08:11:04 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U8B3Kb091850; Mon, 30 Aug 2004 08:11:03 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U8B3h1091849; Mon, 30 Aug 2004 08:11:03 GMT (envelope-from truckman) Message-Id: <200408300811.i7U8B3h1091849@repoman.freebsd.org> From: Don Lewis Date: Mon, 30 Aug 2004 08:11:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_module.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 08:11:04 -0000 truckman 2004-08-30 08:11:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_module.c Log: MFC kern_module.c 1.46 > Don't bother calling the module event handlers from module_shutdown() > in the shutdown_final state if the RB_NOSYNC flag is set. > > The specific motivation in this case is that a system panic in an > interrupt context results in a call to module_shutdown(), which > calls g_modevent(), which calls g_malloc(..., M_WAITOK), which > results in a second panic. While g_modevent() could be fixed to > not call malloc() for MOD_SHUTDOWN events (which it doesn't handle > in any case), it is probably also a good idea to entirely skip the > execution of the module shutdown handlers after a panic. Approved by: re (kensmith) Revision Changes Path 1.45.2.1 +3 -0 src/sys/kern/kern_module.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 08:38:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAF6B16A4CF; Mon, 30 Aug 2004 08:38:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BD1643D54; Mon, 30 Aug 2004 08:38:30 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U8cUZS093241; Mon, 30 Aug 2004 08:38:30 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U8cUlj093240; Mon, 30 Aug 2004 08:38:30 GMT (envelope-from cperciva) Message-Id: <200408300838.i7U8cUlj093240@repoman.freebsd.org> From: Colin Percival Date: Mon, 30 Aug 2004 08:38:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 08:38:30 -0000 cperciva 2004-08-30 08:38:30 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: Don't g_waitidle() when initializing a preloaded md. This fixes a deadlock which otherwise occurs during the boot process. Reported by: kensmith MFC after: 3 days (assuming that re@ approves) Revision Changes Path 1.129 +2 -1 src/sys/dev/md/md.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 09:33:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49D7316A4CE; Mon, 30 Aug 2004 09:33:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C27E43D41; Mon, 30 Aug 2004 09:33:07 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U9X72i095352; Mon, 30 Aug 2004 09:33:07 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U9X75E095351; Mon, 30 Aug 2004 09:33:07 GMT (envelope-from phk) Message-Id: <200408300933.i7U9X75E095351@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 30 Aug 2004 09:33:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys bio.h src/sys/geom geom_io.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 09:33:07 -0000 phk 2004-08-30 09:33:07 UTC FreeBSD src repository Modified files: sys/sys bio.h sys/geom geom_io.c Log: Add more KASSERTS and checks. Revision Changes Path 1.59 +21 -0 src/sys/geom/geom_io.c 1.141 +1 -0 src/sys/sys/bio.h From owner-cvs-src@FreeBSD.ORG Mon Aug 30 09:50:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3A9A16A54C; Mon, 30 Aug 2004 09:49:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55CDF43D46; Mon, 30 Aug 2004 09:49:59 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U9nxBS095992; Mon, 30 Aug 2004 09:49:59 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U9nxWa095991; Mon, 30 Aug 2004 09:49:59 GMT (envelope-from pjd) Message-Id: <200408300949.i7U9nxWa095991@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 30 Aug 2004 09:49:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/kld/cdev/module cdevmod.c src/share/examples/kld/dyn_sysctl dyn_sysctl.c src/share/examples/kld/syscall/module syscall.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 09:50:00 -0000 pjd 2004-08-30 09:49:59 UTC FreeBSD src repository Modified files: share/examples/kld/cdev/module cdevmod.c share/examples/kld/dyn_sysctl dyn_sysctl.c share/examples/kld/syscall/module syscall.c Log: According to module(9), when command is unrecognized, the module should return EOPNOTSUPP. Revision Changes Path 1.7 +1 -1 src/share/examples/kld/cdev/module/cdevmod.c 1.3 +2 -2 src/share/examples/kld/dyn_sysctl/dyn_sysctl.c 1.4 +1 -1 src/share/examples/kld/syscall/module/syscall.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 10:25:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AA4116A4CE; Mon, 30 Aug 2004 10:25:21 +0000 (GMT) Received: from pd2mo3so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5147643D46; Mon, 30 Aug 2004 10:25:21 +0000 (GMT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from pd3mr6so.prod.shaw.ca (pd3mr6so-qfe3.prod.shaw.ca [10.0.141.21])2004)) with ESMTP id <0I39001S74BTH980@l-daemon>; Mon, 30 Aug 2004 02:45:29 -0600 (MDT) Received: from pn2ml4so.prod.shaw.ca ([10.0.121.148]) by pd3mr6so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I39009H44BT6320@pd3mr6so.prod.shaw.ca>; Mon, 30 Aug 2004 02:45:29 -0600 (MDT) Received: from piii600.wadham.ox.ac.uk (S0106006067227a4a.vc.shawcable.net [24.87.233.42])2003)) with ESMTP id <0I3900E8L4BN4I@l-daemon>; Mon, 30 Aug 2004 02:45:29 -0600 (MDT) Date: Mon, 30 Aug 2004 01:44:19 -0700 From: Colin Percival In-reply-to: <200408300838.i7U8cUlj093240@repoman.freebsd.org> X-Sender: cperciva@popserver.sfu.ca (Unverified) To: Colin Percival Message-id: <6.1.0.6.1.20040830014202.03925488@popserver.sfu.ca> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 6.1.0.6 Content-type: text/plain; charset=us-ascii References: <200408300838.i7U8cUlj093240@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 10:25:22 -0000 At 01:38 30/08/2004, Colin Percival wrote: > Modified files: > sys/dev/md md.c > Log: > Don't g_waitidle() when initializing a preloaded md. This fixes a > deadlock which otherwise occurs during the boot process. I forgot to add: Tested by: Building and installing 5.3-BETA2 with this patch. > MFC after: 3 days > (assuming that re@ approves) Could the `MFC after:` regex be modified to allow comments after the \d+ (days|weeks|etc) ? Colin Percival From owner-cvs-src@FreeBSD.ORG Mon Aug 30 13:08:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4AEC16A4CF; Mon, 30 Aug 2004 13:08:43 +0000 (GMT) Received: from mx1.originative.co.uk (freebsd.gotadsl.co.uk [81.6.249.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9CA443D45; Mon, 30 Aug 2004 13:08:38 +0000 (GMT) (envelope-from paul@originative.co.uk) Received: from localhost (unknown [127.0.0.1]) by mx1.originative.co.uk (Postfix) with ESMTP id 8604515579; Mon, 30 Aug 2004 14:08:37 +0100 (BST) Received: from mx1.originative.co.uk ([127.0.0.1])port 10024) with ESMTP id 00602-09; Mon, 30 Aug 2004 14:08:35 +0100 (BST) Received: from [192.168.7.2] (myrddin [192.168.7.2]) by mx1.originative.co.uk (Postfix) with ESMTP id BB39E1556F; Mon, 30 Aug 2004 14:08:34 +0100 (BST) From: Paul Richards To: Nate Lawson In-Reply-To: <200408292323.i7TNNcTc076216@repoman.freebsd.org> References: <200408292323.i7TNNcTc076216@repoman.freebsd.org> Content-Type: text/plain Message-Id: <1093871314.1029.0.camel@myrddin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 30 Aug 2004 14:08:34 +0100 Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 13:08:43 -0000 On Mon, 2004-08-30 at 00:23, Nate Lawson wrote: > njl 2004-08-29 23:23:38 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > sys/dev/acpica acpi_pci_link.c > Log: > MFC rev 1.26-1.28: When ignoring an invalid _CRS response, be sure to > set a status of success. Also moves a printf under bootverbose. This hasn't unfortunately fixed my machine. It still gets no interrupt routing either with or without ACPI enabled. I'm keeping it running off an Aug 12th kernel at the moment. Paul. From owner-cvs-src@FreeBSD.ORG Mon Aug 30 13:57:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6003A16A4CE; Mon, 30 Aug 2004 13:57:01 +0000 (GMT) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF03D43D4C; Mon, 30 Aug 2004 13:57:00 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7UDuxCC042081; Mon, 30 Aug 2004 15:56:59 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7UDuxU5051169; Mon, 30 Aug 2004 15:56:59 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7UDuwrn051168; Mon, 30 Aug 2004 15:56:58 +0200 (CEST) (envelope-from wb) Date: Mon, 30 Aug 2004 15:56:58 +0200 From: Wilko Bulte To: Marcel Moolenaar Message-ID: <20040830135658.GA51153@freebie.xs4all.nl> References: <200408291952.i7TJqX5c069635@repoman.freebsd.org> <20040829202426.GB45805@freebie.xs4all.nl> <20040829213155.GB23266@dhcp53.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040829213155.GB23266@dhcp53.pn.xcllnt.net> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 13:57:01 -0000 On Sun, Aug 29, 2004 at 02:31:55PM -0700, Marcel Moolenaar wrote.. > On Sun, Aug 29, 2004 at 10:24:26PM +0200, Wilko Bulte wrote: > > > Modified files: > > > release/ia64 mkisoimages.sh > > > Log: > > > Put the ispfw.ko module on the EFI boot partition when creating a > > > bootable ISO. HP machines (like the rx2600) that (also) have isp(4) > > > may have a non-standard firmware on the controller. Our isp(4) driver > > > is not able to work with those and even panics. This makes installing > > > FreeBSD rather impossible. By adding the ispfw.ko module, we give the > > > user a chance to upload a certified firmware onto the card and so make > > > it possible to either use the isp(4) successfully or otherwise avoid > > > the panic. > > > > Neat! I have the distinct feeling I know the box where this needs to be > > tested on ;) > > Oh, good. I don't have to ask then... :-) I'm a nice guy (generally). Do you have an install ISO around somewhere that I can pull over? Better be tested before MFC5 right? -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 30 14:41:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BAD416A4DD; Mon, 30 Aug 2004 14:41:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1D7843D55; Mon, 30 Aug 2004 14:41:25 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UEfPnC004066; Mon, 30 Aug 2004 14:41:25 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UEfPPa004065; Mon, 30 Aug 2004 14:41:25 GMT (envelope-from rwatson) Message-Id: <200408301441.i7UEfPPa004065@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 14:41:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 14:41:26 -0000 rwatson 2004-08-30 14:41:25 UTC FreeBSD src repository Modified files: sys/netgraph ng_socket.c Log: Acquire Giant arounds calls into the linker from Netgraph sockets. We now no longer hold Giant in send(), so it isn't inheritted by the linker, which calls into VFS. Reported by: glebius Discussed with: glebius, bz Revision Changes Path 1.54 +2 -0 src/sys/netgraph/ng_socket.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 15:40:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2713716A4CE; Mon, 30 Aug 2004 15:40:01 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0DE843D1F; Mon, 30 Aug 2004 15:40:00 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp53.pn.xcllnt.net (dhcp53.pn.xcllnt.net [192.168.4.253]) by ns1.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7UFdvW7052105; Mon, 30 Aug 2004 08:39:57 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp53.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp53.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7UFdwrr027133; Mon, 30 Aug 2004 08:39:58 -0700 (PDT) (envelope-from marcel@dhcp53.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp53.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7UFdwOp027132; Mon, 30 Aug 2004 08:39:58 -0700 (PDT) (envelope-from marcel) Date: Mon, 30 Aug 2004 08:39:58 -0700 From: Marcel Moolenaar To: Wilko Bulte Message-ID: <20040830153958.GA27073@dhcp53.pn.xcllnt.net> References: <200408291952.i7TJqX5c069635@repoman.freebsd.org> <20040829202426.GB45805@freebie.xs4all.nl> <20040829213155.GB23266@dhcp53.pn.xcllnt.net> <20040830135658.GA51153@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040830135658.GA51153@freebie.xs4all.nl> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 15:40:01 -0000 On Mon, Aug 30, 2004 at 03:56:58PM +0200, Wilko Bulte wrote: > > > > > > Neat! I have the distinct feeling I know the box where this needs to be > > > tested on ;) > > > > Oh, good. I don't have to ask then... :-) > > I'm a nice guy (generally). Do you have an install ISO around somewhere > that I can pull over? Better be tested before MFC5 right? 5.3-BETA2 has been built with this change, so it's already tested from a process point of view. It would be nice to know if the f/w module can be used to get isp(4) to work with the hardware. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Mon Aug 30 15:50:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E5E16A4CE; Mon, 30 Aug 2004 15:50:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C634143D1D; Mon, 30 Aug 2004 15:50:50 +0000 (GMT) (envelope-from sheldonh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UFoo5t006886; Mon, 30 Aug 2004 15:50:50 GMT (envelope-from sheldonh@repoman.freebsd.org) Received: (from sheldonh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UFooD0006885; Mon, 30 Aug 2004 15:50:50 GMT (envelope-from sheldonh) Message-Id: <200408301550.i7UFooD0006885@repoman.freebsd.org> From: Sheldon Hearn Date: Mon, 30 Aug 2004 15:50:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 15:50:51 -0000 sheldonh 2004-08-30 15:50:50 UTC FreeBSD src repository Modified files: share/misc pci_vendors Log: Regen: * Hart: rev 489 of pcidevs.txt (2004-08-23) * Boemler: vendors.txt (2004-08-30) Revision Changes Path 1.31 +146 -21 src/share/misc/pci_vendors From owner-cvs-src@FreeBSD.ORG Mon Aug 30 15:51:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB6D16A4CE; Mon, 30 Aug 2004 15:51:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3D1043D1D; Mon, 30 Aug 2004 15:51:34 +0000 (GMT) (envelope-from sheldonh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UFpYht006949; Mon, 30 Aug 2004 15:51:34 GMT (envelope-from sheldonh@repoman.freebsd.org) Received: (from sheldonh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UFpY8V006948; Mon, 30 Aug 2004 15:51:34 GMT (envelope-from sheldonh) Message-Id: <200408301551.i7UFpY8V006948@repoman.freebsd.org> From: Sheldon Hearn Date: Mon, 30 Aug 2004 15:51:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 15:51:35 -0000 sheldonh 2004-08-30 15:51:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/misc pci_vendors Log: MFC rev 1.31: regen Revision Changes Path 1.30.2.1 +146 -21 src/share/misc/pci_vendors From owner-cvs-src@FreeBSD.ORG Mon Aug 30 15:53:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BF9C16A4CE; Mon, 30 Aug 2004 15:53:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D55E43D3F; Mon, 30 Aug 2004 15:53:07 +0000 (GMT) (envelope-from sheldonh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UFr7dX007011; Mon, 30 Aug 2004 15:53:07 GMT (envelope-from sheldonh@repoman.freebsd.org) Received: (from sheldonh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UFr74X007010; Mon, 30 Aug 2004 15:53:07 GMT (envelope-from sheldonh) Message-Id: <200408301553.i7UFr74X007010@repoman.freebsd.org> From: Sheldon Hearn Date: Mon, 30 Aug 2004 15:53:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 15:53:07 -0000 sheldonh 2004-08-30 15:53:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) share/misc pci_vendors Log: MFC rev 1.31: regen This branch (RELENG_4) was out of sync with HEAD and RELENG_5. I didn't take the time to find out why. Revision Changes Path 1.6.2.21 +1019 -476 src/share/misc/pci_vendors From owner-cvs-src@FreeBSD.ORG Mon Aug 30 16:22:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AD3816A4CF; Mon, 30 Aug 2004 16:22:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1AFF43D41; Mon, 30 Aug 2004 16:22:23 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UGMN51008099; Mon, 30 Aug 2004 16:22:23 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UGMNWx008098; Mon, 30 Aug 2004 16:22:23 GMT (envelope-from rwatson) Message-Id: <200408301622.i7UGMNWx008098@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 16:22:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netinet udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 16:22:24 -0000 rwatson 2004-08-30 16:22:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet udp_usrreq.c Log: Merge udp_usrreq.c:1.164 and udp_usrreq.c:1.165 to RELENG_5: revision 1.165 date: 2004/08/22 01:32:48; author: rwatson; state: Exp; lines: +3 -1 When sliding the m_data pointer forward, update m_pktrhdr.len as well as m_len, or the pkthdr length will be inconsistent with the actual length of data in the mbuf chain. The symptom of this occuring was "out of data" warnings from in_cksum_skip() on large UDP packets sent via the loopback interface. revision 1.164 date: 2004/08/21 16:14:04; author: rwatson; state: Exp; lines: +7 -4 When prepending space onto outgoing UDP datagram payloads to hold the UDP/IP header, make sure that space is also allocated for the link layer header. If an mbuf must be allocated to hold the UDP/IP header (very likely), then this will avoid an additional mbuf allocation at the link layer. This trick is also used by TCP and other protocols to avoid extra calls to the mbuf allocator in the ethernet (and related) output routines. Approved by: re (Scottl) Revision Changes Path 1.162.2.2 +9 -4 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 16:33:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6354216A4CE; Mon, 30 Aug 2004 16:33:58 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10CFF43D41; Mon, 30 Aug 2004 16:33:58 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from [192.168.0.12] (g4.samsco.home [192.168.0.12]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i7UGXTjI066743; Mon, 30 Aug 2004 10:33:29 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <413356AB.5050306@freebsd.org> Date: Mon, 30 Aug 2004 10:32:43 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7) Gecko/20040514 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sheldon Hearn References: <200408301551.i7UFpY8V006948@repoman.freebsd.org> In-Reply-To: <200408301551.i7UFpY8V006948@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 16:33:58 -0000 Sheldon Hearn wrote: > sheldonh 2004-08-30 15:51:34 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > share/misc pci_vendors > Log: > MFC rev 1.31: regen > > Revision Changes Path > 1.30.2.1 +146 -21 src/share/misc/pci_vendors I'm quite surprised that the CVS scripts didn't require you to put an 'Approved by' line here. Is something broken? Scott From owner-cvs-src@FreeBSD.ORG Mon Aug 30 16:58:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B3C116A4CE; Mon, 30 Aug 2004 16:58:03 +0000 (GMT) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6AF243D31; Mon, 30 Aug 2004 16:58:02 +0000 (GMT) (envelope-from peter@evilpete.dyndns.org) Received: from fw.wemm.org (canning.wemm.org [192.203.228.65]) by canning.wemm.org (Postfix) with ESMTP id A02F52A8DA; Mon, 30 Aug 2004 09:58:02 -0700 (PDT) (envelope-from peter@overcee.wemm.org) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (Postfix) with ESMTP id 45E44E2B4; Mon, 30 Aug 2004 09:58:02 -0700 (PDT) (envelope-from peter@overcee.wemm.org) Received: from overcee.wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (8.12.11/8.12.11) with ESMTP id i7UGw1Ex001766; Mon, 30 Aug 2004 09:58:01 -0700 (PDT) (envelope-from peter@overcee.wemm.org) Received: from localhost (localhost [[UNIX: localhost]]) by overcee.wemm.org (8.12.11/8.12.11/Submit) id i7UGvtwX001760; Mon, 30 Aug 2004 09:57:55 -0700 (PDT) (envelope-from peter) From: Peter Wemm To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 30 Aug 2004 09:57:55 -0700 User-Agent: KMail/1.6.1 References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829175021.GB41269@dragon.nuxi.com> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408300957.55509.peter@wemm.org> cc: Alexander Leidinger cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: obrien@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 16:58:03 -0000 On Sunday 29 August 2004 12:00 pm, Dag-Erling Sm=F8rgrav wrote: > "David O'Brien" writes: > > Could it also be Intel Xeon CT[*]? And thus amd64 also? > > It's really chipset-dependent, not processor-dependent. Will EM64T- > enabled P4s or Xeons run on ICH motherboards? Intel use the same programming interface on their newer chipsets, that=20 happen to support their 64-bit enabled cpus. And for amusement value, the amd64 8111 chipset provides an=20 ich-compatable AC97 interface.. peter@overcee[9:56am]~/fbp4/hammer/sys/dev/sound/pci-106> grep 8111 * ich.c: device_set_desc(dev, "AMD-8111"); =2D-=20 Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 17:24:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8D2916A4CE; Mon, 30 Aug 2004 17:24:49 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30EDD43D66; Mon, 30 Aug 2004 17:24:49 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 56A183D5D; Mon, 30 Aug 2004 19:25:26 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 1191BB873; Mon, 30 Aug 2004 19:24:48 +0200 (CEST) To: Peter Wemm References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829175021.GB41269@dragon.nuxi.com> <200408300957.55509.peter@wemm.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Mon, 30 Aug 2004 19:24:48 +0200 In-Reply-To: <200408300957.55509.peter@wemm.org> (Peter Wemm's message of "Mon, 30 Aug 2004 09:57:55 -0700") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: Alexander Leidinger cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: obrien@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 17:24:50 -0000 Peter Wemm writes: > On Sunday 29 August 2004 12:00 pm, Dag-Erling Sm=F8rgrav wrote: > > It's really chipset-dependent, not processor-dependent. Will EM64T- > > enabled P4s or Xeons run on ICH motherboards? > Intel use the same programming interface on their newer chipsets, that=20 > happen to support their 64-bit enabled cpus. OK. Send me a motherboard + CPU and I'll verify that the ichwd driver works on it :) DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Aug 30 17:54:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E638716A4CE; Mon, 30 Aug 2004 17:54:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD9B343D55; Mon, 30 Aug 2004 17:54:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UHsvkv011583; Mon, 30 Aug 2004 17:54:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UHsvDq011582; Mon, 30 Aug 2004 17:54:57 GMT (envelope-from rwatson) Message-Id: <200408301754.i7UHsvDq011582@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 17:54:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 17:54:58 -0000 rwatson 2004-08-30 17:54:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern uipc_socket.c Log: Merge kern_socket.c:1.211 to RELENG_5: date: 2004/08/24 05:28:18; author: rwatson; state: Exp; lines: +16 -35 Conditional acquisition of socket buffer mutexes when testing socket buffers with kqueue filters is no longer required: the kqueue framework will guarantee that the mutex is held on entering the filter, either due to a call from the socket code already holding the mutex, or by explicitly acquiring it. This removes the last of the conditional socket locking. Approved by: re (scottl) Revision Changes Path 1.208.2.1 +16 -35 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 18:40:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 871B516A4CE; Mon, 30 Aug 2004 18:40:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6798D43D4C; Mon, 30 Aug 2004 18:40:02 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UIe0QD012843; Mon, 30 Aug 2004 18:40:00 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UIe0aU012842; Mon, 30 Aug 2004 18:40:00 GMT (envelope-from wilko) Message-Id: <200408301840.i7UIe0aU012842@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 30 Aug 2004 18:40:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 18:40:02 -0000 wilko 2004-08-30 18:40:00 UTC FreeBSD src repository Modified files: sys/alpha/conf GENERIC Log: Add em(4) to Alpha. I had a couple running recently on Alpha and it appeared to work fine. Submitted by: Konstantin Saurbier saurbier at mathematik uni-bielefeld de Revision Changes Path 1.177 +1 -0 src/sys/alpha/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Aug 30 18:50:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DC4716A4CE; Mon, 30 Aug 2004 18:50:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C2C43D53; Mon, 30 Aug 2004 18:50:06 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UIo6PE013257; Mon, 30 Aug 2004 18:50:06 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UIo640013256; Mon, 30 Aug 2004 18:50:06 GMT (envelope-from pjd) Message-Id: <200408301850.i7UIo640013256@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 30 Aug 2004 18:50:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/concat g_concat.c src/sys/geom/label g_label.c src/sys/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.c src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 18:50:06 -0000 pjd 2004-08-30 18:50:06 UTC FreeBSD src repository Modified files: sys/geom/concat g_concat.c sys/geom/label g_label.c sys/geom/mirror g_mirror.c sys/geom/raid3 g_raid3.c sys/geom/stripe g_stripe.c Log: Allow to configure debug level from /boot/loader.conf. Revision Changes Path 1.20 +1 -0 src/sys/geom/concat/g_concat.c 1.9 +1 -0 src/sys/geom/label/g_label.c 1.25 +1 -0 src/sys/geom/mirror/g_mirror.c 1.13 +1 -0 src/sys/geom/raid3/g_raid3.c 1.19 +1 -0 src/sys/geom/stripe/g_stripe.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 19:09:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C94816A4E8; Mon, 30 Aug 2004 19:09:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D80243D3F; Mon, 30 Aug 2004 19:09:59 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UJ9wiZ014002; Mon, 30 Aug 2004 19:09:58 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UJ9wDg014001; Mon, 30 Aug 2004 19:09:58 GMT (envelope-from wilko) Message-Id: <200408301909.i7UJ9wDg014001@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 30 Aug 2004 19:09:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 19:09:59 -0000 wilko 2004-08-30 19:09:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: MFC: - Now that I discovered that 164SX SRM recognises Intel 8255x NICs and allows them to be net booted lets document that fact. - Note that Adaptec 3940UW won't be recognised by the 164sx SRM - Warn that 164SX is a picky customer with regards to DIMMs. Approved by: re (kensmith) Revision Changes Path 1.69.2.1 +8 -3 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Mon Aug 30 19:22:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CAE416A4CE; Mon, 30 Aug 2004 19:22:42 +0000 (GMT) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id B13BB43D1F; Mon, 30 Aug 2004 19:22:41 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7UJMaA0007098; Mon, 30 Aug 2004 21:22:39 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7UJMYRC053193; Mon, 30 Aug 2004 21:22:34 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7UJMVkR053192; Mon, 30 Aug 2004 21:22:31 +0200 (CEST) (envelope-from wb) Date: Mon, 30 Aug 2004 21:22:31 +0200 From: Wilko Bulte To: Marcel Moolenaar Message-ID: <20040830192231.GA53177@freebie.xs4all.nl> References: <200408291952.i7TJqX5c069635@repoman.freebsd.org> <20040829202426.GB45805@freebie.xs4all.nl> <20040829213155.GB23266@dhcp53.pn.xcllnt.net> <20040830135658.GA51153@freebie.xs4all.nl> <20040830153958.GA27073@dhcp53.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040830153958.GA27073@dhcp53.pn.xcllnt.net> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 19:22:42 -0000 On Mon, Aug 30, 2004 at 08:39:58AM -0700, Marcel Moolenaar wrote.. > On Mon, Aug 30, 2004 at 03:56:58PM +0200, Wilko Bulte wrote: > > > > > > > > Neat! I have the distinct feeling I know the box where this needs to be > > > > tested on ;) > > > > > > Oh, good. I don't have to ask then... :-) > > > > I'm a nice guy (generally). Do you have an install ISO around somewhere > > that I can pull over? Better be tested before MFC5 right? > > 5.3-BETA2 has been built with this change, so it's already tested > from a process point of view. It would be nice to know if the f/w > module can be used to get isp(4) to work with the hardware. OK, the BETA2 ISO sits on a CDRW now and I'll stick it in the CDdrive tomorrow. Stay tuned.. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 30 19:50:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D24016A4CE; Mon, 30 Aug 2004 19:50:23 +0000 (GMT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D03A243D55; Mon, 30 Aug 2004 19:50:22 +0000 (GMT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.10/8.12.10) with ESMTP id i7UJoKJt017992 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 30 Aug 2004 15:50:20 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id i7UJoF8Z040283; Mon, 30 Aug 2004 15:50:15 -0400 (EDT) (envelope-from gallatin) Date: Mon, 30 Aug 2004 15:50:15 -0400 From: Andrew Gallatin To: Brooks Davis Message-ID: <20040830155015.A40262@grasshopper.cs.duke.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200408300629.i7U6TQ5C088279@repoman.freebsd.org>; from brooks@FreeBSD.org on Mon, Aug 30, 2004 at 06:29:26AM +0000 X-Operating-System: FreeBSD 4.9-RELEASE-p1 on an i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 19:50:23 -0000 Brooks Davis [brooks@FreeBSD.org] wrote: > brooks 2004-08-30 06:29:26 UTC > > FreeBSD src repository > > Modified files: > . UPDATING > sys/sys param.h > sys/net if.c if.h > Log: > Add a new variable, ifi_epoch, to struct if_data. It is set to the last Any chance this is what's breaking ifconfig for me on powerpc with a 2-week old world and a brand new kernel? With brand new kernel, I see this: g4# ifconfig gem0 : flags=108802 mtu 1500 Using an ifconfig which matches the kernel: g4# /usr/obj/usr/src/sbin/ifconfig/ifconfig gem0 gem0: flags=108802 mtu 1500 ether 00:03:93:56:99:42 media: Ethernet autoselect Is this also happening on sparc64? Drew From owner-cvs-src@FreeBSD.ORG Mon Aug 30 20:14:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FFB916A4CE; Mon, 30 Aug 2004 20:14:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2408343D39; Mon, 30 Aug 2004 20:14:22 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UKEMuj026139; Mon, 30 Aug 2004 20:14:22 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UKEMdw026138; Mon, 30 Aug 2004 20:14:22 GMT (envelope-from gibbs) Message-Id: <200408302014.i7UKEMdw026138@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 30 Aug 2004 20:14:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam cam_periph.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 20:14:22 -0000 gibbs 2004-08-30 20:14:21 UTC FreeBSD src repository Modified files: sys/cam cam_periph.c Log: Correct a typo in a comment: alloation->allocation Reported by: Jens Schweikhardt Revision Changes Path 1.57 +1 -1 src/sys/cam/cam_periph.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 20:15:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF17716A4CE; Mon, 30 Aug 2004 20:15:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0EA443D41; Mon, 30 Aug 2004 20:15:42 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UKFgqM026256; Mon, 30 Aug 2004 20:15:42 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UKFgGk026255; Mon, 30 Aug 2004 20:15:42 GMT (envelope-from gibbs) Message-Id: <200408302015.i7UKFgGk026255@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 30 Aug 2004 20:15:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx ahc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 20:15:43 -0000 gibbs 2004-08-30 20:15:42 UTC FreeBSD src repository Modified files: sys/dev/aic7xxx ahc_isa.c Log: Correct a typo in a comment: alloated->allocated Reported by: Jens Schweikhardt Revision Changes Path 1.4 +1 -1 src/sys/dev/aic7xxx/ahc_isa.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 20:58:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0457A16A4CF for ; Mon, 30 Aug 2004 20:58:05 +0000 (GMT) Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3FBE43D68 for ; Mon, 30 Aug 2004 20:58:04 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 28037 invoked from network); 30 Aug 2004 20:58:04 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 30 Aug 2004 20:58:04 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7UKvvMl045297; Mon, 30 Aug 2004 16:58:00 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Yar Tikhiy Date: Mon, 30 Aug 2004 11:41:00 -0400 User-Agent: KMail/1.6.2 References: <200408280839.i7S8dZpI097103@repoman.freebsd.org> In-Reply-To: <200408280839.i7S8dZpI097103@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408301141.00176.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/mbr Makefile mbr.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 20:58:05 -0000 On Saturday 28 August 2004 04:39 am, Yar Tikhiy wrote: > yar 2004-08-28 08:39:35 UTC > > FreeBSD src repository > > Modified files: > sys/boot/i386/mbr Makefile mbr.s > Log: > Don't be too smart, just try packet mode of INT13 first. > This way of operation is more robust than the "AI" used > before. > > Add flags to mbr accessible from make.conf as BOOT_MBR_FLAGS. > Only one flag is defined now, "allow using packet mode", which > is 0x80 in accord with the rest of i386 boot code. The "packet" > flag is on by default. > > PR: i386/70241 > Submitted by: Valentin Nechayev netch.kiev.ua> (inital > version) Discussed with: jhb (by Valentin Nechayev) > Tested on: bochs (with EDD turned on or off by patching the BIOS), > PCs > > Revision Changes Path > 1.14 +4 -0 src/sys/boot/i386/mbr/Makefile > 1.7 +6 -6 src/sys/boot/i386/mbr/mbr.s Hmm, there are no e-mails from me in the PR trail and I don't recall ever be in favor of these changes (though I don't care enough to ask for them to be backed out.. Only really old machines with pre-1995 BIOS should be broken in theory.) It would be nice if you wouldn't claim that I supported something that I didn't actually support though. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 30 20:58:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F76616A55D for ; Mon, 30 Aug 2004 20:58:07 +0000 (GMT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45E7543D5E for ; Mon, 30 Aug 2004 20:58:07 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 17527 invoked from network); 30 Aug 2004 20:58:06 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 30 Aug 2004 20:58:06 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7UKvvMm045297; Mon, 30 Aug 2004 16:58:03 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Max Laier Date: Mon, 30 Aug 2004 14:27:49 -0400 User-Agent: KMail/1.6.2 References: <200408271516.i7RFGO8L061926@repoman.freebsd.org> <20040827202133.GC55748@hub.freebsd.org> <200408272253.14317.max@love2party.net> In-Reply-To: <200408272253.14317.max@love2party.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408301427.49729.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: Darren Reed cc: Andre Oppermann cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 ipfirewall.4 src/share/man/man9 pfil.9 src/sys/alpha/conf GENERIC src/sys/amd64/conf GENERIC src/sys/conf NOTES files options src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC SKI src/sys/modules/bridge Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 20:58:07 -0000 On Friday 27 August 2004 04:52 pm, Max Laier wrote: > Take a look at how sx(9) is implemented. What is there in pfil now is not > very different. Long story short sx(9) has even more overhead and has > starvation problems. It also has WITNESS checking whereas home rolled locks don't and can more easily lead to buggy code with deadlocks. sx(9) is just a mutex with a couple of cv's. Note that cv's have no additional overhead compared to msleep, in fact since their wait functions are more specific they may be slightly quicker for the cases that you aren't doing a timeout or a signal catch. > > The strategy currently in place is more akin to something that would > > be used in a device driver where you have two "halves" and one will > > sleep. In none of the code wrapped by PFIL_WLOCK is there anything > > that will make the system wait. > > You cannot sleep with PFIL_WLOCK held. It's a plain mutex lock! > > > The use of sx(9) should be a no-brainer. > > Yes, but it will reduce performance and introduce stravation problems. Once > we have a better sx(9) implementation I am all for switching over. Right > now it does not work. What starvation problems? A shared unlock gives precedence to waiting writers and an exclusive unlock gives precedence to waiting readers. This is very similar to rwlocks in Solaris with the exception that the sx code currently doesn't take priority into account when making this decision. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 30 20:58:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE92516A4D4 for ; Mon, 30 Aug 2004 20:58:15 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F3D643D2D for ; Mon, 30 Aug 2004 20:58:15 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 9345 invoked from network); 30 Aug 2004 20:58:14 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 30 Aug 2004 20:58:14 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7UKvvMn045297; Mon, 30 Aug 2004 16:58:05 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 30 Aug 2004 14:33:01 -0400 User-Agent: KMail/1.6.2 References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <200408300957.55509.peter@wemm.org> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408301433.01661.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: obrien@FreeBSD.org cc: Alexander Leidinger Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 20:58:15 -0000 On Monday 30 August 2004 01:24 pm, Dag-Erling Sm=F8rgrav wrote: > Peter Wemm writes: > > On Sunday 29 August 2004 12:00 pm, Dag-Erling Sm=F8rgrav wrote: > > > It's really chipset-dependent, not processor-dependent. Will EM64T- > > > enabled P4s or Xeons run on ICH motherboards? > > > > Intel use the same programming interface on their newer chipsets, that > > happen to support their 64-bit enabled cpus. > > OK. Send me a motherboard + CPU and I'll verify that the ichwd driver > works on it :) You can already buy Prescott motherboard and CPUs. :) =2D-=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =3D http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:03:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 247AC16A4CE; Mon, 30 Aug 2004 21:03:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C67A43D1D; Mon, 30 Aug 2004 21:03:10 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UL3906027512; Mon, 30 Aug 2004 21:03:09 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UL397X027511; Mon, 30 Aug 2004 21:03:09 GMT (envelope-from kensmith) Message-Id: <200408302103.i7UL397X027511@repoman.freebsd.org> From: Ken Smith Date: Mon, 30 Aug 2004 21:03:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c dispatch.c install.c menus.c sysinstall.8 sysinstall.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:03:10 -0000 kensmith 2004-08-30 21:03:09 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall config.c dispatch.c install.c menus.c sysinstall.8 sysinstall.h Log: Remove support for configuring the X server from sysinstall. General concensus seems to be that is best left for doing post-install. Discussed on: freebsd-current@ Tested with: make release Approved by: re@ MFC after: 3 days Revision Changes Path 1.226 +0 -139 src/usr.sbin/sysinstall/config.c 1.47 +0 -2 src/usr.sbin/sysinstall/dispatch.c 1.359 +0 -6 src/usr.sbin/sysinstall/install.c 1.400 +0 -4 src/usr.sbin/sysinstall/menus.c 1.65 +0 -10 src/usr.sbin/sysinstall/sysinstall.8 1.262 +0 -2 src/usr.sbin/sysinstall/sysinstall.h From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:13:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67F6716A4CF; Mon, 30 Aug 2004 21:13:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4495F43D4C; Mon, 30 Aug 2004 21:13:03 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ULD3D9027914; Mon, 30 Aug 2004 21:13:03 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ULD32O027913; Mon, 30 Aug 2004 21:13:03 GMT (envelope-from njl) Message-Id: <200408302113.i7ULD32O027913@repoman.freebsd.org> From: Nate Lawson Date: Mon, 30 Aug 2004 21:13:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:13:03 -0000 njl 2004-08-30 21:13:03 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_acpi.c Log: Fix _FDE probing by using the buffer contents instead of the buffer object itself. ACPI-CA returns an ACPI_OBJECT of type Buffer rather than the buffer contents itself. Revision Changes Path 1.4 +25 -8 src/sys/dev/fdc/fdc_acpi.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:30:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 214D616A4CE; Mon, 30 Aug 2004 21:30:07 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id F146F43D4C; Mon, 30 Aug 2004 21:30:06 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i7ULU3EN011386; Mon, 30 Aug 2004 14:30:03 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i7ULU3I6011385; Mon, 30 Aug 2004 14:30:03 -0700 Date: Mon, 30 Aug 2004 14:30:03 -0700 From: Brooks Davis To: Andrew Gallatin Message-ID: <20040830213003.GA24404@odin.ac.hmc.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <20040830155015.A40262@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <20040830155015.A40262@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:30:07 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 30, 2004 at 03:50:15PM -0400, Andrew Gallatin wrote: > Brooks Davis [brooks@FreeBSD.org] wrote: > > brooks 2004-08-30 06:29:26 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > . UPDATING=20 > > sys/sys param.h=20 > > sys/net if.c if.h=20 > > Log: > > Add a new variable, ifi_epoch, to struct if_data. It is set to the l= ast >=20 > Any chance this is what's breaking ifconfig for me on powerpc with > a 2-week old world and a brand new kernel? >=20 > With brand new kernel, I see this: >=20 > g4# ifconfig gem0 > : flags=3D108802 mtu 1500 >=20 > Using an ifconfig which matches the kernel: > g4# /usr/obj/usr/src/sbin/ifconfig/ifconfig gem0 > gem0: flags=3D108802 mtu 1500 > ether 00:03:93:56:99:42 > media: Ethernet autoselect >=20 >=20 > Is this also happening on sparc64? I don't think so. The main offenders will be programs that walk the interface list via libkvm and programs that use struct if_data. ifconfig does neither. If you haven't recompiled a module, a non-working ifconfig might result if by some miracle you didn't get a panic on attach. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBM5xaXY6L6fI4GtQRAsLZAKDEStlf54FnxC3jgu5UN6/NoXugXACgtl2e m3ens5diaPOouQZw4uVXLes= =fJGG -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:34:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D0A616A4CE; Mon, 30 Aug 2004 21:34:29 +0000 (GMT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A08243D2D; Mon, 30 Aug 2004 21:34:29 +0000 (GMT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.10/8.12.10) with ESMTP id i7ULYSJt002300 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 30 Aug 2004 17:34:28 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id i7ULYNXt040375; Mon, 30 Aug 2004 17:34:23 -0400 (EDT) (envelope-from gallatin) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16691.40287.478937.342838@grasshopper.cs.duke.edu> Date: Mon, 30 Aug 2004 17:34:23 -0400 (EDT) To: Brooks Davis In-Reply-To: <20040830213003.GA24404@odin.ac.hmc.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <20040830155015.A40262@grasshopper.cs.duke.edu> <20040830213003.GA24404@odin.ac.hmc.edu> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:34:29 -0000 Brooks Davis writes: > > I don't think so. The main offenders will be programs that walk the > interface list via libkvm and programs that use struct if_data. > ifconfig does neither. If you haven't recompiled a module, a > non-working ifconfig might result if by some miracle you didn't get a > panic on attach. ppc does not even build modules, so that's out. An older ifconfig pukes, while a new one works, so some sort of kernel/userland ABI must have changed in the last week. Has the data exported by sysctl changed recently? Debugging here is less than fun, as there is no gdb yet. Drew From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:35:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 828D816A4CE; Mon, 30 Aug 2004 21:35:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62F1943D3F; Mon, 30 Aug 2004 21:35:35 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ULZYIo028503; Mon, 30 Aug 2004 21:35:34 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ULZYQx028502; Mon, 30 Aug 2004 21:35:34 GMT (envelope-from njl) Message-Id: <200408302135.i7ULZYQx028502@repoman.freebsd.org> From: Nate Lawson Date: Mon, 30 Aug 2004 21:35:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:35:35 -0000 njl 2004-08-30 21:35:34 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_acpi.c Log: Fix _FDI drive type probing. The new fd child is not an ACPI device while the old one is. Hence we need to evaluate the old one for _FDI since it has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that a more complete one is to make fdc support the ACPI_HANDLE ivar for its children. This and the previous change are MT5 candidates. Revision Changes Path 1.5 +10 -3 src/sys/dev/fdc/fdc_acpi.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:39:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E18CB16A4CE; Mon, 30 Aug 2004 21:39:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B978543D31; Mon, 30 Aug 2004 21:39:22 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ULdMNv028619; Mon, 30 Aug 2004 21:39:22 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ULdMHj028618; Mon, 30 Aug 2004 21:39:22 GMT (envelope-from alc) Message-Id: <200408302139.i7ULdMHj028618@repoman.freebsd.org> From: Alan Cox Date: Mon, 30 Aug 2004 21:39:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/powerpc/powerpc pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:39:23 -0000 alc 2004-08-30 21:39:22 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc pmap.c Log: - Introduce a lock for synchronizing access to the pvo and pteg tables. - In pmap_enter(), only the acquisition and release of the page queues lock needs to check the bootstrap flag. Tested by: gallatin@ Revision Changes Path 1.89 +28 -8 src/sys/powerpc/powerpc/pmap.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:53:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F78516A4CE; Mon, 30 Aug 2004 21:53:24 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3337743D45; Mon, 30 Aug 2004 21:53:24 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i7ULrNdP015747; Mon, 30 Aug 2004 14:53:23 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i7ULrNrS015745; Mon, 30 Aug 2004 14:53:23 -0700 Date: Mon, 30 Aug 2004 14:53:23 -0700 From: Brooks Davis To: Andrew Gallatin Message-ID: <20040830215323.GB24404@odin.ac.hmc.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <20040830155015.A40262@grasshopper.cs.duke.edu> <20040830213003.GA24404@odin.ac.hmc.edu> <16691.40287.478937.342838@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bCsyhTFzCvuiizWE" Content-Disposition: inline In-Reply-To: <16691.40287.478937.342838@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: Brooks Davis cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:53:24 -0000 --bCsyhTFzCvuiizWE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: >=20 > Brooks Davis writes: > >=20 > > I don't think so. The main offenders will be programs that walk the > > interface list via libkvm and programs that use struct if_data. > > ifconfig does neither. If you haven't recompiled a module, a > > non-working ifconfig might result if by some miracle you didn't get a > > panic on attach. >=20 > ppc does not even build modules, so that's out. An older ifconfig > pukes, while a new one works, so some sort of kernel/userland ABI must > have changed in the last week. Has the data exported by sysctl changed > recently? I think I found it, at least partially. The issue is struct if_msghdr which is used by ifconfig. It contains a struct if_data. It has grown by a struct timeval. The weird thing is that this shouldn't be a problem becuase if_msghdr has a length and my addition was to the end so ifconfig should be able to skip over it, but it doesn't seem to actually work. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --bCsyhTFzCvuiizWE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBM6HSXY6L6fI4GtQRAoxAAJ9ZjfCtlenItNzql76w7J7Gg6PLngCfUtBZ eOdt+Tv5b35GMti6UcBqbRs= =QMpm -----END PGP SIGNATURE----- --bCsyhTFzCvuiizWE-- From owner-cvs-src@FreeBSD.ORG Mon Aug 30 21:58:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB9FB16A4CE; Mon, 30 Aug 2004 21:58:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D478B43D41; Mon, 30 Aug 2004 21:58:31 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ULwVsO029869; Mon, 30 Aug 2004 21:58:31 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ULwVts029868; Mon, 30 Aug 2004 21:58:31 GMT (envelope-from rwatson) Message-Id: <200408302158.i7ULwVts029868@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 21:58:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/nfsclient nfs_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 21:58:32 -0000 rwatson 2004-08-30 21:58:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/nfsclient nfs_socket.c Log: Merge nfs_socket.c:1.115 to RELENG_5: date: 2004/08/25 01:23:38; author: rwatson; state: Exp; lines: +2 -4 In nfs_timer(), pass curthread rather than &thread0 into the protocol send routine. In IPv6 UDP, the thread will be passed to suser(), which asserts that if a thread is used for a super user check, it be curthread. Many of these protocol entry points probably need to accept credentials instead of threads. MT5 candidate. Noticed/tested by: kuriyama Approved by: re (scottl) Revision Changes Path 1.114.2.1 +2 -4 src/sys/nfsclient/nfs_socket.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 22:02:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD51216A4CE; Mon, 30 Aug 2004 22:02:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4C0743D54; Mon, 30 Aug 2004 22:02:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UM2vFn030044; Mon, 30 Aug 2004 22:02:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UM2v0X030043; Mon, 30 Aug 2004 22:02:57 GMT (envelope-from rwatson) Message-Id: <200408302202.i7UM2v0X030043@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 22:02:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/nfsserver nfs_serv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 22:02:58 -0000 rwatson 2004-08-30 22:02:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/nfsserver nfs_serv.c Log: Merge nfs_serv.c:1.148 to RELENG_5: date: 2004/08/25 16:52:59; author: rwatson; state: Exp; lines: +1 -1 Convert a mtx_lock(&Giant) to a mtx_unlock(&Giant) in nfsrv_link() to prevent leakage of Giant. With INVARIANTS, this results in an assertion failure following execution of the RPC. Without INVARIANTS, it could result in problems if the NFS server is killed causing nfsd to return to user space holding Giant. Feet provided by: brueffer Approved by: re (scottl) Revision Changes Path 1.147.2.1 +1 -1 src/sys/nfsserver/nfs_serv.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 22:08:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 079E716A4CE; Mon, 30 Aug 2004 22:08:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCFBC43D1F; Mon, 30 Aug 2004 22:08:00 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UM80sc030220; Mon, 30 Aug 2004 22:08:00 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UM80co030219; Mon, 30 Aug 2004 22:08:00 GMT (envelope-from pjd) Message-Id: <200408302208.i7UM80co030219@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 30 Aug 2004 22:08:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/class/raid3 geom_raid3.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 22:08:01 -0000 pjd 2004-08-30 22:08:00 UTC FreeBSD src repository Modified files: sbin/geom/class/raid3 geom_raid3.c Log: When configuring RAID3 with verification option, force synchronization of parity component, because we can't return an EIO error for read of every sector which wasn't written first. Discussed with: phk Revision Changes Path 1.6 +7 -0 src/sbin/geom/class/raid3/geom_raid3.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 22:15:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62ED116A4CE; Mon, 30 Aug 2004 22:15:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451F743D41; Mon, 30 Aug 2004 22:15:08 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UMF8YR030429; Mon, 30 Aug 2004 22:15:08 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UMF8ir030428; Mon, 30 Aug 2004 22:15:08 GMT (envelope-from brooks) Message-Id: <200408302215.i7UMF8ir030428@repoman.freebsd.org> From: Brooks Davis Date: Mon, 30 Aug 2004 22:15:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/net if.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 22:15:08 -0000 brooks 2004-08-30 22:15:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/net if.c Log: MFC 1.200: When detaching an interface, don't leave an obsolete pointer to the soon to be deleted struct ifnet around. PR: kern/52260 Approved by: re (scottl) Revision Changes Path 1.199.2.1 +1 -0 src/sys/net/if.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 22:42:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C29C116A4CE; Mon, 30 Aug 2004 22:42:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3EF043D2F; Mon, 30 Aug 2004 22:42:10 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UMgAmt031319; Mon, 30 Aug 2004 22:42:10 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UMgASL031318; Mon, 30 Aug 2004 22:42:10 GMT (envelope-from peter) Message-Id: <200408302242.i7UMgASL031318@repoman.freebsd.org> From: Peter Wemm Date: Mon, 30 Aug 2004 22:42:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/sysctl sysctl.c src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 22:42:10 -0000 peter 2004-08-30 22:42:10 UTC FreeBSD src repository Modified files: sbin/sysctl sysctl.c sys/dev/acpica acpi_thermal.c Log: Add a suffix descriptor for the acpi thermal values as a hint for the userland sysctl tool to print a more readable value for temperatures. Revision Changes Path 1.62 +12 -2 src/sbin/sysctl/sysctl.c 1.49 +10 -10 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:03:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B803D16A4CE; Mon, 30 Aug 2004 23:03:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DD2043D1D; Mon, 30 Aug 2004 23:03:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UN3wMV032137; Mon, 30 Aug 2004 23:03:58 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UN3wnR032136; Mon, 30 Aug 2004 23:03:58 GMT (envelope-from peter) Message-Id: <200408302303.i7UN3wnR032136@repoman.freebsd.org> From: Peter Wemm Date: Mon, 30 Aug 2004 23:03:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config config.h config.y configvers.h lang.l mkheaders.c mkmakefile.c src/sys/coda coda_fbsd.c coda_psdev.c coda_vfsops.c src/sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:03:59 -0000 peter 2004-08-30 23:03:58 UTC FreeBSD src repository Modified files: usr.sbin/config config.h config.y configvers.h lang.l mkheaders.c mkmakefile.c sys/coda coda_fbsd.c coda_psdev.c coda_vfsops.c sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 NOTES files files.pc98 options options.pc98 sys/i386/conf NOTES sys/i4b/driver i4b_ing.c i4b_ipr.c i4b_isppp.c i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/layer4 i4b_i4bdrv.c i4b_l4.c sys/pc98/conf GENERIC sys/pc98/pc98 atapi.c wd.c Log: Kill count device support from config. I've changed the last few remaining consumers to have the count passed as an option. This is i4b, pc98/wdc, and coda. Bump configvers.h from 500013 to 600000. Remove heuristics that tried to parse "device ed5" as 5 units of the ed device. This broke things like the snd_emu10k1 device, which required quotes to make it parse right. The no-longer-needed quotes have been removed from NOTES, GENERIC etc. eg, I've removed the quotes from: device snd_maestro device "snd_maestro3" device snd_mss I believe everything will still compile and work after this. Revision Changes Path 1.37 +1 -1 src/sys/coda/coda_fbsd.c 1.31 +1 -1 src/sys/coda/coda_psdev.c 1.52 +1 -1 src/sys/coda/coda_vfsops.c 1.131 +1 -1 src/sys/conf/Makefile.alpha 1.12 +1 -1 src/sys/conf/Makefile.amd64 1.2 +1 -1 src/sys/conf/Makefile.arm 1.261 +1 -1 src/sys/conf/Makefile.i386 1.58 +1 -1 src/sys/conf/Makefile.ia64 1.162 +1 -1 src/sys/conf/Makefile.pc98 1.271 +1 -1 src/sys/conf/Makefile.powerpc 1.29 +1 -1 src/sys/conf/Makefile.sparc64 1.1270 +17 -16 src/sys/conf/NOTES 1.948 +7 -7 src/sys/conf/files 1.306 +2 -2 src/sys/conf/files.pc98 1.480 +9 -0 src/sys/conf/options 1.180 +4 -0 src/sys/conf/options.pc98 1.1172 +19 -13 src/sys/i386/conf/NOTES 1.23 +0 -2 src/sys/i4b/driver/i4b_ing.c 1.29 +0 -2 src/sys/i4b/driver/i4b_ipr.c 1.26 +1 -1 src/sys/i4b/driver/i4b_isppp.c 1.34 +1 -1 src/sys/i4b/driver/i4b_rbch.c 1.35 +1 -1 src/sys/i4b/driver/i4b_tel.c 1.31 +1 -1 src/sys/i4b/driver/i4b_trace.c 1.42 +1 -5 src/sys/i4b/layer4/i4b_i4bdrv.c 1.18 +1 -6 src/sys/i4b/layer4/i4b_l4.c 1.257 +3 -2 src/sys/pc98/conf/GENERIC 1.11 +4 -9 src/sys/pc98/pc98/atapi.c 1.139 +1 -5 src/sys/pc98/pc98/wd.c 1.55 +3 -5 src/usr.sbin/config/config.h 1.64 +2 -12 src/usr.sbin/config/config.y 1.33 +1 -1 src/usr.sbin/config/configvers.h 1.38 +2 -17 src/usr.sbin/config/lang.l 1.30 +0 -156 src/usr.sbin/config/mkheaders.c 1.81 +4 -14 src/usr.sbin/config/mkmakefile.c From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:09:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B8916A4D0; Mon, 30 Aug 2004 23:09:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4240343D54; Mon, 30 Aug 2004 23:09:05 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UN95fc032477; Mon, 30 Aug 2004 23:09:05 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UN95wT032476; Mon, 30 Aug 2004 23:09:05 GMT (envelope-from brueffer) Message-Id: <200408302309.i7UN95wT032476@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:09:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 ixgb.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:09:05 -0000 brueffer 2004-08-30 23:09:05 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 ixgb.4 Log: MT5: rev. 1.3 + 1.4 Add a HARDWARE section and bump the document date Approved by: re (blanket) Revision Changes Path 1.2.2.1 +12 -1 src/share/man/man4/ixgb.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:12:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8479916A4D0; Mon, 30 Aug 2004 23:12:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36EE343D45; Mon, 30 Aug 2004 23:12:10 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNCA7V032635; Mon, 30 Aug 2004 23:12:10 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNCAHf032634; Mon, 30 Aug 2004 23:12:10 GMT (envelope-from brueffer) Message-Id: <200408302312.i7UNCAHf032634@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:12:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 sf.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:12:10 -0000 brueffer 2004-08-30 23:12:10 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 sf.4 Log: MT5: rev. 1.18 + 1.19 - move list of supported adapters into a HARDWARE section - correctly capitalize Fast Ethernet - correct two typos - correct the link to the AIC-6915 programmer's manual - bump document date Approved by: re (blanket) Revision Changes Path 1.17.6.1 +24 -22 src/share/man/man4/sf.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:15:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A588116A4CE; Mon, 30 Aug 2004 23:15:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86F7A43D46; Mon, 30 Aug 2004 23:15:24 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNFOFC032809; Mon, 30 Aug 2004 23:15:24 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNFOYB032808; Mon, 30 Aug 2004 23:15:24 GMT (envelope-from brueffer) Message-Id: <200408302315.i7UNFOYB032808@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:15:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 sk.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:15:24 -0000 brueffer 2004-08-30 23:15:24 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 sk.4 Log: MT5: rev. 1.23 - move the list of supported adapters to a HARDWARE section - correct entry for the Belkin card - properly capitalize Gigabit Ethernet - wordsmithing on a sentence - bump document date Approved by: re (blanket) Revision Changes Path 1.21.2.2 +34 -30 src/share/man/man4/sk.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:18:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73EAD16A4CE; Mon, 30 Aug 2004 23:18:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 510F543D5C; Mon, 30 Aug 2004 23:18:53 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNIr6W032912; Mon, 30 Aug 2004 23:18:53 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNIrLq032911; Mon, 30 Aug 2004 23:18:53 GMT (envelope-from brueffer) Message-Id: <200408302318.i7UNIrLq032911@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:18:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 lge.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:18:53 -0000 brueffer 2004-08-30 23:18:53 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 lge.4 Log: MT5: rev. 1.8 + 1.9 1.8: - move device listing and hardware notes into a HARDWARE section - properly capitalize Gigabit Ethernet - bump document date 1.9: Move a paragraph from the HARDWARE section back into the DESCRIPTION section. Also adapt it to make it fit in better. Approved by: re (blanket) Revision Changes Path 1.7.2.1 +17 -15 src/share/man/man4/lge.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:20:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 195AD16A4CE; Mon, 30 Aug 2004 23:20:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDCC443D45; Mon, 30 Aug 2004 23:20:28 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNKSJt033009; Mon, 30 Aug 2004 23:20:28 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNKS8I033008; Mon, 30 Aug 2004 23:20:28 GMT (envelope-from brueffer) Message-Id: <200408302320.i7UNKS8I033008@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:20:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4/man4.i386 vx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:20:29 -0000 brueffer 2004-08-30 23:20:28 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4/man4.i386 vx.4 Log: MT5: rev. 1.19 - move the list of supported devices into a HARDWARE section - bump document date Approved by: re (blanket) Revision Changes Path 1.18.2.1 +16 -13 src/share/man/man4/man4.i386/vx.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:22:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D13E16A4CE; Mon, 30 Aug 2004 23:22:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA3B43D60; Mon, 30 Aug 2004 23:22:12 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNMCUl033087; Mon, 30 Aug 2004 23:22:12 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNMCrN033086; Mon, 30 Aug 2004 23:22:12 GMT (envelope-from brueffer) Message-Id: <200408302322.i7UNMCrN033086@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:22:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 axe.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:22:12 -0000 brueffer 2004-08-30 23:22:12 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 axe.4 Log: MT5: rev. 1.7 - put the list of supported adapters into a HARDWARE section - make the Buffalo entry look better - properly capitalize Ethernet and Fast Ethernet - bump document date Approved by: re (blanket) Revision Changes Path 1.6.2.1 +24 -19 src/share/man/man4/axe.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:23:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 773C716A4CE; Mon, 30 Aug 2004 23:23:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5817943D41; Mon, 30 Aug 2004 23:23:15 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNNFxW033129; Mon, 30 Aug 2004 23:23:15 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNNFU8033128; Mon, 30 Aug 2004 23:23:15 GMT (envelope-from brueffer) Message-Id: <200408302323.i7UNNFU8033128@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:23:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 rue.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:23:15 -0000 brueffer 2004-08-30 23:23:15 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 rue.4 Log: MT5: rev. 1.8 - move list of supported adapters into a HARDWARE section - fix capitalization of a "to" - bump document date Approved by: re (blanket) Revision Changes Path 1.7.2.1 +19 -14 src/share/man/man4/rue.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:24:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E9FE16A4CF; Mon, 30 Aug 2004 23:24:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E57D143D1F; Mon, 30 Aug 2004 23:24:14 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNOEYQ033172; Mon, 30 Aug 2004 23:24:14 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNOEOO033171; Mon, 30 Aug 2004 23:24:14 GMT (envelope-from brueffer) Message-Id: <200408302324.i7UNOEOO033171@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:24:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 cue.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:24:15 -0000 brueffer 2004-08-30 23:24:14 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 cue.4 Log: MT5: rev. 1.19 - move the list of supported adapters into a HARDWARE section - properly capitalize Ethernet - replace a misleading 'adapter' with 'chipset' - bump document date Approved by: re (blanket) Revision Changes Path 1.18.2.1 +20 -6 src/share/man/man4/cue.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:25:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9457816A4CE; Mon, 30 Aug 2004 23:25:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5625043D41; Mon, 30 Aug 2004 23:25:41 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNPfel033272; Mon, 30 Aug 2004 23:25:41 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNPf4l033271; Mon, 30 Aug 2004 23:25:41 GMT (envelope-from brueffer) Message-Id: <200408302325.i7UNPf4l033271@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:25:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 kue.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:25:41 -0000 brueffer 2004-08-30 23:25:41 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 kue.4 Log: MT5: rev. 1.20 - move the list of supported adapters into a HARDWARE section - sort the list of adapters - add the 3Com 3c460 HomeConnect Ethernet USB Adapter [1] - properly capitalize Ethernet - replace a misleading 'adapter' with 'chipset' - bump document date Obtained from: NetBSD [1] Approved by: re (blanket) Revision Changes Path 1.19.2.1 +27 -20 src/share/man/man4/kue.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:27:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5982B16A4CE; Mon, 30 Aug 2004 23:27:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD8B43D39; Mon, 30 Aug 2004 23:27:04 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNR4dm033325; Mon, 30 Aug 2004 23:27:04 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNR47v033324; Mon, 30 Aug 2004 23:27:04 GMT (envelope-from brueffer) Message-Id: <200408302327.i7UNR47v033324@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:27:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 tx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:27:04 -0000 brueffer 2004-08-30 23:27:04 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 tx.4 Log: MT5: rev. 1.27 - use .Nm - fix some grammar and spelling mistakes Approved by: re (blanket) Revision Changes Path 1.26.2.1 +5 -3 src/share/man/man4/tx.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:33:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2AFF16A4CE; Mon, 30 Aug 2004 23:33:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C396243D54; Mon, 30 Aug 2004 23:33:33 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNXXd8033539; Mon, 30 Aug 2004 23:33:33 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNXXHe033538; Mon, 30 Aug 2004 23:33:33 GMT (envelope-from peter) Message-Id: <200408302333.i7UNXXHe033538@repoman.freebsd.org> From: Peter Wemm Date: Mon, 30 Aug 2004 23:33:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/conf files.amd64 options.amd64 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 30 Aug 2004 23:33:34 -0000 peter 2004-08-30 23:33:33 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c sys/conf files.amd64 options.amd64 Log: Add the mp_watchdog hooks, although it locks up my SMP test box. It might be useable to somebody. Revision Changes Path 1.245 +9 -0 src/sys/amd64/amd64/mp_machdep.c 1.48 +1 -0 src/sys/conf/files.amd64 1.17 +1 -0 src/sys/conf/options.amd64 From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:39:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1764516A4CE; Mon, 30 Aug 2004 23:39:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC3CC43D41; Mon, 30 Aug 2004 23:39:17 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNdHxS033777; Mon, 30 Aug 2004 23:39:17 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNdH8D033776; Mon, 30 Aug 2004 23:39:17 GMT (envelope-from brueffer) Message-Id: <200408302339.i7UNdH8D033776@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:39:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:39:18 -0000 brueffer 2004-08-30 23:39:17 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release/doc/share/misc dev.archlist.txt Log: MT5: rev. 1.7 - 1.9, 1.11 - 1.13 Add ixgb, sf, sk, lge, vx, axe, rue, cue, kue Remove isp and mpt (work on all supported platforms) Approved by: re (blanket) Revision Changes Path 1.5.2.2 +9 -2 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:49:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BBD116A4CE; Mon, 30 Aug 2004 23:49:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CD9143D2D; Mon, 30 Aug 2004 23:49:53 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNnrX6034103; Mon, 30 Aug 2004 23:49:53 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UNnrXb034102; Mon, 30 Aug 2004 23:49:53 GMT (envelope-from brueffer) Message-Id: <200408302349.i7UNnrXb034102@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 30 Aug 2004 23:49:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:49:53 -0000 brueffer 2004-08-30 23:49:53 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MT5: rev. 1.230 - 1.235 Autogenerate device listings for the following drivers: ixgb, sf, sk, lge, vx, axe, rue, cue, kue Approved by: re (blanket) Revision Changes Path 1.227.2.2 +10 -17 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 31 00:01:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEBDF16A4CE; Tue, 31 Aug 2004 00:01:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD61643D2D; Tue, 31 Aug 2004 00:01:17 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V01HQN034493; Tue, 31 Aug 2004 00:01:17 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V01HKF034492; Tue, 31 Aug 2004 00:01:17 GMT (envelope-from brueffer) Message-Id: <200408310001.i7V01HKF034492@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 31 Aug 2004 00:01:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 sf.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 00:01:18 -0000 brueffer 2004-08-31 00:01:17 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man4 sf.4 Log: MT4: part of rev. 1.18, 1.19 - correct two typos - correct the link to the AIC-6915 programmer's manual - bump document date Revision Changes Path 1.9.2.7 +4 -4 src/share/man/man4/sf.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 00:04:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6851616A4CE; Tue, 31 Aug 2004 00:04:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4803043D46; Tue, 31 Aug 2004 00:04:08 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V048ZL034552; Tue, 31 Aug 2004 00:04:08 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V048Of034551; Tue, 31 Aug 2004 00:04:08 GMT (envelope-from brueffer) Message-Id: <200408310004.i7V048Of034551@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 31 Aug 2004 00:04:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4/man4.i386 tx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 00:04:08 -0000 brueffer 2004-08-31 00:04:08 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man4/man4.i386 tx.4 Log: MT4: rev. 1.27 - use .Nm - fix some grammar and spelling mistakes Revision Changes Path 1.11.2.11 +5 -3 src/share/man/man4/man4.i386/tx.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 00:29:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB57516A4CE; Tue, 31 Aug 2004 00:29:22 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAADD43D5C; Tue, 31 Aug 2004 00:29:22 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id B42078803; Mon, 30 Aug 2004 17:29:22 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Mon, 30 Aug 2004 17:29:22 -0700 User-Agent: KMail/1.6.2 References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <16691.40287.478937.342838@grasshopper.cs.duke.edu> <20040830215323.GB24404@odin.ac.hmc.edu> In-Reply-To: <20040830215323.GB24404@odin.ac.hmc.edu> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408301729.22348.peter@wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 00:29:23 -0000 On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: > > Brooks Davis writes: > > > I don't think so. The main offenders will be programs that walk > > > the interface list via libkvm and programs that use struct > > > if_data. ifconfig does neither. If you haven't recompiled a > > > module, a non-working ifconfig might result if by some miracle > > > you didn't get a panic on attach. > > > > ppc does not even build modules, so that's out. An older ifconfig > > pukes, while a new one works, so some sort of kernel/userland ABI > > must have changed in the last week. Has the data exported by > > sysctl changed recently? > > I think I found it, at least partially. The issue is struct > if_msghdr which is used by ifconfig. It contains a struct if_data. > It has grown by a struct timeval. The weird thing is that this > shouldn't be a problem becuase if_msghdr has a length and my addition > was to the end so ifconfig should be able to skip over it, but it > doesn't seem to actually work. It is broken on amd64 too, FWIW. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 00:43:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03C2616A4CE; Tue, 31 Aug 2004 00:43:11 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFB7D43D5D; Tue, 31 Aug 2004 00:43:10 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i7V0hBQc008420; Mon, 30 Aug 2004 17:43:11 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i7V0hBEr008419; Mon, 30 Aug 2004 17:43:11 -0700 Date: Mon, 30 Aug 2004 17:43:11 -0700 From: Brooks Davis To: Peter Wemm Message-ID: <20040831004311.GA29938@odin.ac.hmc.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <16691.40287.478937.342838@grasshopper.cs.duke.edu> <20040830215323.GB24404@odin.ac.hmc.edu> <200408301729.22348.peter@wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline In-Reply-To: <200408301729.22348.peter@wemm.org> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: Brooks Davis cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 00:43:11 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 30, 2004 at 05:29:22PM -0700, Peter Wemm wrote: > On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: > > > Brooks Davis writes: > > > > I don't think so. The main offenders will be programs that walk > > > > the interface list via libkvm and programs that use struct > > > > if_data. ifconfig does neither. If you haven't recompiled a > > > > module, a non-working ifconfig might result if by some miracle > > > > you didn't get a panic on attach. > > > > > > ppc does not even build modules, so that's out. An older ifconfig > > > pukes, while a new one works, so some sort of kernel/userland ABI > > > must have changed in the last week. Has the data exported by > > > sysctl changed recently? > > > > I think I found it, at least partially. The issue is struct > > if_msghdr which is used by ifconfig. It contains a struct if_data.=20 > > It has grown by a struct timeval. The weird thing is that this > > shouldn't be a problem becuase if_msghdr has a length and my addition > > was to the end so ifconfig should be able to skip over it, but it > > doesn't seem to actually work. >=20 > It is broken on amd64 too, FWIW. If if_msghdr is the problem, it will be broken on all platforms and a rebuild of everything thing should fix it. I don't know why ifconfig is having a problem with the extension of if_msghdr. It shouldn't care since the format is unchanged other then the addition of a structure at the very end and the ifm_msglen member appears to be used correct to advance through the array passed by the sysctl. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --gKMricLos+KVdGMg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBM8meXY6L6fI4GtQRAgUPAJoC8KAVL0cvcvUM4v+Ue9AWUyzgxACgwra6 RkGWJ0HB1ONoBhvL0chhzUM= =x1ex -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- From owner-cvs-src@FreeBSD.ORG Tue Aug 31 04:37:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49D3E16A4CE; Tue, 31 Aug 2004 04:37:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29FC743D5F; Tue, 31 Aug 2004 04:37:32 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V4bVX5041580; Tue, 31 Aug 2004 04:37:31 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V4bVZi041579; Tue, 31 Aug 2004 04:37:31 GMT (envelope-from trhodes) Message-Id: <200408310437.i7V4bVZi041579@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 31 Aug 2004 04:37:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 hfa.4 rc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 04:37:32 -0000 trhodes 2004-08-31 04:37:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man4 hfa.4 rc.4 Log: Catch hfa.4 and rc.4 manual pages up to the ones in CURRENT. Approved by: re (kensmith) Revision Changes Path 1.2.2.1 +15 -11 src/share/man/man4/hfa.4 1.2.2.1 +21 -21 src/share/man/man4/rc.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 04:48:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9313E16A4CE; Tue, 31 Aug 2004 04:48:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B6543D48; Tue, 31 Aug 2004 04:48:04 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V4m4ZW041862; Tue, 31 Aug 2004 04:48:04 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V4m4jI041861; Tue, 31 Aug 2004 04:48:04 GMT (envelope-from trhodes) Message-Id: <200408310448.i7V4m4jI041861@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 31 Aug 2004 04:48:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 04:48:04 -0000 trhodes 2004-08-31 04:48:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/security/mac_bsdextended mac_bsdextended.c Log: MT5: 1.19 The ability to match first rule in place of all rules. Add the mac_bsdextended_firstmatch_enabled sysctl to permit the enable/disable of this feature. Default is disabled. Approved by: re (kensmith) Revision Changes Path 1.18.2.1 +21 -2 src/sys/security/mac_bsdextended/mac_bsdextended.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 04:50:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96ED016A4CE; Tue, 31 Aug 2004 04:50:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784A943D46; Tue, 31 Aug 2004 04:50:35 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V4oZdb041972; Tue, 31 Aug 2004 04:50:35 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V4oZVn041971; Tue, 31 Aug 2004 04:50:35 GMT (envelope-from trhodes) Message-Id: <200408310450.i7V4oZVn041971@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 31 Aug 2004 04:50:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/security/mac_bsdextended mac_bsdextended.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 04:50:35 -0000 trhodes 2004-08-31 04:50:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/security/mac_bsdextended mac_bsdextended.c Log: MT5: 1.20 Allow mac_bsdextended(4) to log policy violations via syslog(3)'s AUTHPRIV facility. Default is disabled but this can be altered with the mac_bsdextended_logging sysctl. Approved by: re (kensmith) Revision Changes Path 1.18.2.2 +19 -5 src/sys/security/mac_bsdextended/mac_bsdextended.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 04:51:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79DD16A4CE; Tue, 31 Aug 2004 04:51:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9913D43D39; Tue, 31 Aug 2004 04:51:35 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V4pZZj042060; Tue, 31 Aug 2004 04:51:35 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V4pZLL042059; Tue, 31 Aug 2004 04:51:35 GMT (envelope-from trhodes) Message-Id: <200408310451.i7V4pZLL042059@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 31 Aug 2004 04:51:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 mac_bsdextended.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 04:51:35 -0000 trhodes 2004-08-31 04:51:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man4 mac_bsdextended.4 Log: Catch up with CURRENT which documents the new features in mac_bsdextended(4). Approved by: re (kensmith) Revision Changes Path 1.11.2.1 +41 -1 src/share/man/man4/mac_bsdextended.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:04:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2ADF16A4CE; Tue, 31 Aug 2004 05:04:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9118543D54; Tue, 31 Aug 2004 05:04:17 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V54HtR044633; Tue, 31 Aug 2004 05:04:17 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V54HWQ044632; Tue, 31 Aug 2004 05:04:17 GMT (envelope-from kientzle) Message-Id: <200408310504.i7V54HWQ044632@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 31 Aug 2004 05:04:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.bin/tar bsdtar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 05:04:18 -0000 kientzle 2004-08-31 05:04:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/tar bsdtar.c Log: MFC: 1.53: Enable already-implemented -I option 1.54: Permit -P as a no-op when used with -t Approved by: re@ (Ken Smith) Revision Changes Path 1.52.2.1 +1 -3 src/usr.bin/tar/bsdtar.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:08:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9DB516A4CE; Tue, 31 Aug 2004 05:08:58 +0000 (GMT) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB5743D39; Tue, 31 Aug 2004 05:08:56 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.12.9p2/8.12.9) with ESMTP id i7V58s6E076625; Tue, 31 Aug 2004 09:08:54 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.12.9p2/8.12.9/Submit) id i7V58rKH076624; Tue, 31 Aug 2004 09:08:53 +0400 (MSD) (envelope-from yar) Date: Tue, 31 Aug 2004 09:08:53 +0400 From: Yar Tikhiy To: John Baldwin Message-ID: <20040831050853.GA75766@comp.chem.msu.su> References: <200408280839.i7S8dZpI097103@repoman.freebsd.org> <200408301141.00176.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408301141.00176.jhb@FreeBSD.org> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/mbr Makefile mbr.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 05:08:59 -0000 On Mon, Aug 30, 2004 at 11:41:00AM -0400, John Baldwin wrote: > On Saturday 28 August 2004 04:39 am, Yar Tikhiy wrote: > > yar 2004-08-28 08:39:35 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/boot/i386/mbr Makefile mbr.s > > Log: > > Don't be too smart, just try packet mode of INT13 first. > > This way of operation is more robust than the "AI" used > > before. > > > > Add flags to mbr accessible from make.conf as BOOT_MBR_FLAGS. > > Only one flag is defined now, "allow using packet mode", which > > is 0x80 in accord with the rest of i386 boot code. The "packet" > > flag is on by default. > > > > PR: i386/70241 > > Submitted by: Valentin Nechayev netch.kiev.ua> (inital > > version) Discussed with: jhb (by Valentin Nechayev) > > Tested on: bochs (with EDD turned on or off by patching the BIOS), > > PCs > > > > Revision Changes Path > > 1.14 +4 -0 src/sys/boot/i386/mbr/Makefile > > 1.7 +6 -6 src/sys/boot/i386/mbr/mbr.s > > Hmm, there are no e-mails from me in the PR trail and I don't recall ever be > in favor of these changes (though I don't care enough to ask for them to be > backed out.. Only really old machines with pre-1995 BIOS should be broken in > theory.) It would be nice if you wouldn't claim that I supported something > that I didn't actually support though. John, I try to believe people as much as possible since that saves my time, and I believe Valentin Nechayev particularly because I know him quite well. Here are his words straight from the PR: %%% >Fix: Revert logic of selection between traditional and EDD reading mode to one which prefers EDD if available (as was in the same file in revisions 1.11 and 1.12). This is supported by John Baldwin (private conversation after thread in hackers@): ==={{{ The problem is that there are BIOS's out there that claim to support EDD but still don't work correctly. I don't remember all the details at this point, but I think it had to do with sysinstall not always being in sync with the BIOS about how sectors were in a cylinder. I guess though we could just turn EDD on by default in 5.x or perhaps 6.0. 5.x doesn't really run well on a 386 or even a 486, and that is the class of machine that has problems with EDD. ===}}} %%% I know it could be hard on memory to return to issues one used to work at in the past, so I decided not to bother you to confirm if that quote is actually yours. Please excuse me if it was a poor idea of mine. -- Yar From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:10:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0FD716A4CE; Tue, 31 Aug 2004 05:10:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D216943D55; Tue, 31 Aug 2004 05:10:36 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V5AauG044861; Tue, 31 Aug 2004 05:10:36 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V5Aamh044860; Tue, 31 Aug 2004 05:10:36 GMT (envelope-from kientzle) Message-Id: <200408310510.i7V5Aamh044860@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 31 Aug 2004 05:10:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libarchive archive_read_extract.c archive_string_sprintf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 05:10:37 -0000 kientzle 2004-08-31 05:10:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libarchive archive_read_extract.c archive_string_sprintf.c Log: MFC: archive_string_sprintf.c 1.5: don't reuse va_list variable archive_read_extract.c 1.34: don't change permissions on existing dirs Approved by: re@ (Ken Smith) Revision Changes Path 1.33.2.1 +1 -1 src/lib/libarchive/archive_read_extract.c 1.4.2.1 +4 -1 src/lib/libarchive/archive_string_sprintf.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:18:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7190816A4CE; Tue, 31 Aug 2004 05:18:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5332443D41; Tue, 31 Aug 2004 05:18:33 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V5IXFj045090; Tue, 31 Aug 2004 05:18:33 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V5IXBA045089; Tue, 31 Aug 2004 05:18:33 GMT (envelope-from des) Message-Id: <200408310518.i7V5IXBA045089@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 31 Aug 2004 05:18:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.bin/fetch fetch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 05:18:33 -0000 des 2004-08-31 05:18:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/fetch fetch.c Log: MFC: (1.73) the check for r_flag was accidentally removed in 1.72. Approved by: re (kensmith) Revision Changes Path 1.72.2.1 +1 -1 src/usr.bin/fetch/fetch.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:19:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B7116A4CE; Tue, 31 Aug 2004 05:19:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD79E43D5D; Tue, 31 Aug 2004 05:19:57 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V5Jvb4045141; Tue, 31 Aug 2004 05:19:57 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V5JvfS045140; Tue, 31 Aug 2004 05:19:57 GMT (envelope-from trhodes) Message-Id: <200408310519.i7V5JvfS045140@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 31 Aug 2004 05:19:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mount_msdosfs mount_msdosfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 05:19:58 -0000 trhodes 2004-08-31 05:19:57 UTC FreeBSD src repository Modified files: sbin/mount_msdosfs mount_msdosfs.c Log: Correct a style bug: remove a gratuitous space between ( and ". Ok'ed by: fjoe Revision Changes Path 1.34 +1 -1 src/sbin/mount_msdosfs/mount_msdosfs.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:20:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E992516A4CF; Tue, 31 Aug 2004 05:20:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C82B943D4C; Tue, 31 Aug 2004 05:20:43 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V5Kh0w045227; Tue, 31 Aug 2004 05:20:43 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V5KhTu045226; Tue, 31 Aug 2004 05:20:43 GMT (envelope-from des) Message-Id: <200408310520.i7V5KhTu045226@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 31 Aug 2004 05:20:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libc/stdio vfprintf.c vfwprintf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 05:20:44 -0000 des 2004-08-31 05:20:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/stdio vfprintf.c vfwprintf.c Log: MFC: don't forget to va_end() after va_copy(). Approved by: re (kensmith) Revision Changes Path 1.67.2.1 +1 -0 src/lib/libc/stdio/vfprintf.c 1.22.2.1 +1 -0 src/lib/libc/stdio/vfwprintf.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:26:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9802016A4D1; Tue, 31 Aug 2004 05:26:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CF7543D49; Tue, 31 Aug 2004 05:26:37 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V5QbJW045509; Tue, 31 Aug 2004 05:26:37 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V5Qb6v045508; Tue, 31 Aug 2004 05:26:37 GMT (envelope-from njl) Message-Id: <200408310526.i7V5Qb6v045508@repoman.freebsd.org> From: Nate Lawson Date: Tue, 31 Aug 2004 05:26:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/amd64/amd64 nexus.c src/sys/i386/i386 nexus.c src/sys/ia64/ia64 nexus.c src/sys/dev/acpica acpi.c acpi_resource.c acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 05:26:37 -0000 njl 2004-08-31 05:26:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/amd64/amd64 nexus.c sys/i386/i386 nexus.c sys/ia64/ia64 nexus.c sys/dev/acpica acpi.c acpi_resource.c acpivar.h Log: MFC: Rework sysresource allocation to merge all resources presented by sysresource objects before allocating. This includes adding a bus_get_resource_list() method to all archs as well. Includes: Revision Changes Path 1.189 +82 -7 src/sys/dev/acpica/acpi.c 1.31 +59 -115 src/sys/dev/acpica/acpi_resource.c 1.81 +0 -2 src/sys/dev/acpica/acpivar.h Approved by: re (scottl) Revision Changes Path 1.62.2.1 +10 -0 src/sys/amd64/amd64/nexus.c 1.186.2.3 +82 -7 src/sys/dev/acpica/acpi.c 1.28.2.1 +55 -66 src/sys/dev/acpica/acpi_resource.c 1.79.2.2 +0 -2 src/sys/dev/acpica/acpivar.h 1.58.2.1 +10 -0 src/sys/i386/i386/nexus.c 1.7.2.1 +10 -0 src/sys/ia64/ia64/nexus.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 05:59:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C3A716A4CE; Tue, 31 Aug 2004 05:59:11 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04A9943D3F; Tue, 31 Aug 2004 05:59:11 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 818C450B7A; Tue, 31 Aug 2004 14:59:09 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id EE81A50B6A; Tue, 31 Aug 2004 14:59:07 +0900 (JST) Date: Tue, 31 Aug 2004 14:59:07 +0900 Message-ID: <7md6173l1w.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Nate Lawson In-Reply-To: <200408302135.i7ULZYQx028502@repoman.freebsd.org> References: <200408302135.i7ULZYQx028502@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 05:59:12 -0000 At Mon, 30 Aug 2004 21:35:34 +0000 (UTC), Nate Lawson wrote: > Modified files: > sys/dev/fdc fdc_acpi.c > Log: > Fix _FDI drive type probing. The new fd child is not an ACPI device while > the old one is. Hence we need to evaluate the old one for _FDI since it > has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that a > more complete one is to make fdc support the ACPI_HANDLE ivar for its > children. > > This and the previous change are MT5 candidates. These changes fixed my problem on VMware. Thanks! -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Tue Aug 31 06:12:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59F0816A4CE; Tue, 31 Aug 2004 06:12:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FC1843D39; Tue, 31 Aug 2004 06:12:14 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V6CEcJ047024; Tue, 31 Aug 2004 06:12:14 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V6CEQw047023; Tue, 31 Aug 2004 06:12:14 GMT (envelope-from julian) Message-Id: <200408310612.i7V6CEQw047023@repoman.freebsd.org> From: Julian Elischer Date: Tue, 31 Aug 2004 06:12:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha trap.c src/sys/amd64/amd64 trap.c src/sys/amd64/ia32 ia32_syscall.c src/sys/i386/i386 trap.c src/sys/ia64/ia64 trap.c src/sys/kern kern_fork.c kern_prot.c... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 06:12:14 -0000 julian 2004-08-31 06:12:14 UTC FreeBSD src repository Modified files: sys/alpha/alpha trap.c sys/amd64/amd64 trap.c sys/amd64/ia32 ia32_syscall.c sys/i386/i386 trap.c sys/ia64/ia64 trap.c sys/kern kern_fork.c kern_prot.c subr_trap.c sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys ucred.h Log: Remove sched_free_thread() which was only used in diagnostics. It has outlived its usefulness and has started causing panics for people who turn on DIAGNOSTIC, in what is otherwise good code. MFC after: 2 days Revision Changes Path 1.119 +0 -6 src/sys/alpha/alpha/trap.c 1.280 +0 -6 src/sys/amd64/amd64/trap.c 1.7 +0 -3 src/sys/amd64/ia32/ia32_syscall.c 1.268 +0 -6 src/sys/i386/i386/trap.c 1.104 +0 -10 src/sys/ia64/ia64/trap.c 1.235 +0 -3 src/sys/kern/kern_fork.c 1.188 +0 -13 src/sys/kern/kern_prot.c 1.271 +0 -3 src/sys/kern/subr_trap.c 1.48 +0 -3 src/sys/powerpc/powerpc/trap.c 1.71 +0 -6 src/sys/sparc64/sparc64/trap.c 1.50 +0 -3 src/sys/sys/ucred.h From owner-cvs-src@FreeBSD.ORG Tue Aug 31 06:14:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF62F16A4CE; Tue, 31 Aug 2004 06:14:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B127C43D45; Tue, 31 Aug 2004 06:14:03 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V6E3Sp047074; Tue, 31 Aug 2004 06:14:03 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V6E3ub047073; Tue, 31 Aug 2004 06:14:03 GMT (envelope-from phk) Message-Id: <200408310614.i7V6E3ub047073@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 31 Aug 2004 06:14:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/geom geom.h geom_io.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 06:14:04 -0000 phk 2004-08-31 06:14:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/geom geom.h geom_io.c Log: MFC: Introduce g_alloc_bio() as a waiting variant of g_new_bio(). Use in places where we can sleep and where we previously failed to check for a NULL pointer. Approved by: re(ken) Revision Changes Path 1.84.2.1 +1 -0 src/sys/geom/geom.h 1.57.2.1 +12 -3 src/sys/geom/geom_io.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 07:03:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B273016A4CE; Tue, 31 Aug 2004 07:03:12 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E89CF43D41; Tue, 31 Aug 2004 07:03:11 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7V737xb085445 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 31 Aug 2004 10:03:08 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i7V73Dq5031058; Tue, 31 Aug 2004 10:03:13 +0300 (EEST) (envelope-from ru) Date: Tue, 31 Aug 2004 10:03:13 +0300 From: Ruslan Ermilov To: Nate Lawson Message-ID: <20040831070313.GC30959@ip.net.ua> References: <200408302135.i7ULZYQx028502@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WplhKdTI2c8ulnbP" Content-Disposition: inline In-Reply-To: <200408302135.i7ULZYQx028502@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 07:03:12 -0000 --WplhKdTI2c8ulnbP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 30, 2004 at 09:35:34PM +0000, Nate Lawson wrote: > njl 2004-08-30 21:35:34 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/fdc fdc_acpi.c=20 > Log: > Fix _FDI drive type probing. The new fd child is not an ACPI device wh= ile > the old one is. Hence we need to evaluate the old one for _FDI since it > has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that= a > more complete one is to make fdc support the ACPI_HANDLE ivar for its > children. > =20 > This and the previous change are MT5 candidates. > =20 > Revision Changes Path > 1.5 +10 -3 src/sys/dev/fdc/fdc_acpi.c >=20 Should I retry on my ThinkPad 600X with these two changes? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --WplhKdTI2c8ulnbP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBNCKxqRfpzJluFF4RAvy7AKCOcQwz6F9HiMA62hPq0Rc+1In9UgCfSuPO esjutYSxzXSQ+BYvx+F6Rzw= =F34g -----END PGP SIGNATURE----- --WplhKdTI2c8ulnbP-- From owner-cvs-src@FreeBSD.ORG Tue Aug 31 07:04:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B6416A4CE; Tue, 31 Aug 2004 07:04:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8445843D1F; Tue, 31 Aug 2004 07:04:41 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V74fLw048455; Tue, 31 Aug 2004 07:04:41 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V74fmi048454; Tue, 31 Aug 2004 07:04:41 GMT (envelope-from roam) Message-Id: <200408310704.i7V74fmi048454@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 31 Aug 2004 07:04:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libc/db/man mpool.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 07:04:41 -0000 roam 2004-08-31 07:04:41 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_5) lib/libc/db/man mpool.3 Log: MFC mpool.3 rev. 1.13: remove the misleading documentatin of the unused 'key' argument to mpool_open(3). Approved by: re (kensmith) MFC after: 3 days Revision Changes Path 1.12.6.1 +1 -17 src/lib/libc/db/man/mpool.3 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 07:34:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E934616A4CE; Tue, 31 Aug 2004 07:34:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8EB843D58; Tue, 31 Aug 2004 07:34:54 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7V7Yss6049656; Tue, 31 Aug 2004 07:34:54 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7V7YsBh049655; Tue, 31 Aug 2004 07:34:54 GMT (envelope-from julian) Message-Id: <200408310734.i7V7YsBh049655@repoman.freebsd.org> From: Julian Elischer Date: Tue, 31 Aug 2004 07:34:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha trap.c src/sys/amd64/amd64 trap.c src/sys/i386/i386 trap.c src/sys/ia64/ia64 trap.c src/sys/kern kern_kse.c kern_sig.c subr_trap.c src/sys/powerpc/powerpc trap.c src/sys/sparc64/sparc64 trap.c src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 07:34:55 -0000 julian 2004-08-31 07:34:54 UTC FreeBSD src repository Modified files: sys/alpha/alpha trap.c sys/amd64/amd64 trap.c sys/i386/i386 trap.c sys/ia64/ia64 trap.c sys/kern kern_kse.c kern_sig.c subr_trap.c sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys proc.h Log: Remove an unneeded argument.. The removed argument could trivially be derived from the remaining one. That in turn should be the same as curthread, but it is possible that curthread could be expensive to derive on some syste,s so leave it as an argument. Having both proc and thread as an argumen tjust gives an opportunity for them to get out sync. MFC after: 3 days Revision Changes Path 1.120 +1 -1 src/sys/alpha/alpha/trap.c 1.281 +2 -2 src/sys/amd64/amd64/trap.c 1.269 +2 -2 src/sys/i386/i386/trap.c 1.105 +1 -1 src/sys/ia64/ia64/trap.c 1.197 +2 -2 src/sys/kern/kern_kse.c 1.290 +1 -1 src/sys/kern/kern_sig.c 1.272 +1 -1 src/sys/kern/subr_trap.c 1.49 +1 -1 src/sys/powerpc/powerpc/trap.c 1.72 +1 -1 src/sys/sparc64/sparc64/trap.c 1.395 +1 -1 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Tue Aug 31 11:52:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E618616A4E3; Tue, 31 Aug 2004 11:52:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5BEB43D48; Tue, 31 Aug 2004 11:52:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VBq5d8057832; Tue, 31 Aug 2004 11:52:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VBq5uJ057831; Tue, 31 Aug 2004 11:52:05 GMT (envelope-from davidxu) Message-Id: <200408311152.i7VBq5uJ057831@repoman.freebsd.org> From: David Xu Date: Tue, 31 Aug 2004 11:52:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 11:52:06 -0000 davidxu 2004-08-31 11:52:05 UTC FreeBSD src repository Modified files: sys/sys proc.h sys/kern kern_kse.c Log: Remove TDP_USTATCLOCK, we no longer need it because we now always update tick count for userland in thread_userret. This change also removes a "no upcall owned" panic because fuword() schedules an upcall under heavily loaded, and code assumes there is no upcall can occur. Reported and Tested by: Peter Holm Revision Changes Path 1.198 +30 -55 src/sys/kern/kern_kse.c 1.396 +0 -1 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Tue Aug 31 12:17:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 507A116A4CE; Tue, 31 Aug 2004 12:17:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 317F343D1F; Tue, 31 Aug 2004 12:17:48 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VCHm4e058633; Tue, 31 Aug 2004 12:17:48 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VCHmnU058632; Tue, 31 Aug 2004 12:17:48 GMT (envelope-from ru) Message-Id: <200408311217.i7VCHmnU058632@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 31 Aug 2004 12:17:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/coda Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 12:17:48 -0000 ru 2004-08-31 12:17:48 UTC FreeBSD src repository Modified files: sys/modules/coda Makefile Log: Fixed the module build. Revision Changes Path 1.14 +3 -6 src/sys/modules/coda/Makefile From owner-cvs-src@FreeBSD.ORG Tue Aug 31 13:37:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1992616A4CE; Tue, 31 Aug 2004 13:37:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEEBF43D41; Tue, 31 Aug 2004 13:37:51 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VDbpbt060664; Tue, 31 Aug 2004 13:37:51 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VDbpY5060663; Tue, 31 Aug 2004 13:37:51 GMT (envelope-from scottl) Message-Id: <200408311337.i7VDbpY5060663@repoman.freebsd.org> From: Scott Long Date: Tue, 31 Aug 2004 13:37:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/coda5 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 13:37:52 -0000 scottl 2004-08-31 13:37:51 UTC FreeBSD src repository Modified files: sys/modules/coda5 Makefile Log: Make coda5 compile. Revision Changes Path 1.2 +4 -6 src/sys/modules/coda5/Makefile From owner-cvs-src@FreeBSD.ORG Tue Aug 31 14:23:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACB7C16A4CE; Tue, 31 Aug 2004 14:23:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E56743D49; Tue, 31 Aug 2004 14:23:51 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VENpeP063110; Tue, 31 Aug 2004 14:23:51 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VENpk0063109; Tue, 31 Aug 2004 14:23:51 GMT (envelope-from mlaier) Message-Id: <200408311423.i7VENpk0063109@repoman.freebsd.org> From: Max Laier Date: Tue, 31 Aug 2004 14:23:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d pflog X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 14:23:51 -0000 mlaier 2004-08-31 14:23:51 UTC FreeBSD src repository Modified files: etc/rc.d pflog Log: Don't rely on properly setup linker.hints to figure out that pflog is now part of the pf module. While here fix a comment that was c'n'ped from rc.d/pf PR: bin/71096 (partly) Submitted by: Ville-Pertti Keinonen MFC after: 2 days Revision Changes Path 1.2 +2 -2 src/etc/rc.d/pflog From owner-cvs-src@FreeBSD.ORG Tue Aug 31 16:26:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65D9E16A4CE; Tue, 31 Aug 2004 16:26:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56F2C43D5C; Tue, 31 Aug 2004 16:26:01 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VGQ1KZ067560; Tue, 31 Aug 2004 16:26:01 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VGQ1Fx067559; Tue, 31 Aug 2004 16:26:01 GMT (envelope-from alfred) Message-Id: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 31 Aug 2004 16:26:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 16:26:01 -0000 alfred 2004-08-31 16:26:01 UTC FreeBSD src repository Added files: lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c share/man/man5 autofs.5 share/examples/autofs/driver Makefile autodriver.c autotab Log: Enter the autofs. Revision Changes Path 1.1 +14 -0 src/lib/libautofs/Makefile (new) 1.1 +238 -0 src/lib/libautofs/libautofs.3 (new) 1.1 +465 -0 src/lib/libautofs/libautofs.c (new) 1.1 +103 -0 src/lib/libautofs/libautofs.h (new) 1.1 +8 -0 src/sbin/mount_autofs/Makefile (new) 1.1 +71 -0 src/sbin/mount_autofs/mount_autofs.8 (new) 1.1 +103 -0 src/sbin/mount_autofs/mount_autofs.c (new) 1.1 +18 -0 src/share/examples/autofs/driver/Makefile (new) 1.1 +510 -0 src/share/examples/autofs/driver/autodriver.c (new) 1.1 +7 -0 src/share/examples/autofs/driver/autotab (new) 1.1 +58 -0 src/share/man/man5/autofs.5 (new) 1.1 +30 -0 src/sys/fs/autofs/Makefile (new) 1.1 +447 -0 src/sys/fs/autofs/autofs.h (new) 1.1 +618 -0 src/sys/fs/autofs/autofs_util.c (new) 1.1 +756 -0 src/sys/fs/autofs/autofs_vfsops.c (new) 1.1 +1385 -0 src/sys/fs/autofs/autofs_vnops.c (new) From owner-cvs-src@FreeBSD.ORG Tue Aug 31 17:16:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C009C16A4CE; Tue, 31 Aug 2004 17:16:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D2F243D2D; Tue, 31 Aug 2004 17:16:53 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VHGrZB069024; Tue, 31 Aug 2004 17:16:53 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VHGrOs069023; Tue, 31 Aug 2004 17:16:53 GMT (envelope-from alfred) Message-Id: <200408311716.i7VHGrOs069023@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 31 Aug 2004 17:16:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs Makefile src/sys/modules/autofs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 17:16:54 -0000 alfred 2004-08-31 17:16:53 UTC FreeBSD src repository Added files: sys/modules/autofs Makefile Removed files: sys/fs/autofs Makefile Log: Wrong makefile in the wrong place. Pointed out by: scottl Revision Changes Path 1.2 +0 -30 src/sys/fs/autofs/Makefile (dead) 1.1 +14 -0 src/sys/modules/autofs/Makefile (new) From owner-cvs-src@FreeBSD.ORG Tue Aug 31 17:23:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A20A16A4CE for ; Tue, 31 Aug 2004 17:23:39 +0000 (GMT) Received: from smtp.tiscali.ch (smtp.tiscali.ch [212.40.5.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C7BB43D31 for ; Tue, 31 Aug 2004 17:23:38 +0000 (GMT) (envelope-from flex.banana@bluewin.ch) Received: from [192.168.1.202] (adsl-100-160-zh1.tiscali.ch [212.254.100.160]) by smtp.tiscali.ch (8.11.7/8.11.7) with ESMTP id i7VHNaN20655 for ; Tue, 31 Aug 2004 19:23:36 +0200 Mime-Version: 1.0 (Apple Message framework v619) Content-Transfer-Encoding: 7bit Message-Id: <59ED50BA-FB72-11D8-9519-000A95CE05A8@bluewin.ch> Content-Type: text/plain; charset=US-ASCII; format=flowed To: cvs-src@freebsd.org From: "flex.banana" Date: Tue, 31 Aug 2004 19:22:35 +0200 X-Mailer: Apple Mail (2.619) Subject: ACER Travelmate 292 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 17:23:39 -0000 hi all i have a problem booting into my new Travelmate 292 from Acer i'm trying to boot with FreeBSD 5.2.1, 4.10-STABLE, 5.3 BETA2-current (today) and 6.0-current (20040830) and i got this message: npx0: [FAST] npx0: on motherboard npx0: INT 16 interface pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 and the computer freeze, now it's not possible to continue or reboot what is it? can a user help me please? thanks all banana From owner-cvs-src@FreeBSD.ORG Tue Aug 31 18:04:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6D016A4CE; Tue, 31 Aug 2004 18:04:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18FB243D58; Tue, 31 Aug 2004 18:04:35 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VI4YKi070367; Tue, 31 Aug 2004 18:04:34 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VI4YtV070366; Tue, 31 Aug 2004 18:04:34 GMT (envelope-from mlaier) Message-Id: <200408311804.i7VI4YtV070366@repoman.freebsd.org> From: Max Laier Date: Tue, 31 Aug 2004 18:04:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/pf/pflogd pflogd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 18:04:35 -0000 mlaier 2004-08-31 18:04:34 UTC FreeBSD src repository Modified files: contrib/pf/pflogd pflogd.c Log: Make pflogd(8) store pcap_sf_pkthdr instead of MD timeval contaminated pcap_pkthdr. This makes /var/log/pflog standart compliant on 64bit archs. OpenBSD has fixed this by changing the bpf timeval to 32bit in the kernel, so no need to report this over (again). PR: bin/71096 (w/ changes) Submitted by: Ville-Pertti Keinonen Tested by: amd64(submitter), sparc64(yongari), i386(myself) MFC after: 3 days Revision Changes Path 1.6 +36 -0 src/contrib/pf/pflogd/pflogd.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 18:10:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E42C116A4CF; Tue, 31 Aug 2004 18:10:12 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D0A43D48; Tue, 31 Aug 2004 18:10:12 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id A1B4D153C; Tue, 31 Aug 2004 20:10:49 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 06E0BB874; Tue, 31 Aug 2004 20:10:10 +0200 (CEST) To: Alfred Perlstein References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Tue, 31 Aug 2004 20:10:10 +0200 In-Reply-To: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> (Alfred Perlstein's message of "Tue, 31 Aug 2004 16:26:01 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 18:10:13 -0000 Alfred Perlstein writes: > Log: > Enter the autofs. Ohh, shiny! But what's it for? The man pages are rather vague. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Tue Aug 31 18:59:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5B7016A4CF; Tue, 31 Aug 2004 18:59:18 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B99A243D41; Tue, 31 Aug 2004 18:59:18 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id AC4FB5C8F8; Tue, 31 Aug 2004 11:59:18 -0700 (PDT) Date: Tue, 31 Aug 2004 11:59:18 -0700 From: Alfred Perlstein To: Dag-Erling Sm?rgrav Message-ID: <20040831185918.GE31434@elvis.mu.org> References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 18:59:19 -0000 * Dag-Erling Sm?rgrav [040831 11:10] wrote: > Alfred Perlstein writes: > > Log: > > Enter the autofs. > > Ohh, shiny! But what's it for? The man pages are rather vague. It's basically a better mechanism than using a loopback NFS mount for amd. A lot quicker and a lot safer and offers better semantics. I'll add more later, but for now check out: http://www.usenix.org/publications/library/proceedings/cinci93/full_papers/callaghan.txt > > DES > -- > Dag-Erling Sm?rgrav - des@des.no -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Tue Aug 31 19:00:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C642D16A4CE; Tue, 31 Aug 2004 19:00:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A48D143D41; Tue, 31 Aug 2004 19:00:21 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VJ0L08071943; Tue, 31 Aug 2004 19:00:21 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VJ0Lxc071942; Tue, 31 Aug 2004 19:00:21 GMT (envelope-from hrs) Message-Id: <200408311900.i7VJ0Lxc071942@repoman.freebsd.org> From: Hiroki Sato Date: Tue, 31 Aug 2004 19:00:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/sparc64 proc-sparc64.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 19:00:21 -0000 hrs 2004-08-31 19:00:21 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/sparc64 proc-sparc64.sgml Log: U1E and U2 are now fully supported system. MFC after: 2 days Revision Changes Path 1.12 +6 -6 src/release/doc/en_US.ISO8859-1/hardware/sparc64/proc-sparc64.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 31 19:36:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03D1416A4E2 for ; Tue, 31 Aug 2004 19:36:30 +0000 (GMT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9342743D2D for ; Tue, 31 Aug 2004 19:36:29 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 26395 invoked from network); 31 Aug 2004 19:36:28 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 31 Aug 2004 19:36:28 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7VJaGUV052999; Tue, 31 Aug 2004 15:36:24 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Yar Tikhiy Date: Tue, 31 Aug 2004 14:05:04 -0400 User-Agent: KMail/1.6.2 References: <200408280839.i7S8dZpI097103@repoman.freebsd.org> <200408301141.00176.jhb@FreeBSD.org> <20040831050853.GA75766@comp.chem.msu.su> In-Reply-To: <20040831050853.GA75766@comp.chem.msu.su> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408311405.04310.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/mbr Makefile mbr.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 19:36:30 -0000 On Tuesday 31 August 2004 01:08 am, Yar Tikhiy wrote: > On Mon, Aug 30, 2004 at 11:41:00AM -0400, John Baldwin wrote: > > On Saturday 28 August 2004 04:39 am, Yar Tikhiy wrote: > > > yar 2004-08-28 08:39:35 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/boot/i386/mbr Makefile mbr.s > > > Log: > > > Don't be too smart, just try packet mode of INT13 first. > > > This way of operation is more robust than the "AI" used > > > before. > > > > > > Add flags to mbr accessible from make.conf as BOOT_MBR_FLAGS. > > > Only one flag is defined now, "allow using packet mode", which > > > is 0x80 in accord with the rest of i386 boot code. The "packet" > > > flag is on by default. > > > > > > PR: i386/70241 > > > Submitted by: Valentin Nechayev netch.kiev.ua> (inital > > > version) Discussed with: jhb (by Valentin Nechayev) > > > Tested on: bochs (with EDD turned on or off by patching the > > > BIOS), PCs > > > > > > Revision Changes Path > > > 1.14 +4 -0 src/sys/boot/i386/mbr/Makefile > > > 1.7 +6 -6 src/sys/boot/i386/mbr/mbr.s > > > > Hmm, there are no e-mails from me in the PR trail and I don't recall ever > > be in favor of these changes (though I don't care enough to ask for them > > to be backed out.. Only really old machines with pre-1995 BIOS should be > > broken in theory.) It would be nice if you wouldn't claim that I > > supported something that I didn't actually support though. > > John, I try to believe people as much as possible since that saves > my time, and I believe Valentin Nechayev particularly because I know > him quite well. Here are his words straight from the PR: > > %%% > > >Fix: > > Revert logic of selection between traditional and EDD reading mode > to one which prefers EDD if available (as was in the same file in revisions > 1.11 and 1.12). This is supported by John Baldwin (private conversation > after thread in hackers@): > ==={{{ > The problem is that there are BIOS's out there that claim to support EDD > but still don't work correctly. I don't remember all the details at this > point, but I think it had to do with sysinstall not always being in sync > with the BIOS about how sectors were in a cylinder. I guess though we > could just turn EDD on by default in 5.x or perhaps 6.0. 5.x doesn't > really run well on a 386 or even a 486, and that is the class of machine > that has problems with EDD. > ===}}} > > %%% > > I know it could be hard on memory to return to issues one used to > work at in the past, so I decided not to bother you to confirm if > that quote is actually yours. Please excuse me if it was a poor > idea of mine. Hmm, maybe my memory is worse. I found some e-mails in my archive when I searched but not this one. The quoted e-mail above is mine and is correct. I guess I kind of forgot that this was a 6.0 change and 6.0 won't be out for a while. My apologies for getting all jumpy. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Aug 31 20:08:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F4516A4CE; Tue, 31 Aug 2004 20:08:03 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AB3F43D48; Tue, 31 Aug 2004 20:08:03 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-67-127-84-57.dsl.snfc21.pacbell.net [67.127.84.57]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7VK7xjn008220; Tue, 31 Aug 2004 13:08:02 -0700 Message-ID: <4134A9E9.7090008@root.org> Date: Tue, 31 Aug 2004 09:40:09 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200408302135.i7ULZYQx028502@repoman.freebsd.org> <20040831070313.GC30959@ip.net.ua> In-Reply-To: <20040831070313.GC30959@ip.net.ua> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 20:08:03 -0000 Ruslan Ermilov wrote: > On Mon, Aug 30, 2004 at 09:35:34PM +0000, Nate Lawson wrote: > >>njl 2004-08-30 21:35:34 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/fdc fdc_acpi.c >> Log: >> Fix _FDI drive type probing. The new fd child is not an ACPI device while >> the old one is. Hence we need to evaluate the old one for _FDI since it >> has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that a >> more complete one is to make fdc support the ACPI_HANDLE ivar for its >> children. >> >> This and the previous change are MT5 candidates. >> >> Revision Changes Path >> 1.5 +10 -3 src/sys/dev/fdc/fdc_acpi.c >> > > Should I retry on my ThinkPad 600X with these two changes? Sure but I think yours was a resource problem and you don't have _FDE probing. -Nate From owner-cvs-src@FreeBSD.ORG Tue Aug 31 20:37:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C40016A4CE; Tue, 31 Aug 2004 20:37:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19EA043D2F; Tue, 31 Aug 2004 20:37:11 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VKbAdp075765; Tue, 31 Aug 2004 20:37:10 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VKbARQ075764; Tue, 31 Aug 2004 20:37:10 GMT (envelope-from imp) Message-Id: <200408312037.i7VKbARQ075764@repoman.freebsd.org> From: Warner Losh Date: Tue, 31 Aug 2004 20:37:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 20:37:11 -0000 imp 2004-08-31 20:37:10 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c Log: When ISA_PNP_PROBE is called, it will return 0 when it finds a device, ENOENT when there's no PNP ID for this device node, or ENXIO when there is one, but it doesn't match. In the nonPNP case (as most Alpha systems appear to be), we were treating the error return as an error, when it should be have ignored it. Version 1.9 properly ignored it, but the attach re-write of 1.10 introduced this logic error. Pointy Hat to: phk (for breaking it then asking me to fix it :-) Sponsored by: The Voices in Bill Paul's Head, LLC Revision Changes Path 1.12 +1 -2 src/sys/dev/fdc/fdc_isa.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 20:38:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C37C16A4CE; Tue, 31 Aug 2004 20:38:09 +0000 (GMT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4AD043D48; Tue, 31 Aug 2004 20:38:08 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr7.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7VKc7Sx012487; Tue, 31 Aug 2004 22:38:07 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7VKc7MW060741; Tue, 31 Aug 2004 22:38:07 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7VKc7HF060740; Tue, 31 Aug 2004 22:38:07 +0200 (CEST) (envelope-from wb) Date: Tue, 31 Aug 2004 22:38:07 +0200 From: Wilko Bulte To: Warner Losh Message-ID: <20040831203807.GA60718@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408312037.i7VKbARQ075764@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 20:38:09 -0000 On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > imp 2004-08-31 20:37:10 UTC > > FreeBSD src repository > > Modified files: > sys/dev/fdc fdc_isa.c > Log: > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, > ENOENT when there's no PNP ID for this device node, or ENXIO when there > is one, but it doesn't match. > > In the nonPNP case (as most Alpha systems appear to be), we were I think no Alpha has PNP. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Aug 31 20:45:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7883A16A4CF; Tue, 31 Aug 2004 20:45:04 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E5AE43D1D; Tue, 31 Aug 2004 20:45:00 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i7VKgQ09070920; Tue, 31 Aug 2004 14:42:26 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 31 Aug 2004 14:42:36 -0600 (MDT) Message-Id: <20040831.144236.117916474.imp@bsdimp.com> To: wb@freebie.xs4all.nl From: "M. Warner Losh" In-Reply-To: <20040831203807.GA60718@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 20:45:04 -0000 In message: <20040831203807.GA60718@freebie.xs4all.nl> Wilko Bulte writes: : On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. : > imp 2004-08-31 20:37:10 UTC : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/fdc fdc_isa.c : > Log: : > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, : > ENOENT when there's no PNP ID for this device node, or ENXIO when there : > is one, but it doesn't match. : > : > In the nonPNP case (as most Alpha systems appear to be), we were : : I think no Alpha has PNP. Makes sense. The Floppy controller usually shows up in the PNP BIOS or ACPI tables. I do believe that Alpha supports the ISA PNP, however, for add-in cards. We map both PNP BIOS and ISA PNP into the same thing (which is probed with ISA_PNP_PROBE). Warner From owner-cvs-src@FreeBSD.ORG Tue Aug 31 20:45:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A98AC16A5D0; Tue, 31 Aug 2004 20:45:07 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7135143D48; Tue, 31 Aug 2004 20:45:07 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i7VKhSZB070925; Tue, 31 Aug 2004 14:43:28 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 31 Aug 2004 14:43:38 -0600 (MDT) Message-Id: <20040831.144338.66325058.imp@bsdimp.com> To: nate@root.org From: "M. Warner Losh" In-Reply-To: <4134A9E9.7090008@root.org> References: <200408302135.i7ULZYQx028502@repoman.freebsd.org> <20040831070313.GC30959@ip.net.ua> <4134A9E9.7090008@root.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: ru@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 20:45:38 -0000 In message: <4134A9E9.7090008@root.org> Nate Lawson writes: : Ruslan Ermilov wrote: : > On Mon, Aug 30, 2004 at 09:35:34PM +0000, Nate Lawson wrote: : > : >>njl 2004-08-30 21:35:34 UTC : >> : >> FreeBSD src repository : >> : >> Modified files: : >> sys/dev/fdc fdc_acpi.c : >> Log: : >> Fix _FDI drive type probing. The new fd child is not an ACPI device while : >> the old one is. Hence we need to evaluate the old one for _FDI since it : >> has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that a : >> more complete one is to make fdc support the ACPI_HANDLE ivar for its : >> children. : >> : >> This and the previous change are MT5 candidates. : >> : >> Revision Changes Path : >> 1.5 +10 -3 src/sys/dev/fdc/fdc_acpi.c : >> : > : > Should I retry on my ThinkPad 600X with these two changes? : : Sure but I think yours was a resource problem and you don't have _FDE : probing. I'm working the resource problem right now... Warner From owner-cvs-src@FreeBSD.ORG Tue Aug 31 21:12:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31B5716A4CE; Tue, 31 Aug 2004 21:12:44 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id F16C043D1D; Tue, 31 Aug 2004 21:12:43 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-67-127-84-57.dsl.snfc21.pacbell.net [67.127.84.57]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7VLCfjn009508; Tue, 31 Aug 2004 14:12:41 -0700 Message-ID: <4134E9C8.4020502@root.org> Date: Tue, 31 Aug 2004 14:12:40 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "M. Warner Losh" References: <200408302135.i7ULZYQx028502@repoman.freebsd.org> <20040831070313.GC30959@ip.net.ua> <4134A9E9.7090008@root.org> <20040831.144338.66325058.imp@bsdimp.com> In-Reply-To: <20040831.144338.66325058.imp@bsdimp.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: ru@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 21:12:44 -0000 M. Warner Losh wrote: > In message: <4134A9E9.7090008@root.org> > Nate Lawson writes: > : Ruslan Ermilov wrote: > : > On Mon, Aug 30, 2004 at 09:35:34PM +0000, Nate Lawson wrote: > : > > : >>njl 2004-08-30 21:35:34 UTC > : >> > : >> FreeBSD src repository > : >> > : >> Modified files: > : >> sys/dev/fdc fdc_acpi.c > : >> Log: > : >> Fix _FDI drive type probing. The new fd child is not an ACPI device while > : >> the old one is. Hence we need to evaluate the old one for _FDI since it > : >> has a valid ACPI_HANDLE ivar. This is a minimal fix. Make a note that a > : >> more complete one is to make fdc support the ACPI_HANDLE ivar for its > : >> children. > : >> > : >> This and the previous change are MT5 candidates. > : >> > : >> Revision Changes Path > : >> 1.5 +10 -3 src/sys/dev/fdc/fdc_acpi.c > : >> > : > > : > Should I retry on my ThinkPad 600X with these two changes? > : > : Sure but I think yours was a resource problem and you don't have _FDE > : probing. > > I'm working the resource problem right now... My hero. :) -Nate From owner-cvs-src@FreeBSD.ORG Tue Aug 31 21:45:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61D016A4CE; Tue, 31 Aug 2004 21:45:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96F0A43D53; Tue, 31 Aug 2004 21:45:30 +0000 (GMT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VLjUtQ077754; Tue, 31 Aug 2004 21:45:30 GMT (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VLjUjk077753; Tue, 31 Aug 2004 21:45:30 GMT (envelope-from mdodd) Message-Id: <200408312145.i7VLjUjk077753@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Tue, 31 Aug 2004 21:45:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/bios vpd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 31 Aug 2004 21:45:30 -0000 mdodd 2004-08-31 21:45:30 UTC FreeBSD src repository Modified files: sys/i386/bios vpd.c Log: Fix checksum calculation. Submitted by: Jean Delvare Revision Changes Path 1.5 +7 -12 src/sys/i386/bios/vpd.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 21:51:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B469E16A4CE; Tue, 31 Aug 2004 21:51:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9551C43D3F; Tue, 31 Aug 2004 21:51:51 +0000 (GMT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VLppWk077976; Tue, 31 Aug 2004 21:51:51 GMT (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VLppYN077975; Tue, 31 Aug 2004 21:51:51 GMT (envelope-from mdodd) Message-Id: <200408312151.i7VLppYN077975@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Tue, 31 Aug 2004 21:51:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/bios mca_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 21:51:51 -0000 mdodd 2004-08-31 21:51:51 UTC FreeBSD src repository Modified files: sys/i386/bios mca_machdep.c Log: Clarify SDT feature word bits. Obtained from: NetBSD Revision Changes Path 1.9 +5 -4 src/sys/i386/bios/mca_machdep.c From owner-cvs-src@FreeBSD.ORG Tue Aug 31 22:36:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D6C516A4CE; Tue, 31 Aug 2004 22:36:08 +0000 (GMT) Received: from smtp-vbr9.xs4all.nl (smtp-vbr9.xs4all.nl [194.109.24.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71E7543D1F; Tue, 31 Aug 2004 22:36:07 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr9.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7VMa38X064988; Wed, 1 Sep 2004 00:36:03 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7VMa3YD061752; Wed, 1 Sep 2004 00:36:03 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7VMa33J061751; Wed, 1 Sep 2004 00:36:03 +0200 (CEST) (envelope-from wb) Date: Wed, 1 Sep 2004 00:36:03 +0200 From: Wilko Bulte To: "M. Warner Losh" Message-ID: <20040831223603.GA61717@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> <20040831.144236.117916474.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040831.144236.117916474.imp@bsdimp.com> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 22:36:08 -0000 On Tue, Aug 31, 2004 at 02:42:36PM -0600, M. Warner Losh wrote.. > In message: <20040831203807.GA60718@freebie.xs4all.nl> > Wilko Bulte writes: > : On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > : > imp 2004-08-31 20:37:10 UTC > : > > : > FreeBSD src repository > : > > : > Modified files: > : > sys/dev/fdc fdc_isa.c > : > Log: > : > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, > : > ENOENT when there's no PNP ID for this device node, or ENXIO when there > : > is one, but it doesn't match. > : > > : > In the nonPNP case (as most Alpha systems appear to be), we were > : > : I think no Alpha has PNP. > > Makes sense. The Floppy controller usually shows up in the PNP BIOS > or ACPI tables. I do believe that Alpha supports the ISA PNP, > however, for add-in cards. We map both PNP BIOS and ISA PNP into the > same thing (which is probed with ISA_PNP_PROBE). There are some Alpha models that have a command called isacfg (IIRC) that allows you to specify to SRM the resources like IRQ etc used. Tru64 has support to read these values from the SRM. (Memory is dim here, I helped a guy develop a specific driver for T64 a considerable number of years back. It gained me my first Miata btw ;) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Aug 31 23:28:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 912D916A4CE; Tue, 31 Aug 2004 23:28:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74A9743D39; Tue, 31 Aug 2004 23:28:23 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7VNSN6g080570; Tue, 31 Aug 2004 23:28:23 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7VNSNoP080569; Tue, 31 Aug 2004 23:28:23 GMT (envelope-from julian) Message-Id: <200408312328.i7VNSNoP080569@repoman.freebsd.org> From: Julian Elischer Date: Tue, 31 Aug 2004 23:28:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2004 23:28:23 -0000 julian 2004-08-31 23:28:23 UTC FreeBSD src repository Modified files: sys/sys proc.h Log: Note free bit.. as per the flags word. MFC after: 2 days Revision Changes Path 1.397 +1 -0 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 00:08:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C14F916A4CE; Wed, 1 Sep 2004 00:08:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A445843D39; Wed, 1 Sep 2004 00:08:15 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8108FUw081686; Wed, 1 Sep 2004 00:08:15 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8108Fxq081685; Wed, 1 Sep 2004 00:08:15 GMT (envelope-from brooks) Message-Id: <200409010008.i8108Fxq081685@repoman.freebsd.org> From: Brooks Davis Date: Wed, 1 Sep 2004 00:08:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc devd.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 00:08:15 -0000 brooks 2004-09-01 00:08:15 UTC FreeBSD src repository Modified files: etc devd.conf Log: When an USB keyboard is plugged in to a machine with a builtin keyboard, cause the USB keyboard to take over from the builtin one. This means my laptop just works when I'm using it as a desktop. Reviewed by: imp Revision Changes Path 1.15 +10 -0 src/etc/devd.conf From owner-cvs-src@FreeBSD.ORG Wed Sep 1 00:15:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14BA116A4CE; Wed, 1 Sep 2004 00:15:27 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1161B43D46; Wed, 1 Sep 2004 00:15:26 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.201] ([192.168.0.201]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i810F2sI073614; Tue, 31 Aug 2004 18:15:02 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <413513FB.20505@samsco.org> Date: Tue, 31 Aug 2004 18:12:43 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040831 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Brooks Davis References: <200409010008.i8108Fxq081685@repoman.freebsd.org> In-Reply-To: <200409010008.i8108Fxq081685@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc devd.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 00:15:27 -0000 Brooks Davis wrote: > brooks 2004-09-01 00:08:15 UTC > > FreeBSD src repository > > Modified files: > etc devd.conf > Log: > When an USB keyboard is plugged in to a machine with a builtin keyboard, > cause the USB keyboard to take over from the builtin one. This means my > laptop just works when I'm using it as a desktop. > > Reviewed by: imp > > Revision Changes Path > 1.15 +10 -0 src/etc/devd.conf What happens when you boot into single-user mode? Is this case handled correctly? Come to think of it, I haven't had any problems with the USB keyboard on my amd64 system and 6-CURRENT. Is there a specific degenerate case here? Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 1 00:41:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DD5E16A4CE; Wed, 1 Sep 2004 00:41:55 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE3E843D53; Wed, 1 Sep 2004 00:41:54 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i810g8KR004703; Tue, 31 Aug 2004 17:42:08 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i810g8a7004702; Tue, 31 Aug 2004 17:42:08 -0700 Date: Tue, 31 Aug 2004 17:42:08 -0700 From: Brooks Davis To: Scott Long Message-ID: <20040901004208.GB25779@odin.ac.hmc.edu> References: <200409010008.i8108Fxq081685@repoman.freebsd.org> <413513FB.20505@samsco.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1UWUbFP1cBYEclgG" Content-Disposition: inline In-Reply-To: <413513FB.20505@samsco.org> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/etc devd.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 00:41:55 -0000 --1UWUbFP1cBYEclgG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 31, 2004 at 06:12:43PM -0600, Scott Long wrote: > Brooks Davis wrote: > >brooks 2004-09-01 00:08:15 UTC > > > > FreeBSD src repository > > > > Modified files: > > etc devd.conf=20 > > Log: > > When an USB keyboard is plugged in to a machine with a builtin keyboar= d, > > cause the USB keyboard to take over from the builtin one. This means = my > > laptop just works when I'm using it as a desktop. >=20 > What happens when you boot into single-user mode? Is this case handled > correctly? Come to think of it, I haven't had any problems with the USB > keyboard on my amd64 system and 6-CURRENT. Is there a specific > degenerate case here? In single-user mode, you will be able to use the PS/2 keyboard. This change effects systems where there is a system keyboard and then a USB keyboard is plugged in. When the USB keyboard is plugged in, it will become the console keyboard. When it is removed, the first keyboard is set back to the console keyboard. The logic isn't perfect, but it should work for any case you're likely to see in the real world. The "test -c /dev/kbd1" insures that this won't cause weird problems with legacy free systems. The issue I'm seeing is that with the PS/2 keyboard is always being picked up, my USB keyboard works as a legacy keyboard before the kernel boots, but during boot, the controller seems to switch out of legacy mode and the USB keyboard stops working except natively. I my poorly informed theory is that something about the hack my BIOS uses to make legacy OSes work was broken with Alfred's flags change. It's entirely possible this is a perversion of my particular BIOS or something wonky with the hardware (HP OmniBook 500) but wanting to plug a USB keyboard into a server after boot isn't that weird and this is pretty much the same case. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --1UWUbFP1cBYEclgG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBNRrfXY6L6fI4GtQRAqwBAJ9l8rWkhhb46H+hqyx0Lid/vDXh7wCfRRAF 7yw5x+MjHt9GUhqDUfR7ON0= =Z254 -----END PGP SIGNATURE----- --1UWUbFP1cBYEclgG-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 00:46:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D05516A4CE; Wed, 1 Sep 2004 00:46:51 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BAD243D46; Wed, 1 Sep 2004 00:46:51 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id 18FDF8803; Tue, 31 Aug 2004 17:46:51 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Tue, 31 Aug 2004 17:46:50 -0700 User-Agent: KMail/1.6.2 References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <200408301729.22348.peter@wemm.org> <20040831004311.GA29938@odin.ac.hmc.edu> In-Reply-To: <20040831004311.GA29938@odin.ac.hmc.edu> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408311746.50735.peter@wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 00:46:51 -0000 On Monday 30 August 2004 05:43 pm, Brooks Davis wrote: > On Mon, Aug 30, 2004 at 05:29:22PM -0700, Peter Wemm wrote: > > On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > > > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: > > > > Brooks Davis writes: > > > > > I don't think so. The main offenders will be programs that > > > > > walk the interface list via libkvm and programs that use > > > > > struct if_data. ifconfig does neither. If you haven't > > > > > recompiled a module, a non-working ifconfig might result if > > > > > by some miracle you didn't get a panic on attach. > > > > > > > > ppc does not even build modules, so that's out. An older > > > > ifconfig pukes, while a new one works, so some sort of > > > > kernel/userland ABI must have changed in the last week. Has > > > > the data exported by sysctl changed recently? > > > > > > I think I found it, at least partially. The issue is struct > > > if_msghdr which is used by ifconfig. It contains a struct > > > if_data. It has grown by a struct timeval. The weird thing is > > > that this shouldn't be a problem becuase if_msghdr has a length > > > and my addition was to the end so ifconfig should be able to skip > > > over it, but it doesn't seem to actually work. > > > > It is broken on amd64 too, FWIW. > > If if_msghdr is the problem, it will be broken on all platforms and a > rebuild of everything thing should fix it. I don't know why ifconfig > is having a problem with the extension of if_msghdr. It shouldn't > care since the format is unchanged other then the addition of a > structure at the very end and the ifm_msglen member appears to be > used correct to advance through the array passed by the sysctl. Actually, I more want to know why it didn't work. But I haven't figured out where the message lengths are even getting set, let alone (mis?)used by ifconfig. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 01:02:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFB2616A4CE; Wed, 1 Sep 2004 01:02:29 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD6BA43D39; Wed, 1 Sep 2004 01:02:29 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i8112fsJ007521; Tue, 31 Aug 2004 18:02:41 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i8112fYa007520; Tue, 31 Aug 2004 18:02:41 -0700 Date: Tue, 31 Aug 2004 18:02:41 -0700 From: Brooks Davis To: Peter Wemm Message-ID: <20040901010241.GC25779@odin.ac.hmc.edu> References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <200408301729.22348.peter@wemm.org> <20040831004311.GA29938@odin.ac.hmc.edu> <200408311746.50735.peter@wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NU0Ex4SbNnrxsi6C" Content-Disposition: inline In-Reply-To: <200408311746.50735.peter@wemm.org> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: Brooks Davis cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 01:02:30 -0000 --NU0Ex4SbNnrxsi6C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 31, 2004 at 05:46:50PM -0700, Peter Wemm wrote: > On Monday 30 August 2004 05:43 pm, Brooks Davis wrote: > > On Mon, Aug 30, 2004 at 05:29:22PM -0700, Peter Wemm wrote: > > > On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > > > > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: > > > > > Brooks Davis writes: > > > > > > I don't think so. The main offenders will be programs that > > > > > > walk the interface list via libkvm and programs that use > > > > > > struct if_data. ifconfig does neither. If you haven't > > > > > > recompiled a module, a non-working ifconfig might result if > > > > > > by some miracle you didn't get a panic on attach. > > > > > > > > > > ppc does not even build modules, so that's out. An older > > > > > ifconfig pukes, while a new one works, so some sort of > > > > > kernel/userland ABI must have changed in the last week. Has > > > > > the data exported by sysctl changed recently? > > > > > > > > I think I found it, at least partially. The issue is struct > > > > if_msghdr which is used by ifconfig. It contains a struct > > > > if_data. It has grown by a struct timeval. The weird thing is > > > > that this shouldn't be a problem becuase if_msghdr has a length > > > > and my addition was to the end so ifconfig should be able to skip > > > > over it, but it doesn't seem to actually work. > > > > > > It is broken on amd64 too, FWIW. > > > > If if_msghdr is the problem, it will be broken on all platforms and a > > rebuild of everything thing should fix it. I don't know why ifconfig > > is having a problem with the extension of if_msghdr. It shouldn't > > care since the format is unchanged other then the addition of a > > structure at the very end and the ifm_msglen member appears to be > > used correct to advance through the array passed by the sysctl. >=20 > Actually, I more want to know why it didn't work. But I haven't figured= =20 > out where the message lengths are even getting set, let alone=20 > (mis?)used by ifconfig. The if_msghdrs are used in the loop that starts around line 582 in ifconfig.c. That seems to correct. The length seems to be set in in net/rtsock.c in the rt_msg1 and rt_msg2 functions. The reason it's so darn hard to find is that routing messages are defined by different structs with the same first several members. Due to the naming of the members, that renders grep useless. :-( I can't help but think someone was too clever for their own good. I still don't see why it's breaking though since that should set the values. The only thing I can think of is that there's a dependency tracking bug somewhere, but that seems unlikely which would seem to indicate that I'm not on to the real cause yet. :-( -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --NU0Ex4SbNnrxsi6C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBNR+xXY6L6fI4GtQRAvQkAKCil4uoxgkNUVJwyv6cdnPZoigRdQCeIAlt 1Vsy103dLz03CWaIvaGDDGE= =usrO -----END PGP SIGNATURE----- --NU0Ex4SbNnrxsi6C-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 01:19:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C06A716A4CE; Wed, 1 Sep 2004 01:19:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6B7343D54; Wed, 1 Sep 2004 01:19:52 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i811Jqr4083629; Wed, 1 Sep 2004 01:19:52 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i811JqST083628; Wed, 1 Sep 2004 01:19:52 GMT (envelope-from brooks) Message-Id: <200409010119.i811JqST083628@repoman.freebsd.org> From: Brooks Davis Date: Wed, 1 Sep 2004 01:19:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/coda cnode.h coda_fbsd.c coda_psdev.c coda_vfsops.c src/sys/conf NOTES majors options src/sys/modules/coda Makefile src/sys/modules/coda5 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 01:19:52 -0000 brooks 2004-09-01 01:19:52 UTC FreeBSD src repository Modified files: sys/coda cnode.h coda_fbsd.c coda_psdev.c coda_vfsops.c sys/conf NOTES options majors sys/modules/coda Makefile sys/modules/coda5 Makefile Log: General modernization of coda: - Ditch NVCODA - Don't use a static major - Don't declare functions extern Reviewed by: peter Revision Changes Path 1.15 +11 -10 src/sys/coda/cnode.h 1.38 +32 -49 src/sys/coda/coda_fbsd.c 1.32 +10 -25 src/sys/coda/coda_psdev.c 1.53 +1 -9 src/sys/coda/coda_vfsops.c 1.1271 +0 -1 src/sys/conf/NOTES 1.202 +1 -1 src/sys/conf/majors 1.481 +0 -1 src/sys/conf/options 1.15 +1 -1 src/sys/modules/coda/Makefile 1.3 +0 -1 src/sys/modules/coda5/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 01:21:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B52F516A4CE; Wed, 1 Sep 2004 01:21:10 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71A7443D1F; Wed, 1 Sep 2004 01:21:10 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id 5648B8803; Tue, 31 Aug 2004 18:21:10 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Tue, 31 Aug 2004 18:21:09 -0700 User-Agent: KMail/1.6.2 References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <200408311746.50735.peter@wemm.org> <20040901010241.GC25779@odin.ac.hmc.edu> In-Reply-To: <20040901010241.GC25779@odin.ac.hmc.edu> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408311821.09991.peter@wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 01:21:10 -0000 On Tuesday 31 August 2004 06:02 pm, Brooks Davis wrote: > On Tue, Aug 31, 2004 at 05:46:50PM -0700, Peter Wemm wrote: > > On Monday 30 August 2004 05:43 pm, Brooks Davis wrote: > > > On Mon, Aug 30, 2004 at 05:29:22PM -0700, Peter Wemm wrote: > > > > On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > > > > > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin wrote: > > > > > > Brooks Davis writes: > > > > > > > I don't think so. The main offenders will be programs > > > > > > > that walk the interface list via libkvm and programs > > > > > > > that use struct if_data. ifconfig does neither. If you > > > > > > > haven't recompiled a module, a non-working ifconfig > > > > > > > might result if by some miracle you didn't get a panic > > > > > > > on attach. > > > > > > > > > > > > ppc does not even build modules, so that's out. An older > > > > > > ifconfig pukes, while a new one works, so some sort of > > > > > > kernel/userland ABI must have changed in the last week. > > > > > > Has the data exported by sysctl changed recently? > > > > > > > > > > I think I found it, at least partially. The issue is struct > > > > > if_msghdr which is used by ifconfig. It contains a struct > > > > > if_data. It has grown by a struct timeval. The weird thing > > > > > is that this shouldn't be a problem becuase if_msghdr has a > > > > > length and my addition was to the end so ifconfig should be > > > > > able to skip over it, but it doesn't seem to actually work. > > > > > > > > It is broken on amd64 too, FWIW. > > > > > > If if_msghdr is the problem, it will be broken on all platforms > > > and a rebuild of everything thing should fix it. I don't know > > > why ifconfig is having a problem with the extension of if_msghdr. > > > It shouldn't care since the format is unchanged other then the > > > addition of a structure at the very end and the ifm_msglen member > > > appears to be used correct to advance through the array passed by > > > the sysctl. > > > > Actually, I more want to know why it didn't work. But I haven't > > figured out where the message lengths are even getting set, let > > alone (mis?)used by ifconfig. > > The if_msghdrs are used in the loop that starts around line 582 in > ifconfig.c. That seems to correct. The length seems to be set in in > net/rtsock.c in the rt_msg1 and rt_msg2 functions. The reason it's > so darn hard to find is that routing messages are defined by > different structs with the same first several members. Due to the > naming of the members, that renders grep useless. :-( I can't help > but think someone was too clever for their own good. I still don't > see why it's breaking though since that should set the values. The > only thing I can think of is that there's a dependency tracking bug > somewhere, but that seems unlikely which would seem to indicate that > I'm not on to the real cause yet. :-( Found it.. The routing socket ABI is broken. eg: ... if (ifm->ifm_type == RTM_IFINFO) { sdl = (struct sockaddr_dl *)(ifm + 1); flags = ifm->ifm_flags; ... /* Expand the compacted addresses */ rt_xaddrs((char *)(ifam + 1), ifam->ifam_msglen + (char *)ifam, &info); ... The +1 trick encodes the sizeof the structure into the code. The problem is that certain records have additional data appended but without recording the offset. eg: struct if_msghdr { u_short ifm_msglen; /* to skip over non-understood messages */ u_char ifm_version; /* future binary compatibility */ u_char ifm_type; /* message type */ int ifm_addrs; /* like rtm_addrs */ int ifm_flags; /* value of if_flags */ u_short ifm_index; /* index for associated ifp */ struct if_data ifm_data;/* statistics and other data about if */ }; The problem is that you extended the size of if_data, but there is no way to represent that.. Suppose the structure was 0x200 bytes. Suppose there was 0x80 additional bytes. It would occupy offsets 0x200 through 0x280. ifm_msglen would be 0x280. However. Now that the base structure has changed, the additional data starts now at 0x220 and the msglen is 0x2a0. Old binaries have no way to find out where the (variable length) additional data begins. You can't find the cutover point when you have two unknown variable length data blobs. (You could use sizeof vs msglen to calculate it if you knew a fixed length additional data item) So, we're hosed. struct if_data either can't be extended, or we have to encode an additional data offset pointer or the size of the ifm_data. if_data has a hidden (due to packing) u_char space avalable at the beginning for a length value, and there is also ifi_unused near the end. An embedded length in the if_data struct is valueable so we can extend it in the future again. We could encode 'u_char ifi_datalen' for free without changing the abi again. ifi_data is roughly 168 bytes on a 64 bit machine, I don't imagine too many extra stats to keep. Or we could re-use ifi_unused. Let me whip up a patch. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 01:26:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EF9416A4CE; Wed, 1 Sep 2004 01:26:40 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB48843D1D; Wed, 1 Sep 2004 01:26:39 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.201] ([192.168.0.201]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i811QJ5J073967; Tue, 31 Aug 2004 19:26:20 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <413524B0.1040206@samsco.org> Date: Tue, 31 Aug 2004 19:24:00 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040831 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Brooks Davis References: <200409010119.i811JqST083628@repoman.freebsd.org> In-Reply-To: <200409010119.i811JqST083628@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=1.0 required=3.8 tests=SUBJ_HAS_SPACES autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda cnode.h coda_fbsd.c coda_psdev.c src/sys/modules/coda Makefile src/sys/modules/coda5 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 01:26:40 -0000 Brooks Davis wrote: > brooks 2004-09-01 01:19:52 UTC > > FreeBSD src repository > > Modified files: > sys/coda cnode.h coda_fbsd.c coda_psdev.c > coda_vfsops.c > sys/conf NOTES options majors > sys/modules/coda Makefile > sys/modules/coda5 Makefile > Log: > General modernization of coda: > - Ditch NVCODA > - Don't use a static major > - Don't declare functions extern > > Reviewed by: peter > > Revision Changes Path > 1.15 +11 -10 src/sys/coda/cnode.h > 1.38 +32 -49 src/sys/coda/coda_fbsd.c > 1.32 +10 -25 src/sys/coda/coda_psdev.c > 1.53 +1 -9 src/sys/coda/coda_vfsops.c > 1.1271 +0 -1 src/sys/conf/NOTES > 1.202 +1 -1 src/sys/conf/majors > 1.481 +0 -1 src/sys/conf/options > 1.15 +1 -1 src/sys/modules/coda/Makefile > 1.3 +0 -1 src/sys/modules/coda5/Makefile Excellent! Thanks a lot! Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 1 02:11:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EAD816A4CE; Wed, 1 Sep 2004 02:11:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7292843D2D; Wed, 1 Sep 2004 02:11:28 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i812BSsf085501; Wed, 1 Sep 2004 02:11:28 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i812BSTB085500; Wed, 1 Sep 2004 02:11:28 GMT (envelope-from julian) Message-Id: <200409010211.i812BSTB085500@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 02:11:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/linux linux_machdep.csrc/sys/amd64/linux32 linux32_machdep.c src/sys/i386/linux linux_machdep.c src/sys/kern init_main.c kern_fork.c kern_intr.c kern_kse.c kern_kthread.c... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 02:11:28 -0000 julian 2004-09-01 02:11:28 UTC FreeBSD src repository Modified files: sys/alpha/linux linux_machdep.c sys/amd64/linux32 linux32_machdep.c sys/i386/linux linux_machdep.c sys/kern init_main.c kern_fork.c kern_intr.c kern_kse.c kern_kthread.c kern_switch.c kern_thr.c sched_4bsd.c sched_ule.c subr_turnstile.c sys/sys proc.h sched.h sys/vm vm_zeroidle.c Log: Give setrunqueue() and sched_add() more of a clue as to where they are coming from and what is expected from them. MFC after: 2 days Revision Changes Path 1.34 +1 -1 src/sys/alpha/linux/linux_machdep.c 1.4 +1 -1 src/sys/amd64/linux32/linux32_machdep.c 1.43 +1 -1 src/sys/i386/linux/linux_machdep.c 1.247 +1 -1 src/sys/kern/init_main.c 1.236 +1 -1 src/sys/kern/kern_fork.c 1.114 +2 -2 src/sys/kern/kern_intr.c 1.199 +2 -2 src/sys/kern/kern_kse.c 1.33 +1 -1 src/sys/kern/kern_kthread.c 1.82 +6 -6 src/sys/kern/kern_switch.c 1.24 +1 -1 src/sys/kern/kern_thr.c 1.51 +10 -5 src/sys/kern/sched_4bsd.c 1.123 +13 -4 src/sys/kern/sched_ule.c 1.148 +1 -1 src/sys/kern/subr_turnstile.c 1.398 +7 -1 src/sys/sys/proc.h 1.15 +1 -1 src/sys/sys/sched.h 1.28 +1 -1 src/sys/vm/vm_zeroidle.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 02:11:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B2FD16A4D1; Wed, 1 Sep 2004 02:11:41 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79DF043D49; Wed, 1 Sep 2004 02:11:41 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id 63C858803; Tue, 31 Aug 2004 19:11:41 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Tue, 31 Aug 2004 19:11:41 -0700 User-Agent: KMail/1.6.2 References: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> <20040901010241.GC25779@odin.ac.hmc.edu> <200408311821.09991.peter@wemm.org> In-Reply-To: <200408311821.09991.peter@wemm.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408311911.41020.peter@wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andrew Gallatin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 02:11:41 -0000 On Tuesday 31 August 2004 06:21 pm, Peter Wemm wrote: > On Tuesday 31 August 2004 06:02 pm, Brooks Davis wrote: > > On Tue, Aug 31, 2004 at 05:46:50PM -0700, Peter Wemm wrote: > > > On Monday 30 August 2004 05:43 pm, Brooks Davis wrote: > > > > On Mon, Aug 30, 2004 at 05:29:22PM -0700, Peter Wemm wrote: > > > > > On Monday 30 August 2004 02:53 pm, Brooks Davis wrote: > > > > > > On Mon, Aug 30, 2004 at 05:34:23PM -0400, Andrew Gallatin > > wrote: > > > > > > > Brooks Davis writes: > > > > > > > > I don't think so. The main offenders will be programs > > > > > > > > that walk the interface list via libkvm and programs > > > > > > > > that use struct if_data. ifconfig does neither. If > > > > > > > > you haven't recompiled a module, a non-working > > > > > > > > ifconfig might result if by some miracle you didn't > > > > > > > > get a panic on attach. > > > > > > > > > > > > > > ppc does not even build modules, so that's out. An older > > > > > > > ifconfig pukes, while a new one works, so some sort of > > > > > > > kernel/userland ABI must have changed in the last week. > > > > > > > Has the data exported by sysctl changed recently? > > > > > > > > > > > > I think I found it, at least partially. The issue is > > > > > > struct if_msghdr which is used by ifconfig. It contains a > > > > > > struct if_data. It has grown by a struct timeval. The > > > > > > weird thing is that this shouldn't be a problem becuase > > > > > > if_msghdr has a length and my addition was to the end so > > > > > > ifconfig should be able to skip over it, but it doesn't > > > > > > seem to actually work. > > > > > > > > > > It is broken on amd64 too, FWIW. > > > > > > > > If if_msghdr is the problem, it will be broken on all platforms > > > > and a rebuild of everything thing should fix it. I don't know > > > > why ifconfig is having a problem with the extension of > > > > if_msghdr. It shouldn't care since the format is unchanged > > > > other then the addition of a structure at the very end and the > > > > ifm_msglen member appears to be used correct to advance through > > > > the array passed by the sysctl. > > > > > > Actually, I more want to know why it didn't work. But I haven't > > > figured out where the message lengths are even getting set, let > > > alone (mis?)used by ifconfig. > > > > The if_msghdrs are used in the loop that starts around line 582 in > > ifconfig.c. That seems to correct. The length seems to be set in > > in net/rtsock.c in the rt_msg1 and rt_msg2 functions. The reason > > it's so darn hard to find is that routing messages are defined by > > different structs with the same first several members. Due to the > > naming of the members, that renders grep useless. :-( I can't help > > but think someone was too clever for their own good. I still don't > > see why it's breaking though since that should set the values. The > > only thing I can think of is that there's a dependency tracking bug > > somewhere, but that seems unlikely which would seem to indicate > > that I'm not on to the real cause yet. :-( > > Found it.. The routing socket ABI is broken. eg: > ... > if (ifm->ifm_type == RTM_IFINFO) { > sdl = (struct sockaddr_dl *)(ifm + 1); > flags = ifm->ifm_flags; > ... > /* Expand the compacted addresses */ > rt_xaddrs((char *)(ifam + 1), ifam->ifam_msglen + > (char *)ifam, > &info); > ... > > The +1 trick encodes the sizeof the structure into the code. The > problem is that certain records have additional data appended but > without recording the offset. > > eg: > struct if_msghdr { > u_short ifm_msglen; /* to skip over non-understood > messages */ > u_char ifm_version; /* future binary compatibility */ > u_char ifm_type; /* message type */ > int ifm_addrs; /* like rtm_addrs */ > int ifm_flags; /* value of if_flags */ > u_short ifm_index; /* index for associated ifp */ > struct if_data ifm_data;/* statistics and other data about > if */ > }; > > The problem is that you extended the size of if_data, but there is no > way to represent that.. > Suppose the structure was 0x200 bytes. Suppose there was 0x80 > additional bytes. It would occupy offsets 0x200 through 0x280. > ifm_msglen would be 0x280. > > However. Now that the base structure has changed, the additional > data starts now at 0x220 and the msglen is 0x2a0. Old binaries have > no way to find out where the (variable length) additional data > begins. You can't find the cutover point when you have two unknown > variable length data blobs. (You could use sizeof vs msglen to > calculate it if you knew a fixed length additional data item) > > So, we're hosed. struct if_data either can't be extended, or we have > to encode an additional data offset pointer or the size of the > ifm_data. > > if_data has a hidden (due to packing) u_char space avalable at the > beginning for a length value, and there is also ifi_unused near the > end. > > An embedded length in the if_data struct is valueable so we can > extend it in the future again. > > We could encode 'u_char ifi_datalen' for free without changing the > abi again. ifi_data is roughly 168 bytes on a 64 bit machine, I > don't imagine too many extra stats to keep. Or we could re-use > ifi_unused. > > Let me whip up a patch. This seems to work for me. Of course, for it to be really useful, it would have to be in all our old ifconfig binaries, but it would be nice if it could go into 5.x. That would make the 5.x binaries work again when booted with a 6.x kernel. Thats going to be important for a while. Note again that this doesn't break anything else. It just uses a hidden (due to alignment) variable and has a best-effort heuristic for old kernels. ==== //depot/projects/hammer/sbin/ifconfig/ifconfig.c#18 - /home/src/sbin/ifconfig/ifconfig.c ==== @@ -585,7 +585,10 @@ ifm = (struct if_msghdr *)next; if (ifm->ifm_type == RTM_IFINFO) { - sdl = (struct sockaddr_dl *)(ifm + 1); + if (ifm->ifm_data.ifi_datalen == 0) + ifm->ifm_data.ifi_datalen = sizeof(struct if_data); + sdl = (struct sockaddr_dl *)((char *)ifm + sizeof(struct if_msghdr) - + sizeof(struct if_data) + ifm->ifm_data.ifi_datalen); flags = ifm->ifm_flags; } else { fprintf(stderr, "out of sync parsing NET_RT_IFLIST\n"); ==== //depot/projects/hammer/sys/net/if.c#26 - /home/src/sys/net/if.c ==== @@ -399,6 +399,7 @@ if_index = ifp->if_index; if (if_index >= if_indexlim) if_grow(); + ifp->if_data.ifi_datalen = sizeof(struct if_data); ifnet_byindex(ifp->if_index) = ifp; ifdev_byindex(ifp->if_index) = make_dev(&net_cdevsw, ==== //depot/projects/hammer/sys/net/if.h#12 - /home/src/sys/net/if.h ==== @@ -85,6 +85,7 @@ u_char ifi_link_state; /* current link state */ u_char ifi_recvquota; /* polling quota for receive intrs */ u_char ifi_xmitquota; /* polling quota for xmit intrs */ + u_char ifi_datalen; /* length of this data struct */ u_long ifi_mtu; /* maximum transmission unit */ u_long ifi_metric; /* routing metric (external only) */ u_long ifi_baudrate; /* linespeed */ -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 02:16:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6834316A4CE; Wed, 1 Sep 2004 02:16:35 +0000 (GMT) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3856343D48; Wed, 1 Sep 2004 02:16:31 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.12.9p2/8.12.9) with ESMTP id i812GO6E031152; Wed, 1 Sep 2004 06:16:24 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.12.9p2/8.12.9/Submit) id i812GOxd031151; Wed, 1 Sep 2004 06:16:24 +0400 (MSD) (envelope-from yar) Date: Wed, 1 Sep 2004 06:16:24 +0400 From: Yar Tikhiy To: John Baldwin Message-ID: <20040901021623.GA30503@comp.chem.msu.su> References: <200408280839.i7S8dZpI097103@repoman.freebsd.org> <200408301141.00176.jhb@FreeBSD.org> <20040831050853.GA75766@comp.chem.msu.su> <200408311405.04310.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408311405.04310.jhb@FreeBSD.org> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/mbr Makefile mbr.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 02:16:35 -0000 On Tue, Aug 31, 2004 at 02:05:04PM -0400, John Baldwin wrote: > On Tuesday 31 August 2004 01:08 am, Yar Tikhiy wrote: > > On Mon, Aug 30, 2004 at 11:41:00AM -0400, John Baldwin wrote: > > > On Saturday 28 August 2004 04:39 am, Yar Tikhiy wrote: > > > > yar 2004-08-28 08:39:35 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/boot/i386/mbr Makefile mbr.s > > > > Log: > > > > Don't be too smart, just try packet mode of INT13 first. > > > > This way of operation is more robust than the "AI" used > > > > before. > > > > > > > > Add flags to mbr accessible from make.conf as BOOT_MBR_FLAGS. > > > > Only one flag is defined now, "allow using packet mode", which > > > > is 0x80 in accord with the rest of i386 boot code. The "packet" > > > > flag is on by default. > > > > > > > > PR: i386/70241 > > > > Submitted by: Valentin Nechayev netch.kiev.ua> (inital > > > > version) Discussed with: jhb (by Valentin Nechayev) > > > > Tested on: bochs (with EDD turned on or off by patching the > > > > BIOS), PCs > > > > > > > > Revision Changes Path > > > > 1.14 +4 -0 src/sys/boot/i386/mbr/Makefile > > > > 1.7 +6 -6 src/sys/boot/i386/mbr/mbr.s > > > > > > Hmm, there are no e-mails from me in the PR trail and I don't recall ever > > > be in favor of these changes (though I don't care enough to ask for them > > > to be backed out.. Only really old machines with pre-1995 BIOS should be > > > broken in theory.) It would be nice if you wouldn't claim that I > > > supported something that I didn't actually support though. > > > > John, I try to believe people as much as possible since that saves > > my time, and I believe Valentin Nechayev particularly because I know > > him quite well. Here are his words straight from the PR: > > > > %%% > > > > >Fix: > > > > Revert logic of selection between traditional and EDD reading mode > > to one which prefers EDD if available (as was in the same file in revisions > > 1.11 and 1.12). This is supported by John Baldwin (private conversation > > after thread in hackers@): > > ==={{{ > > The problem is that there are BIOS's out there that claim to support EDD > > but still don't work correctly. I don't remember all the details at this > > point, but I think it had to do with sysinstall not always being in sync > > with the BIOS about how sectors were in a cylinder. I guess though we > > could just turn EDD on by default in 5.x or perhaps 6.0. 5.x doesn't > > really run well on a 386 or even a 486, and that is the class of machine > > that has problems with EDD. > > ===}}} > > > > %%% > > > > I know it could be hard on memory to return to issues one used to > > work at in the past, so I decided not to bother you to confirm if > > that quote is actually yours. Please excuse me if it was a poor > > idea of mine. > > Hmm, maybe my memory is worse. I found some e-mails in my archive when I > searched but not this one. The quoted e-mail above is mine and is correct. > I guess I kind of forgot that this was a 6.0 change and 6.0 won't be out for > a while. My apologies for getting all jumpy. Never mind! :-) As for the technical side of this change, a user smart enough to install FreeBSD 6-CURRENT on such a broken/old machine should also be able to rebuild the boot blocks elsewhere with EDD support turned off and install such boot blocks on the antique machine through booting, e.g., from a floppy. OTOH, this change should save us from numerous PRs of the ``Can't boot FreeBSD from my new great 1Tb disk'' kind. Now the issue is the boot blocks in 5.x. Do you think they should be left untouched while the users should be advised to turn on the BIOS LBA mode on their disks in order to avoid strange geometries, e.g., sectors/track > 63? -- Yar From owner-cvs-src@FreeBSD.ORG Wed Sep 1 02:31:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7F4016A4CE; Wed, 1 Sep 2004 02:31:07 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id F26E143D2F; Wed, 1 Sep 2004 02:31:06 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id E2A9A6520F; Wed, 1 Sep 2004 03:31:04 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 49273-07; Wed, 1 Sep 2004 03:31:04 +0100 (BST) Received: from empiric.dek.spc.org (dhcp113.icir.org [192.150.187.113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3C953651F4; Wed, 1 Sep 2004 03:31:04 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id AEC7A62A0; Tue, 31 Aug 2004 19:31:01 -0700 (PDT) Date: Tue, 31 Aug 2004 19:31:00 -0700 From: Bruce M Simpson To: Max Laier Message-ID: <20040901023100.GA5634@empiric.icir.org> Mail-Followup-To: Max Laier , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408311804.i7VI4YtV070366@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408311804.i7VI4YtV070366@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/pf/pflogd pflogd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 02:31:07 -0000 On Tue, Aug 31, 2004 at 06:04:34PM +0000, Max Laier wrote: > Log: > Make pflogd(8) store pcap_sf_pkthdr instead of MD timeval contaminated > pcap_pkthdr. This makes /var/log/pflog standart compliant on 64bit archs. Please MT5 this change if at all possible... and many thanks! BMS From owner-cvs-src@FreeBSD.ORG Wed Sep 1 02:56:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F00F516A4CE; Wed, 1 Sep 2004 02:56:11 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5776443D2D; Wed, 1 Sep 2004 02:56:11 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 0C57F50BBB; Wed, 1 Sep 2004 11:56:10 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id B5C8E50B80; Wed, 1 Sep 2004 11:56:08 +0900 (JST) Date: Wed, 01 Sep 2004 11:56:08 +0900 Message-ID: <7mpt561yuv.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Scott Long In-Reply-To: <413356AB.5050306@freebsd.org> References: <200408301551.i7UFpY8V006948@repoman.freebsd.org> <413356AB.5050306@freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Sheldon Hearn Subject: Re: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 02:56:12 -0000 At Mon, 30 Aug 2004 10:32:43 -0600, Scott Long wrote: > > Log: > > MFC rev 1.31: regen > > > > Revision Changes Path > > 1.30.2.1 +146 -21 src/share/misc/pci_vendors > > I'm quite surprised that the CVS scripts didn't require you to > put an 'Approved by' line here. Is something broken? Hmm, I checked with same file, branch and log message in my repo, but it worked as I suppose. But the commit log proves something broken... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Wed Sep 1 03:00:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5542016A4CE; Wed, 1 Sep 2004 03:00:01 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05AEA43D1F; Wed, 1 Sep 2004 03:00:01 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from pooker.samsco.org (scottl@localhost [127.0.0.1]) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i812xfZK074406; Tue, 31 Aug 2004 20:59:41 -0600 (MDT) (envelope-from scottl@freebsd.org) Received: from localhost (scottl@localhost)i812xfGX074403; Tue, 31 Aug 2004 20:59:41 -0600 (MDT) (envelope-from scottl@freebsd.org) X-Authentication-Warning: pooker.samsco.org: scottl owned process doing -bs Date: Tue, 31 Aug 2004 20:59:41 -0600 (MDT) From: Scott Long Sender: scottl@pooker.samsco.org To: Jun Kuriyama In-Reply-To: <7mpt561yuv.wl@black.imgsrc.co.jp> Message-ID: <20040831205913.I59291@pooker.samsco.org> References: <200408301551.i7UFpY8V006948@repoman.freebsd.org> <413356AB.5050306@freebsd.org> <7mpt561yuv.wl@black.imgsrc.co.jp> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Sheldon Hearn Subject: Re: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 03:00:01 -0000 On Wed, 1 Sep 2004, Jun Kuriyama wrote: > At Mon, 30 Aug 2004 10:32:43 -0600, > Scott Long wrote: > > > Log: > > > MFC rev 1.31: regen > > > > > > Revision Changes Path > > > 1.30.2.1 +146 -21 src/share/misc/pci_vendors > > > > I'm quite surprised that the CVS scripts didn't require you to > > put an 'Approved by' line here. Is something broken? > > Hmm, I checked with same file, branch and log message in my repo, but > it worked as I suppose. But the commit log proves something broken... > > Maybe committing directly from freefall circumvents the checks? Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 1 03:09:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6181C16A4CE; Wed, 1 Sep 2004 03:09:35 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E66743D54; Wed, 1 Sep 2004 03:09:35 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 3A8B750BC8; Wed, 1 Sep 2004 12:09:34 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id E55FC50BE4; Wed, 1 Sep 2004 12:09:32 +0900 (JST) Date: Wed, 01 Sep 2004 12:09:32 +0900 Message-ID: <7moekq1y8j.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Scott Long In-Reply-To: <20040831205913.I59291@pooker.samsco.org> References: <200408301551.i7UFpY8V006948@repoman.freebsd.org> <413356AB.5050306@freebsd.org> <7mpt561yuv.wl@black.imgsrc.co.jp> <20040831205913.I59291@pooker.samsco.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: Jun Kuriyama cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Sheldon Hearn cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/share/misc pci_vendors X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 03:09:35 -0000 At Tue, 31 Aug 2004 20:59:41 -0600 (MDT), Scott Long wrote: > > Hmm, I checked with same file, branch and log message in my repo, but > > it worked as I suppose. But the commit log proves something broken... > > Maybe committing directly from freefall circumvents the checks? I understand freefall mounts /home/ncvs as readonly and we are allowed to commit via over ssh only. So I think we have only one commit method. # unless if sheldonh has a local shell access to repoman. :-) -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Wed Sep 1 03:12:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E02D516A4CE; Wed, 1 Sep 2004 03:12:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0AB943D1D; Wed, 1 Sep 2004 03:12:06 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i813C6XX087529; Wed, 1 Sep 2004 03:12:06 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i813C6gk087528; Wed, 1 Sep 2004 03:12:06 GMT (envelope-from kuriyama) Message-Id: <200409010312.i813C6gk087528@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 1 Sep 2004 03:12:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT commitcheck X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 03:12:07 -0000 kuriyama 2004-09-01 03:12:06 UTC FreeBSD src repository Modified files: . commitcheck Log: Avoid warning when cvs has only three numbers in its version string. Revision Changes Path 1.27 +1 -0 CVSROOT/commitcheck From owner-cvs-src@FreeBSD.ORG Wed Sep 1 05:06:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A30316A4D0; Wed, 1 Sep 2004 05:06:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D793B43D60; Wed, 1 Sep 2004 05:06:42 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8156g2L090658; Wed, 1 Sep 2004 05:06:42 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8156gJG090657; Wed, 1 Sep 2004 05:06:42 GMT (envelope-from kientzle) Message-Id: <200409010506.i8156gJG090657@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 1 Sep 2004 05:06:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 05:06:43 -0000 kientzle 2004-09-01 05:06:42 UTC FreeBSD src repository Modified files: lib/libarchive Makefile Log: Per Ruslan, bsd.lib.mk already has support for dynamically-generated .h files. This simplifies the Makefile here a bit and makes it behave better in a couple of situations. While I'm here, clean up some comments and try to improve the organization a bit. Thanks to: Ruslan Ermilov (The Marvelous Makefile Guru) Revision Changes Path 1.21 +11 -17 src/lib/libarchive/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 05:07:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 505EE16A4CF; Wed, 1 Sep 2004 05:07:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EFC143D5F; Wed, 1 Sep 2004 05:07:18 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8157I8h090701; Wed, 1 Sep 2004 05:07:18 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8157IcB090700; Wed, 1 Sep 2004 05:07:18 GMT (envelope-from kientzle) Message-Id: <200409010507.i8157IcB090700@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 1 Sep 2004 05:07:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 05:07:18 -0000 kientzle 2004-09-01 05:07:17 UTC FreeBSD src repository Modified files: lib/libarchive Makefile Log: Forced commit to remind me to... MFC after: 3 days Revision Changes Path 1.22 +0 -0 src/lib/libarchive/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 05:48:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBEB716A4CE; Wed, 1 Sep 2004 05:48:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD5A43D49; Wed, 1 Sep 2004 05:48:06 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i815m6ZM091860; Wed, 1 Sep 2004 05:48:06 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i815m6rO091859; Wed, 1 Sep 2004 05:48:06 GMT (envelope-from scottl) Message-Id: <200409010548.i815m6rO091859@repoman.freebsd.org> From: Scott Long Date: Wed, 1 Sep 2004 05:48:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/fsck_ffs dir.c fsck.h inode.c pass1.c pass2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 05:48:07 -0000 scottl 2004-09-01 05:48:06 UTC FreeBSD src repository Modified files: sbin/fsck_ffs dir.c fsck.h inode.c pass1.c pass2.c Log: Create DIP_SET() and IBLK_SET() macros to fix lvalue warnings. Inspired by: kan Revision Changes Path 1.29 +14 -14 src/sbin/fsck_ffs/dir.c 1.32 +15 -0 src/sbin/fsck_ffs/fsck.h 1.36 +18 -14 src/sbin/fsck_ffs/inode.c 1.42 +3 -3 src/sbin/fsck_ffs/pass1.c 1.25 +9 -9 src/sbin/fsck_ffs/pass2.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 06:10:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9673616A4CE; Wed, 1 Sep 2004 06:10:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 768D443D39; Wed, 1 Sep 2004 06:10:11 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i816ABBe092654; Wed, 1 Sep 2004 06:10:11 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i816ABTx092653; Wed, 1 Sep 2004 06:10:11 GMT (envelope-from des) Message-Id: <200409010610.i816ABTx092653@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 1 Sep 2004 06:10:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bfe if_bfe.c if_bfereg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 06:10:11 -0000 des 2004-09-01 06:10:11 UTC FreeBSD src repository Modified files: sys/dev/bfe if_bfe.c if_bfereg.h Log: Add PCI ID for the BCM4401-B0. Submitted by: krion MFC after: 3 days Revision Changes Path 1.16 +2 -0 src/sys/dev/bfe/if_bfe.c 1.4 +1 -0 src/sys/dev/bfe/if_bfereg.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 06:11:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5FDD16A4CE; Wed, 1 Sep 2004 06:11:22 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA77343D2F; Wed, 1 Sep 2004 06:11:22 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.42 (FreeBSD)) id 1C2OKo-0006Zd-QN; Wed, 01 Sep 2004 08:11:06 +0200 Date: Wed, 1 Sep 2004 08:11:06 +0200 From: Kirill Ponomarew To: Dag-Erling Smorgrav Message-ID: <20040901061106.GK573@voodoo.oberon.net> References: <200409010610.i816ABTx092653@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CgTrtGVSVGoxAIFj" Content-Disposition: inline In-Reply-To: <200409010610.i816ABTx092653@repoman.freebsd.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bfe if_bfe.c if_bfereg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 06:11:23 -0000 --CgTrtGVSVGoxAIFj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Sep 01, 2004 at 06:10:11AM +0000, Dag-Erling Smorgrav wrote: > des 2004-09-01 06:10:11 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/bfe if_bfe.c if_bfereg.h=20 > Log: > Add PCI ID for the BCM4401-B0. > =20 > Submitted by: krion > MFC after: 3 days Thank you very much ! -Kirill --CgTrtGVSVGoxAIFj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBNWf6QC1G6a60JuURAgdPAJ4onyiAlE9ghDGnZtzU04pdRlLlUACfUBPX dBy+0QRd8feFy/T9LTs5+Jg= =XTmc -----END PGP SIGNATURE----- --CgTrtGVSVGoxAIFj-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 06:42:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C2C616A4CE; Wed, 1 Sep 2004 06:42:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 507A143D46; Wed, 1 Sep 2004 06:42:02 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i816g2kk094070; Wed, 1 Sep 2004 06:42:02 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i816g2lK094069; Wed, 1 Sep 2004 06:42:02 GMT (envelope-from julian) Message-Id: <200409010642.i816g2lK094069@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 06:42:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_machdep.c src/sys/i386/include param.h src/sys/kern kern_idle.c kern_switch.c sched_4bsd.c subr_smp.c src/sys/sys smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 06:42:02 -0000 julian 2004-09-01 06:42:02 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c sys/i386/i386 mp_machdep.c sys/i386/include param.h sys/kern kern_idle.c kern_switch.c sched_4bsd.c subr_smp.c sys/sys smp.h Log: Give the 4bsd scheduler the ability to wake up idle processors when there is new work to be done. MFC after: 5 days Revision Changes Path 1.246 +0 -2 src/sys/amd64/amd64/mp_machdep.c 1.238 +0 -2 src/sys/i386/i386/mp_machdep.c 1.73 +0 -2 src/sys/i386/include/param.h 1.41 +18 -0 src/sys/kern/kern_idle.c 1.83 +33 -1 src/sys/kern/kern_switch.c 1.52 +59 -18 src/sys/kern/sched_4bsd.c 1.191 +135 -1 src/sys/kern/subr_smp.c 1.80 +6 -1 src/sys/sys/smp.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 06:51:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0C716A4CE; Wed, 1 Sep 2004 06:51:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ECD643D2D; Wed, 1 Sep 2004 06:51:43 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i816phoC094648; Wed, 1 Sep 2004 06:51:43 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i816phR2094647; Wed, 1 Sep 2004 06:51:43 GMT (envelope-from ru) Message-Id: <200409010651.i816phR2094647@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 1 Sep 2004 06:51:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/coda Makefile src/sys/modules/coda5 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 06:51:43 -0000 ru 2004-09-01 06:51:43 UTC FreeBSD src repository Modified files: sys/modules/coda Makefile sys/modules/coda5 Makefile Log: bsd.kmod.mk knows how to clean up opt_*.h files automatically, and has the necessary magic to create empty opt_*.h files. Revision Changes Path 1.16 +0 -5 src/sys/modules/coda/Makefile 1.4 +1 -3 src/sys/modules/coda5/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 07:12:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E486C16A4CE; Wed, 1 Sep 2004 07:12:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAED643D1F; Wed, 1 Sep 2004 07:12:24 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i817COhR095692; Wed, 1 Sep 2004 07:12:24 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i817COYo095691; Wed, 1 Sep 2004 07:12:24 GMT (envelope-from ru) Message-Id: <200409010712.i817COYo095691@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 1 Sep 2004 07:12:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/cp Makefile src/sys/modules/ctau Makefile src/sys/modules/cx Makefile src/sys/modules/if_ppp Makefile src/sys/modules/if_tap Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 07:12:25 -0000 ru 2004-09-01 07:12:24 UTC FreeBSD src repository Modified files: sys/modules/cp Makefile sys/modules/ctau Makefile sys/modules/cx Makefile sys/modules/if_ppp Makefile sys/modules/if_tap Makefile Log: Mechanically tidy up the contents of CLEANFILES:M*.h: kmod.mk automatically removes opt_*.h and if_*.h found in SRCS. Revision Changes Path 1.2 +1 -1 src/sys/modules/cp/Makefile 1.3 +1 -1 src/sys/modules/ctau/Makefile 1.4 +1 -1 src/sys/modules/cx/Makefile 1.32 +0 -2 src/sys/modules/if_ppp/Makefile 1.4 +1 -3 src/sys/modules/if_tap/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 07:39:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62EBD16A4CE; Wed, 1 Sep 2004 07:39:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4381E43D2F; Wed, 1 Sep 2004 07:39:13 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i817dDLY096472; Wed, 1 Sep 2004 07:39:13 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i817dDBV096471; Wed, 1 Sep 2004 07:39:13 GMT (envelope-from ru) Message-Id: <200409010739.i817dDBV096471@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 1 Sep 2004 07:39:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/pf Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 07:39:13 -0000 ru 2004-09-01 07:39:13 UTC FreeBSD src repository Modified files: sys/modules/pf Makefile Log: Removed -Wall from CFLAGS. Revision Changes Path 1.5 +1 -1 src/sys/modules/pf/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 07:53:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2006D16A4CE; Wed, 1 Sep 2004 07:53:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0044A43D3F; Wed, 1 Sep 2004 07:53:05 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i817r4XE096928; Wed, 1 Sep 2004 07:53:04 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i817r4FN096927; Wed, 1 Sep 2004 07:53:04 GMT (envelope-from alfred) Message-Id: <200409010753.i817r4FN096927@repoman.freebsd.org> From: Alfred Perlstein Date: Wed, 1 Sep 2004 07:53:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/autofs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 07:53:05 -0000 alfred 2004-09-01 07:53:04 UTC FreeBSD src repository Modified files: sys/modules/autofs Makefile Log: Cleanup paths. Submitted by: ru Revision Changes Path 1.2 +6 -4 src/sys/modules/autofs/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 08:08:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BFE616A4CE; Wed, 1 Sep 2004 08:08:14 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71BA943D2F; Wed, 1 Sep 2004 08:08:13 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i8186q08055268 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 1 Sep 2004 11:06:53 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i8186wAx015841; Wed, 1 Sep 2004 11:06:58 +0300 (EEST) (envelope-from ru) Date: Wed, 1 Sep 2004 11:06:58 +0300 From: Ruslan Ermilov To: Alfred Perlstein Message-ID: <20040901080658.GA406@ip.net.ua> References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> <20040831185918.GE31434@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <20040831185918.GE31434@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: Dag-Erling Sm?rgrav cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 08:08:14 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 31, 2004 at 11:59:18AM -0700, Alfred Perlstein wrote: > * Dag-Erling Sm?rgrav [040831 11:10] wrote: > > Alfred Perlstein writes: > > > Log: > > > Enter the autofs. > >=20 > > Ohh, shiny! But what's it for? The man pages are rather vague. >=20 > It's basically a better mechanism than using a loopback NFS mount > for amd. A lot quicker and a lot safer and offers better semantics. >=20 > I'll add more later, but for now check out: >=20 > http://www.usenix.org/publications/library/proceedings/cinci93/full_paper= s/callaghan.txt >=20 And what acts as automountd, or it's not ready yet? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBNYMiqRfpzJluFF4RAsh2AKCR2pN3Sh+LZj8jqMIMozPm4j04XACgkqX5 topkzLNkZA19vGritfM3R40= =LHfi -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 08:17:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 207D516A4CE; Wed, 1 Sep 2004 08:17:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02E9343D1D; Wed, 1 Sep 2004 08:17:21 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i818HKr6097831; Wed, 1 Sep 2004 08:17:20 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i818HKDx097830; Wed, 1 Sep 2004 08:17:20 GMT (envelope-from ru) Message-Id: <200409010817.i818HKDx097830@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 1 Sep 2004 08:17:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/lib/libstdc++ Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 08:17:21 -0000 ru 2004-09-01 08:17:20 UTC FreeBSD src repository Modified files: gnu/lib/libstdc++ Makefile Log: Add atomicity.cc to CLEANFILES. Revision Changes Path 1.52 +1 -0 src/gnu/lib/libstdc++/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 08:26:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79C8416A4CE; Wed, 1 Sep 2004 08:26:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CADD43D1F; Wed, 1 Sep 2004 08:26:39 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i818QdEx098079; Wed, 1 Sep 2004 08:26:39 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i818Qdm5098078; Wed, 1 Sep 2004 08:26:39 GMT (envelope-from scottl) Message-Id: <200409010826.i818Qdm5098078@repoman.freebsd.org> From: Scott Long Date: Wed, 1 Sep 2004 08:26:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/fsck_ffs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 08:26:39 -0000 scottl 2004-09-01 08:26:39 UTC FreeBSD src repository Modified files: sbin/fsck_ffs Makefile Log: Move back to WARNS=2 Revision Changes Path 1.16 +1 -1 src/sbin/fsck_ffs/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 09:01:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AD3016A4CE; Wed, 1 Sep 2004 09:01:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9DC43D5D; Wed, 1 Sep 2004 09:01:32 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8191WEu099279; Wed, 1 Sep 2004 09:01:32 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8191WpZ099278; Wed, 1 Sep 2004 09:01:32 GMT (envelope-from julian) Message-Id: <200409010901.i8191WpZ099278@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 09:01:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 09:01:32 -0000 julian 2004-09-01 09:01:32 UTC FreeBSD src repository Modified files: sys/i386/include param.h Log: Only turn preemption for 4bsd. it's still poison for ULE. Revision Changes Path 1.74 +3 -0 src/sys/i386/include/param.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 10:12:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E71A16A4CE; Wed, 1 Sep 2004 10:12:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D15B43D55; Wed, 1 Sep 2004 10:12:09 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81AC9b2002011; Wed, 1 Sep 2004 10:12:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81AC9FG002010; Wed, 1 Sep 2004 10:12:09 GMT (envelope-from scottl) Message-Id: <200409011012.i81AC9FG002010@repoman.freebsd.org> From: Scott Long Date: Wed, 1 Sep 2004 10:12:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 10:12:09 -0000 scottl 2004-09-01 10:12:08 UTC FreeBSD src repository Modified files: sys/i386/include param.h Log: Protect the PREEMPTION logic with #ifdef _KERNEL to fix the build. Revision Changes Path 1.75 +2 -0 src/sys/i386/include/param.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 11:02:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 732DA16A4CE; Wed, 1 Sep 2004 11:02:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5435143D5D; Wed, 1 Sep 2004 11:02:55 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81B2tsZ003409; Wed, 1 Sep 2004 11:02:55 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81B2tax003408; Wed, 1 Sep 2004 11:02:55 GMT (envelope-from tjr) Message-Id: <200409011102.i81B2tax003408@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 1 Sep 2004 11:02:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen glob.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 11:02:55 -0000 tjr 2004-09-01 11:02:55 UTC FreeBSD src repository Modified files: lib/libc/gen glob.3 Log: Back out the previous change. glob() still does use strcmp() to order pathnames. Revision Changes Path 1.29 +4 -4 src/lib/libc/gen/glob.3 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 11:20:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9309616A4CF; Wed, 1 Sep 2004 11:20:31 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC03B43D45; Wed, 1 Sep 2004 11:20:30 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i81BKRgc009674; Wed, 1 Sep 2004 14:20:28 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i81BKIMn051683; Wed, 1 Sep 2004 14:20:18 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost)i81BKIW7051678; Wed, 1 Sep 2004 14:20:18 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Wed, 1 Sep 2004 14:20:18 +0300 From: Giorgos Keramidas To: Julian Elischer Message-ID: <20040901112017.GA43387@orion.daedalusnetworks.priv> References: <200409010642.i816g2lK094069@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409010642.i816g2lK094069@repoman.freebsd.org> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_machdep.c src/sys/i386/include param.h src/sys/kern kern_idle.c kern_switch.c sched_4bsd.c subr_smp.c src/sys/sys smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 11:20:31 -0000 On 2004-09-01 06:42, Julian Elischer wrote: > Give the 4bsd scheduler the ability to wake up idle processors > when there is new work to be done. > 1.191 +135 -1 src/sys/kern/subr_smp.c This moved all_cpus in an #ifdef SMP which breaks the compilation on non-SPM systems: : linking kernel.debug : subr_smp.o(.text+0x1f): In function `mp_setvariables_for_up': : /usr/src/sys/kern/subr_smp.c:498: undefined reference to `all_cpus' : uma_core.o(.text+0x1ff): In function `zone_timeout': : /usr/src/sys/vm/uma_core.c:384: undefined reference to `all_cpus' : uma_core.o(.text+0x5e3): In function `cache_drain': : /usr/src/sys/vm/uma_core.c:610: undefined reference to `all_cpus' : uma_core.o(.text+0x6b3):/usr/src/sys/vm/uma_core.c:626: undefined reference to `all_cpus' : uma_core.o(.text+0x2fcb): In function `uma_print_zone': : /usr/src/sys/vm/uma_core.c:2660: undefined reference to `all_cpus' : uma_core.o(.text+0x314b):/usr/src/sys/vm/uma_core.c:2712: more undefined references to `all_cpus' follow : *** Error code 1 : : Stop in /usr/obj/usr/src/sys/ORION. If all_cpus is only meaningful in the #ifdef SMP case, the following diff seems necessary to unbreak the build of HEAD on non-SMP systems: %%% Index: sys/smp.h =================================================================== RCS file: /home/ncvs/src/sys/sys/smp.h,v retrieving revision 1.80 diff -u -r1.80 smp.h --- sys/smp.h 1 Sep 2004 06:42:02 -0000 1.80 +++ sys/smp.h 1 Sep 2004 11:14:29 -0000 @@ -65,7 +65,11 @@ * time, thus permitting us to configure sparse maps of cpuid-dependent * (per-CPU) structures. */ +#ifdef SMP #define CPU_ABSENT(x_cpu) ((all_cpus & (1 << (x_cpu))) == 0) +#else +#define CPU_ABSENT(x_cpu) (0) +#endif #ifdef SMP /* Index: kern/subr_smp.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_smp.c,v retrieving revision 1.191 diff -u -r1.191 subr_smp.c --- kern/subr_smp.c 1 Sep 2004 06:42:01 -0000 1.191 +++ kern/subr_smp.c 1 Sep 2004 11:12:38 -0000 @@ -495,7 +495,6 @@ { mp_ncpus = 1; mp_maxid = PCPU_GET(cpuid); - all_cpus = PCPU_GET(cpumask); KASSERT(PCPU_GET(cpuid) == 0, ("UP must have a CPU ID of zero")); } SYSINIT(cpu_mp_setvariables, SI_SUB_TUNABLES, SI_ORDER_FIRST, %%% From owner-cvs-src@FreeBSD.ORG Wed Sep 1 12:15:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7B0516A4CE; Wed, 1 Sep 2004 12:15:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA60F43D45; Wed, 1 Sep 2004 12:15:44 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81CFijP005321; Wed, 1 Sep 2004 12:15:44 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81CFiQ3005320; Wed, 1 Sep 2004 12:15:44 GMT (envelope-from sos) Message-Id: <200409011215.i81CFiQ3005320@repoman.freebsd.org> From: Søren Schmidt Date: Wed, 1 Sep 2004 12:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-chipset.c ata-disk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 12:15:45 -0000 sos 2004-09-01 12:15:44 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-disk.c Log: Cleanup the storing and printing of the device transfermode for SATA. Revision Changes Path 1.84 +9 -6 src/sys/dev/ata/ata-chipset.c 1.177 +3 -8 src/sys/dev/ata/ata-disk.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 13:14:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8BBD16A4D5; Wed, 1 Sep 2004 13:14:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDB7643D68; Wed, 1 Sep 2004 13:14:47 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81DElhs006918; Wed, 1 Sep 2004 13:14:47 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81DElEY006917; Wed, 1 Sep 2004 13:14:47 GMT (envelope-from den) Message-Id: <200409011314.i81DElEY006917@repoman.freebsd.org> From: Denis Peplin Date: Wed, 1 Sep 2004 13:14:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R/hardware/common dev.sgml src/release/doc/ru_RU.KOI8-R/hardware/sparc64install.sgml layout.sgml trouble.sgml src/release/doc/ru_RU.KOI8-R/readme... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 13:14:48 -0000 den 2004-09-01 13:14:47 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R/hardware/common dev.sgml release/doc/ru_RU.KOI8-R/hardware/sparc64 proc-sparc64.sgml release/doc/ru_RU.KOI8-R/installation/common install.sgml layout.sgml trouble.sgml release/doc/ru_RU.KOI8-R/readme article.sgml release/doc/ru_RU.KOI8-R/relnotes/common new.sgml release/doc/ru_RU.KOI8-R/relnotes/i386 Makefile Log: Merge from recent English versions MFC after: 2 days Revision Changes Path 1.3 +42 -103 src/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml 1.2 +8 -8 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.sgml 1.4 +117 -88 src/release/doc/ru_RU.KOI8-R/installation/common/install.sgml 1.3 +3 -3 src/release/doc/ru_RU.KOI8-R/installation/common/layout.sgml 1.2 +22 -40 src/release/doc/ru_RU.KOI8-R/installation/common/trouble.sgml 1.7 +5 -5 src/release/doc/ru_RU.KOI8-R/readme/article.sgml 1.7 +60 -48 src/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/relnotes/i386/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 1 13:33:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A487116A4CE; Wed, 1 Sep 2004 13:33:13 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C29E43D2D; Wed, 1 Sep 2004 13:33:13 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 197EF5C92C; Wed, 1 Sep 2004 06:33:13 -0700 (PDT) Date: Wed, 1 Sep 2004 06:33:13 -0700 From: Alfred Perlstein To: Ruslan Ermilov Message-ID: <20040901133313.GL31434@elvis.mu.org> References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> <20040831185918.GE31434@elvis.mu.org> <20040901080658.GA406@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040901080658.GA406@ip.net.ua> User-Agent: Mutt/1.4.2.1i cc: Dag-Erling Sm?rgrav cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 13:33:13 -0000 * Ruslan Ermilov [040901 01:08] wrote: > On Tue, Aug 31, 2004 at 11:59:18AM -0700, Alfred Perlstein wrote: > > * Dag-Erling Sm?rgrav [040831 11:10] wrote: > > > Alfred Perlstein writes: > > > > Log: > > > > Enter the autofs. > > > > > > Ohh, shiny! But what's it for? The man pages are rather vague. > > > > It's basically a better mechanism than using a loopback NFS mount > > for amd. A lot quicker and a lot safer and offers better semantics. > > > > I'll add more later, but for now check out: > > > > http://www.usenix.org/publications/library/proceedings/cinci93/full_papers/callaghan.txt > > > And what acts as automountd, or it's not ready yet? The newest amd works with Sun and Linux autofs, I will be working with them to make it support FreeBSD autofs. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 13:48:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E42D316A4CE; Wed, 1 Sep 2004 13:48:03 +0000 (GMT) Received: from mail.qubesoft.com (gate.qubesoft.com [217.169.36.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E13143D2D; Wed, 1 Sep 2004 13:48:03 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from bluebottle.qubesoft.com (bluebottle.qubesoft.com [192.168.1.2]) by mail.qubesoft.com (8.12.9/8.12.9) with ESMTP id i81Dm1GR087785; Wed, 1 Sep 2004 14:48:01 +0100 (BST) (envelope-from dfr@nlsystems.com) Received: from builder02.qubesoft.com (builder02.qubesoft.com [192.168.1.8]) i81Dlu80098291; Wed, 1 Sep 2004 14:48:01 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Wilko Bulte In-Reply-To: <20040831203807.GA60718@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> Content-Type: text/plain Message-Id: <1094046475.31688.0.camel@builder02.qubesoft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 01 Sep 2004 14:47:55 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Warner Losh cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 13:48:04 -0000 On Tue, 2004-08-31 at 21:38, Wilko Bulte wrote: > On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > > imp 2004-08-31 20:37:10 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/fdc fdc_isa.c > > Log: > > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, > > ENOENT when there's no PNP ID for this device node, or ENXIO when there > > is one, but it doesn't match. > > > > In the nonPNP case (as most Alpha systems appear to be), we were > > I think no Alpha has PNP. All alphas with ISA busses support ISA PnP. I used to use it with an old ISA PnP sound card in my 164lx. From owner-cvs-src@FreeBSD.ORG Wed Sep 1 13:49:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FC2616A4CE; Wed, 1 Sep 2004 13:49:07 +0000 (GMT) Received: from mail.qubesoft.com (gate.qubesoft.com [217.169.36.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAA4543D5F; Wed, 1 Sep 2004 13:49:06 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from bluebottle.qubesoft.com (bluebottle.qubesoft.com [192.168.1.2]) by mail.qubesoft.com (8.12.9/8.12.9) with ESMTP id i81Dn5GR087823; Wed, 1 Sep 2004 14:49:05 +0100 (BST) (envelope-from dfr@nlsystems.com) Received: from builder02.qubesoft.com (builder02.qubesoft.com [192.168.1.8]) i81Dn480098430; Wed, 1 Sep 2004 14:49:05 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: "M. Warner Losh" In-Reply-To: <20040831.144236.117916474.imp@bsdimp.com> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> <20040831.144236.117916474.imp@bsdimp.com> Content-Type: text/plain Message-Id: <1094046544.31688.2.camel@builder02.qubesoft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 01 Sep 2004 14:49:04 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: wb@freebie.xs4all.nl cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 13:49:07 -0000 On Tue, 2004-08-31 at 21:42, M. Warner Losh wrote: > In message: <20040831203807.GA60718@freebie.xs4all.nl> > Wilko Bulte writes: > : On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > : > imp 2004-08-31 20:37:10 UTC > : > > : > FreeBSD src repository > : > > : > Modified files: > : > sys/dev/fdc fdc_isa.c > : > Log: > : > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, > : > ENOENT when there's no PNP ID for this device node, or ENXIO when there > : > is one, but it doesn't match. > : > > : > In the nonPNP case (as most Alpha systems appear to be), we were > : > : I think no Alpha has PNP. > > Makes sense. The Floppy controller usually shows up in the PNP BIOS > or ACPI tables. I do believe that Alpha supports the ISA PNP, > however, for add-in cards. We map both PNP BIOS and ISA PNP into the > same thing (which is probed with ISA_PNP_PROBE). There is also a hardware list which SRM has that we could use to imitate PnP bios if someone could be bothered to figure out the format. From owner-cvs-src@FreeBSD.ORG Wed Sep 1 14:04:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 977AE16A4CE; Wed, 1 Sep 2004 14:04:47 +0000 (GMT) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id E93B543D4C; Wed, 1 Sep 2004 14:04:46 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i81E4bMx004833; Wed, 1 Sep 2004 17:04:42 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i81E4ObH006810; Wed, 1 Sep 2004 17:04:24 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost)i81E4OHv006809; Wed, 1 Sep 2004 17:04:24 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Wed, 1 Sep 2004 17:04:24 +0300 From: Giorgos Keramidas To: Julian Elischer Message-ID: <20040901140424.GA6322@orion.daedalusnetworks.priv> References: <200409010642.i816g2lK094069@repoman.freebsd.org> <20040901112017.GA43387@orion.daedalusnetworks.priv> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040901112017.GA43387@orion.daedalusnetworks.priv> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_machdep.c src/sys/i386/include param.h src/sys/kern kern_idle.c kern_switch.c sched_4bsd.c subr_smp.c src/sys/sys smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 14:04:47 -0000 On 2004-09-01 14:20, Giorgos Keramidas wrote: > On 2004-09-01 06:42, Julian Elischer wrote: > > 1.191 +135 -1 src/sys/kern/subr_smp.c > > This moved all_cpus in an #ifdef SMP which breaks the compilation on > non-SPM systems: [...] > > If all_cpus is only meaningful in the #ifdef SMP case, the following > diff seems necessary to unbreak the build of HEAD on non-SMP systems: [...] Hmmm, now that I look at sys/smp.h the all_cpus and nearby externs should be moved inside #ifdef SMP too to match the changes of 1.191 subr_smp.c: %%% Index: sys/smp.h =================================================================== RCS file: /home/ncvs/src/sys/sys/smp.h,v retrieving revision 1.80 diff -u -r1.80 smp.h --- sys/smp.h 1 Sep 2004 06:42:02 -0000 1.80 +++ sys/smp.h 1 Sep 2004 14:00:30 -0000 @@ -49,23 +49,26 @@ extern int smp_cpus; extern volatile cpumask_t started_cpus; extern volatile cpumask_t stopped_cpus; +extern cpumask_t all_cpus; +extern cpumask_t idle_cpus_mask; +extern cpumask_t hlt_cpus_mask; +extern cpumask_t logical_cpus_mask; #endif /* SMP */ extern u_int mp_maxid; extern int mp_ncpus; extern volatile int smp_started; -extern cpumask_t all_cpus; -extern cpumask_t idle_cpus_mask; -extern cpumask_t hlt_cpus_mask; -extern cpumask_t logical_cpus_mask; - /* * Macro allowing us to determine whether a CPU is absent at any given * time, thus permitting us to configure sparse maps of cpuid-dependent * (per-CPU) structures. */ +#ifdef SMP #define CPU_ABSENT(x_cpu) ((all_cpus & (1 << (x_cpu))) == 0) +#else +#define CPU_ABSENT(x_cpu) (0) +#endif #ifdef SMP /* Index: kern/subr_smp.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_smp.c,v retrieving revision 1.191 diff -u -r1.191 subr_smp.c --- kern/subr_smp.c 1 Sep 2004 06:42:01 -0000 1.191 +++ kern/subr_smp.c 1 Sep 2004 11:12:38 -0000 @@ -495,7 +495,6 @@ { mp_ncpus = 1; mp_maxid = PCPU_GET(cpuid); - all_cpus = PCPU_GET(cpumask); KASSERT(PCPU_GET(cpuid) == 0, ("UP must have a CPU ID of zero")); } SYSINIT(cpu_mp_setvariables, SI_SUB_TUNABLES, SI_ORDER_FIRST, %%% From owner-cvs-src@FreeBSD.ORG Wed Sep 1 14:17:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4870516A4CE; Wed, 1 Sep 2004 14:17:23 +0000 (GMT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB4D943D4C; Wed, 1 Sep 2004 14:17:22 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i81EHHeA037657; Wed, 1 Sep 2004 16:17:18 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i81EHHRi065451; Wed, 1 Sep 2004 16:17:17 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i81EHHLg065450; Wed, 1 Sep 2004 16:17:17 +0200 (CEST) (envelope-from wb) Date: Wed, 1 Sep 2004 16:17:17 +0200 From: Wilko Bulte To: Doug Rabson Message-ID: <20040901141717.GA65267@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> <20040831.144236.117916474.imp@bsdimp.com> <1094046544.31688.2.camel@builder02.qubesoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1094046544.31688.2.camel@builder02.qubesoft.com> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 14:17:23 -0000 On Wed, Sep 01, 2004 at 02:49:04PM +0100, Doug Rabson wrote.. > On Tue, 2004-08-31 at 21:42, M. Warner Losh wrote: > > In message: <20040831203807.GA60718@freebie.xs4all.nl> > > Wilko Bulte writes: > > : On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > > : > imp 2004-08-31 20:37:10 UTC > > : > > > : > FreeBSD src repository > > : > > > : > Modified files: > > : > sys/dev/fdc fdc_isa.c > > : > Log: > > : > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, > > : > ENOENT when there's no PNP ID for this device node, or ENXIO when there > > : > is one, but it doesn't match. > > : > > > : > In the nonPNP case (as most Alpha systems appear to be), we were > > : > > : I think no Alpha has PNP. > > > > Makes sense. The Floppy controller usually shows up in the PNP BIOS > > or ACPI tables. I do believe that Alpha supports the ISA PNP, > > however, for add-in cards. We map both PNP BIOS and ISA PNP into the > > same thing (which is probed with ISA_PNP_PROBE). > > There is also a hardware list which SRM has that we could use to imitate > PnP bios if someone could be bothered to figure out the format. I think the starting point should be the Tru64 Device Driers guide (or whatever the thing is called). -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Sep 1 14:36:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B99C16A4CE; Wed, 1 Sep 2004 14:36:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1685243D46; Wed, 1 Sep 2004 14:36:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81EamOm009366; Wed, 1 Sep 2004 14:36:48 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81EamiE009365; Wed, 1 Sep 2004 14:36:48 GMT (envelope-from ru) Message-Id: <200409011436.i81EamiE009365@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 1 Sep 2004 14:36:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile.inc.docports X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 14:36:49 -0000 ru 2004-09-01 14:36:48 UTC FreeBSD src repository Modified files: release Makefile.inc.docports Log: Tidy up the list of docproj dependencies. Here comes a long explanation... This makefile tries to be smart in determining the minimal list of ports comprising the docproj meta-port, necessary to build the FreeBSD documentation and release notes. To get it absolutely right, it would have to generate the list at run time, parsing the output of "make all-depends-list" for ports/textproc/docproj, supplying the same options like in src/release/Makefile, and trying for different platforms and FreeBSD versions! Besides from the complexity involved, this is just not possible to do from here, because the ports tree may be not up-to-date or not be available at all -- it's not required to have a checked out ports tree to start "make release". So makefile copies some logic from the ports system to try to come up with the right list... Unfortunately, it's nearly impossible nor practical to come up with a proper and complete list from here this way. Such a list would have to support all possible __FreeBSD_version's, Perl versions, and so on, and their combinations -- everything that the ports system would do. The fix is to stop pretending be smart, and only provide lists enough to build a docproj port on recent of 4.x, 5.x, and 6.x systems, where this is practical. What can break with this change is "make release -DNOPORTS" of HEAD or RELENG_5, *without* -DNODOC, on older FreeBSD systems like 5.1-RELEASE. The change in the docproj dependency list between 5.1 and 5.3 is as follows: # diff docports.501000 docports.503000 < /usr/ports/devel/p5-File-Temp < /usr/ports/devel/p5-Test-Harness < /usr/ports/devel/p5-Test-Simple < /usr/ports/lang/perl5 > /usr/ports/lang/perl5.8 Since doing "make release" on these old systems is not officially supported anyway (only one tiny tweak is necessary to make it work), the practical damage of this change is zero. Original problem spotted by Scott Long doing "make release -DNOPORTS RELEASETAG=RELENG_5". That particular problem was already fixed by the previous change to this file, while this change is the result of some additional analyzis of the problem. Fix was tested by doing a "make release -DNOPORTS" of HEAD on the 4.10-STABLE machine (with one small tweak I mentioned, to make it possible). Revision Changes Path 1.26 +19 -20 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Wed Sep 1 14:44:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23B6416A4CE; Wed, 1 Sep 2004 14:44:19 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 012AB43D1D; Wed, 1 Sep 2004 14:44:19 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i81Egvlu086176 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 1 Sep 2004 17:42:58 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i81Eh4J9015282; Wed, 1 Sep 2004 17:43:04 +0300 (EEST) (envelope-from ru) Date: Wed, 1 Sep 2004 17:43:04 +0300 From: Ruslan Ermilov To: Alfred Perlstein Message-ID: <20040901144304.GB15185@ip.net.ua> References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> <20040831185918.GE31434@elvis.mu.org> <20040901080658.GA406@ip.net.ua> <20040901133313.GL31434@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tjCHc7DPkfUGtrlw" Content-Disposition: inline In-Reply-To: <20040901133313.GL31434@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: Dag-Erling Sm?rgrav cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 14:44:20 -0000 --tjCHc7DPkfUGtrlw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 01, 2004 at 06:33:13AM -0700, Alfred Perlstein wrote: > * Ruslan Ermilov [040901 01:08] wrote: > > On Tue, Aug 31, 2004 at 11:59:18AM -0700, Alfred Perlstein wrote: > > > * Dag-Erling Sm?rgrav [040831 11:10] wrote: > > > > Alfred Perlstein writes: > > > > > Log: > > > > > Enter the autofs. > > > >=20 > > > > Ohh, shiny! But what's it for? The man pages are rather vague. > > >=20 > > > It's basically a better mechanism than using a loopback NFS mount > > > for amd. A lot quicker and a lot safer and offers better semantics. > > >=20 > > > I'll add more later, but for now check out: > > >=20 > > > http://www.usenix.org/publications/library/proceedings/cinci93/full_p= apers/callaghan.txt > > >=20 > > And what acts as automountd, or it's not ready yet? >=20 > The newest amd works with Sun and Linux autofs, I will be working with > them to make it support FreeBSD autofs. >=20 Just to make it clear: it's not yet possible to use autofs in FreeBSD? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --tjCHc7DPkfUGtrlw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBNd/3qRfpzJluFF4RAqvIAKCc7GCGaoHHq4O5zfDOQUSnrh9ryACfcU9y QsON8X6HGVEN+3ljuhJRnFg= =24hZ -----END PGP SIGNATURE----- --tjCHc7DPkfUGtrlw-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 15:14:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DC9E16A4CE; Wed, 1 Sep 2004 15:14:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F1F243D2F; Wed, 1 Sep 2004 15:14:14 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81FEER6010962; Wed, 1 Sep 2004 15:14:14 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81FEEPJ010961; Wed, 1 Sep 2004 15:14:14 GMT (envelope-from brooks) Message-Id: <200409011514.i81FEEPJ010961@repoman.freebsd.org> From: Brooks Davis Date: Wed, 1 Sep 2004 15:14:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 15:14:14 -0000 brooks 2004-09-01 15:14:14 UTC FreeBSD src repository Modified files: . UPDATING Log: Add warnings about ifconfig incompatabilities caused by the addition of ifi_epoch. Revision Changes Path 1.353 +9 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Wed Sep 1 15:19:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 949A416A4CF; Wed, 1 Sep 2004 15:19:35 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F3C343D55; Wed, 1 Sep 2004 15:19:35 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i81FJtRO024758; Wed, 1 Sep 2004 08:19:55 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i81FJtHL024757; Wed, 1 Sep 2004 08:19:55 -0700 Date: Wed, 1 Sep 2004 08:19:55 -0700 From: Brooks Davis To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040901151955.GC20311@odin.ac.hmc.edu> References: <200409011514.i81FEEPJ010961@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aT9PWwzfKXlsBJM1" Content-Disposition: inline In-Reply-To: <200409011514.i81FEEPJ010961@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 15:19:35 -0000 --aT9PWwzfKXlsBJM1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 01, 2004 at 03:14:14PM +0000, Brooks Davis wrote: > brooks 2004-09-01 15:14:14 UTC >=20 > FreeBSD src repository >=20 > Modified files: > . UPDATING=20 > Log: > Add warnings about ifconfig incompatabilities caused by the addition of > ifi_epoch. I've discussed this briefly with scottl and what we're going to do is get peter's routing socket ABI stabalization patch in today and then MFC according to the rules. That will mean three more days of breakage, but when it's done future changes won't have this kind of impact. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --aT9PWwzfKXlsBJM1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBNeibXY6L6fI4GtQRAnKxAKC9paBkEo7NljF3g2zMGYCX//3WjACfdRVY FZ0WlNLOulcYjZOafS5U3/8= =s9n2 -----END PGP SIGNATURE----- --aT9PWwzfKXlsBJM1-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 16:31:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 006B316A4CE; Wed, 1 Sep 2004 16:31:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D453743D2F; Wed, 1 Sep 2004 16:31:43 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81GVhDc014112; Wed, 1 Sep 2004 16:31:43 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81GVhb0014111; Wed, 1 Sep 2004 16:31:43 GMT (envelope-from kensmith) Message-Id: <200409011631.i81GVhb0014111@repoman.freebsd.org> From: Ken Smith Date: Wed, 1 Sep 2004 16:31:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/etc/rc.d routed X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 16:31:44 -0000 kensmith 2004-09-01 16:31:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/rc.d routed Log: MFC v1.11: Protect command flags set in the rc.conf files in case they're more than one word, adding some quotes. Reviewed by: mtm Approved by: re (scottl) Revision Changes Path 1.10.2.1 +1 -1 src/etc/rc.d/routed From owner-cvs-src@FreeBSD.ORG Wed Sep 1 16:58:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EBDD16A4CE; Wed, 1 Sep 2004 16:58:27 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2577243D53; Wed, 1 Sep 2004 16:58:27 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 13A5D5C930; Wed, 1 Sep 2004 09:58:27 -0700 (PDT) Date: Wed, 1 Sep 2004 09:58:27 -0700 From: Alfred Perlstein To: Ruslan Ermilov Message-ID: <20040901165827.GM31434@elvis.mu.org> References: <200408311626.i7VGQ1Fx067559@repoman.freebsd.org> <20040831185918.GE31434@elvis.mu.org> <20040901080658.GA406@ip.net.ua> <20040901133313.GL31434@elvis.mu.org> <20040901144304.GB15185@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040901144304.GB15185@ip.net.ua> User-Agent: Mutt/1.4.2.1i cc: Dag-Erling Sm?rgrav cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libautofs Makefile libautofs.3 libautofs.c libautofs.h src/sbin/mount_autofs Makefile mount_autofs.8 mount_autofs.c src/sys/fs/autofs Makefile autofs.h autofs_util.c autofs_vfsops.c autofs_vnops.c src/share/man/man5 autofs.5 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 16:58:27 -0000 * Ruslan Ermilov [040901 07:44] wrote: > On Wed, Sep 01, 2004 at 06:33:13AM -0700, Alfred Perlstein wrote: > > * Ruslan Ermilov [040901 01:08] wrote: > > > On Tue, Aug 31, 2004 at 11:59:18AM -0700, Alfred Perlstein wrote: > > > > * Dag-Erling Sm?rgrav [040831 11:10] wrote: > > > > > Alfred Perlstein writes: > > > > > > Log: > > > > > > Enter the autofs. > > > > > > > > > > Ohh, shiny! But what's it for? The man pages are rather vague. > > > > > > > > It's basically a better mechanism than using a loopback NFS mount > > > > for amd. A lot quicker and a lot safer and offers better semantics. > > > > > > > > I'll add more later, but for now check out: > > > > > > > > http://www.usenix.org/publications/library/proceedings/cinci93/full_papers/callaghan.txt > > > > > > > And what acts as automountd, or it's not ready yet? > > > > The newest amd works with Sun and Linux autofs, I will be working with > > them to make it support FreeBSD autofs. > > > Just to make it clear: it's not yet possible to use autofs in FreeBSD? I would say you can play with it, but no application written other than what's in /usr/share/examples/autofs actually uses it. Go ahead and compile what's in /usr/share/examples/autofs/driver/ and play around... :) I plan on getting amd integration taken care of over the next couple of weeks. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 17:20:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EDA516A4D2; Wed, 1 Sep 2004 17:20:25 +0000 (GMT) Received: from hotmail.com (bay11-dav36.bay11.hotmail.com [64.4.39.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA2A043D5A; Wed, 1 Sep 2004 17:20:22 +0000 (GMT) (envelope-from dsnofe@msn.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 1 Sep 2004 10:20:21 -0700 Received: from 222.64.53.190 by bay11-dav36.bay11.hotmail.com with DAV; Wed, 01 Sep 2004 17:20:21 +0000 X-Originating-IP: [222.64.53.190] X-Originating-Email: [dsnofe@msn.com] X-Sender: dsnofe@msn.com Date: Thu, 02 Sep 2004 01:20:22 +0800 From: Deng XueFeng To: Julian Elischer In-Reply-To: <200409010901.i8191WpZ099278@repoman.freebsd.org> References: <200409010901.i8191WpZ099278@repoman.freebsd.org> Message-Id: <20040902011949.E860.DSNOFE@msn.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.11.02 [CN] X-OriginalArrivalTime: 01 Sep 2004 17:20:21.0784 (UTC) FILETIME=[F6055980:01C49047] cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 17:20:25 -0000 opt_sched.h is missing. please add it. thanks. Sincerely, Deng XueFeng MSN: dsnofe@msn.com http://www.dengh.com From owner-cvs-src@FreeBSD.ORG Wed Sep 1 17:35:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7976A16A4CE; Wed, 1 Sep 2004 17:35:05 +0000 (GMT) Received: from mail.vicor-nb.com (bigwoop.vicor-nb.com [208.206.78.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4504643D1D; Wed, 1 Sep 2004 17:35:05 +0000 (GMT) (envelope-from julian@elischer.org) Received: from elischer.org (julian.vicor-nb.com [208.206.78.97]) by mail.vicor-nb.com (Postfix) with ESMTP id 2CE327A3E1; Wed, 1 Sep 2004 10:35:05 -0700 (PDT) Message-ID: <41360848.9000102@elischer.org> Date: Wed, 01 Sep 2004 10:35:04 -0700 From: Julian Elischer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030516 X-Accept-Language: en, hu MIME-Version: 1.0 To: Brooks Davis References: <200409011514.i81FEEPJ010961@repoman.freebsd.org> In-Reply-To: <200409011514.i81FEEPJ010961@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 17:35:05 -0000 no, how about rebverting the commit as requested by RE and doing it again in a way that doesn't break upgrading over the net? Brooks Davis wrote: >brooks 2004-09-01 15:14:14 UTC > > FreeBSD src repository > > Modified files: > . UPDATING > Log: > Add warnings about ifconfig incompatabilities caused by the addition of > ifi_epoch. > > Revision Changes Path > 1.353 +9 -0 src/UPDATING > > From owner-cvs-src@FreeBSD.ORG Wed Sep 1 17:38:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D20B16A4CE; Wed, 1 Sep 2004 17:38:29 +0000 (GMT) Received: from odot.okladot.state.ok.us (odot.okladot.state.ok.us [192.149.244.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39B4E43D48; Wed, 1 Sep 2004 17:38:28 +0000 (GMT) (envelope-from root@techpc04.okladot.state.ok.us) Received: from notes9c.okladot.state.ok.us (notes9c.okladot.state.ok.us [10.36.36.31])MAA41706; Wed, 1 Sep 2004 12:38:25 -0500 Received: from isdmon2.okladot.state.ok.us ([192.149.244.24]) by notes9c.okladot.state.ok.us (Lotus Domino Release 6.5.1) with ESMTP id 2004090112390865-53359 ; Wed, 1 Sep 2004 12:39:08 -0500 Received: from techpc04.okladot.state.ok.us (techpc04.okladot.state.ok.us [199.27.9.37])i81HbKPA010345; Wed, 1 Sep 2004 12:37:21 -0500 (CDT) (envelope-from root@techpc04.okladot.state.ok.us) Received: by techpc04.okladot.state.ok.us (Postfix, from userid 0) id 91A435C8A; Wed, 1 Sep 2004 12:37:15 -0500 (CDT) To: "Julian Elischer" , "Scott Long" From: "Paul Seniura" Errors-To: "Paul Seniura" Sender: "Paul Seniura" In-Reply-To: <200409010901.i8191WpZ099278@repoman.freebsd.org> <200409011012.i81AC9FG002010@repoman.freebsd.org> References: <200409010901.i8191WpZ099278@repoman.freebsd.org> <200409011012.i81AC9FG002010@repoman.freebsd.org> Message-Id: <20040901173715.91A435C8A@techpc04.okladot.state.ok.us> Date: Wed, 1 Sep 2004 12:37:15 -0500 (CDT) X-ODOT-MailScanner-Information: Please contact the Help Desk for more information X-ODOT-MailScanner: This E-mail appears not to contain malware. X-ODOT-MailScanner-SpamCheck: not spam (whitelisted), SpamAssassin (score=-8.6, required 5, BAYES_01 -6.60, IN_REP_TO -3.20, J_CHICKENPOX_51 1.00, RCVD_IN_ORBS 0.12, TW_DF 0.08) X-MIMETrack: Itemize by SMTP Server on Notes9c/ODOT(Release 6.5.1|January 21, 2004) at 09/01/2004 12:39:08 PM,at 09/01/2004 12:39:09 PM, Serialize complete at 09/01/2004 12:39:09 PM cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paul Seniura List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 17:38:29 -0000 Hi, Building modules-with-world has been broken by these commits (v1.74 & v1.75 of src/sys/i386/include/param.h). Scott's v1.75 patch is insufficient to fix this. Here's a snip of my log with v1.75: [...] ===> 3dfx rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/contrib/altq -I@/../include /src/sys/modules/3dfx/../../dev/tdfx/tdfx_pci.c In file included from @/sys/param.h:109, from /src/sys/modules/3dfx/../../dev/tdfx/tdfx_pci.c:42: ./machine/param.h:102:23: opt_sched.h: No such file or directory mkdep: compile failed *** Error code 1 (continuing) `depend' not remade because of errors. ===> aac rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/contrib/altq -I@/../include /src/sys/modules/aac/../../dev/aac/aac.c /src/sys/modules/aac/../../dev/aac/aac_pci.c /src/sys/modules/aac/../../dev/aac/aac_disk.c /src/sys/modules/aac/../../dev/aac/aac_cam.c In file included from @/sys/param.h:109, from /src/sys/modules/aac/../../dev/aac/aac.c:40: ./machine/param.h:102:23: opt_sched.h: No such file or directory In file included from @/sys/param.h:109, from /src/sys/modules/aac/../../dev/aac/aac_pci.c:39: ./machine/param.h:102:23: opt_sched.h: No such file or directory In file included from @/sys/param.h:109, from /src/sys/modules/aac/../../dev/aac/aac_disk.c:35: ./machine/param.h:102:23: opt_sched.h: No such file or directory In file included from @/sys/param.h:109, from /src/sys/modules/aac/../../dev/aac/aac_cam.c:36: ./machine/param.h:102:23: opt_sched.h: No such file or directory mkdep: compile failed *** Error code 1 (continuing) `depend' not remade because of errors. ===> accf_data rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/contrib/altq -I@/../include /src/sys/modules/accf_data/../../netinet/accf_data.c In file included from @/sys/param.h:109, from /src/sys/modules/accf_data/../../netinet/accf_data.c:31: ./machine/param.h:102:23: opt_sched.h: No such file or directory mkdep: compile failed *** Error code 1 (continuing) `depend' not remade because of errors. ===> accf_http [...] I'm able to build a kernel with v1.75 just fine (I'm about to do that and test it RSN :) ). Going back to v1.73 or v1.72 of src/sys/i386/include/param.h _will_ allow building modules-with-world. v1.73 of course has #define PREEMPTION with no wrapping logic at all, and v1.72 does not define it at all period. v1.73 seems to therefore define it such that other modules can pick it up when building modules-with-world, and would be more in-sync with the kernel build this way. My World is current as of yesterday's CTM deltas; since the deltas are 16-hours apart, no time for today's delta to be built & installed -- and now that's not going to happen until src/sys/i386/include/param.h is fixed properly. ;) I've gone on record here on this list requesting the official tinderboxes attempt building modules-with-world at least once every run and pass the reports up the usual way. The puny p2 box I'm using seems to be the only tinderbox doing "modules-with-world". Hint hint. ;) Thank you & everyone for the work going into PREEMPTION and everything else. -- thx, Paul Seniura System Specialist State of Okla. D.O.T. From owner-cvs-src@FreeBSD.ORG Wed Sep 1 17:59:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD87116A4CE; Wed, 1 Sep 2004 17:59:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE01C43D2F; Wed, 1 Sep 2004 17:59:29 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81HxTjR016630; Wed, 1 Sep 2004 17:59:29 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81HxT9I016629; Wed, 1 Sep 2004 17:59:29 GMT (envelope-from njl) Message-Id: <200409011759.i81HxT9I016629@repoman.freebsd.org> From: Nate Lawson Date: Wed, 1 Sep 2004 17:59:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 17:59:30 -0000 njl 2004-09-01 17:59:29 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Disable links after getting the possible resources. Even though _DIS should only affect current resources, it seems best to wait until all configuration is done before disabling it. If this fixes any problems, it is a MT5 candidate. Revision Changes Path 1.29 +12 -12 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 18:01:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B2916A4FB; Wed, 1 Sep 2004 18:01:47 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id B445043D41; Wed, 1 Sep 2004 18:01:44 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.201] ([192.168.0.201]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i81I1MK7077738; Wed, 1 Sep 2004 12:01:23 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <41360DE2.2010406@samsco.org> Date: Wed, 01 Sep 2004 11:58:58 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040831 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Julian Elischer References: <200409011514.i81FEEPJ010961@repoman.freebsd.org> <41360848.9000102@elischer.org> In-Reply-To: <41360848.9000102@elischer.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 18:01:47 -0000 Julian Elischer wrote: > no, how about rebverting the commit as requested by RE and doing it > again in a way > that doesn't break upgrading over the net? > I didn't ask Brooks to revert it. We discussed this in private (as he mentioned on current@) and have come up with a solution. Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 1 18:04:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C0E816A4CE; Wed, 1 Sep 2004 18:04:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D13943D39; Wed, 1 Sep 2004 18:04:23 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81I4Mto016866; Wed, 1 Sep 2004 18:04:22 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81I4M2E016865; Wed, 1 Sep 2004 18:04:22 GMT (envelope-from alc) Message-Id: <200409011804.i81I4M2E016865@repoman.freebsd.org> From: Alan Cox Date: Wed, 1 Sep 2004 18:04:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 18:04:23 -0000 alc 2004-09-01 18:04:22 UTC FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: Modify pmap_pte() to support its use on non-current, non-kernel pmaps without holding Giant. Revision Changes Path 1.499 +22 -2 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 18:05:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D3D416A4CE; Wed, 1 Sep 2004 18:05:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EF5443D53; Wed, 1 Sep 2004 18:05:43 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81I5hxi016994; Wed, 1 Sep 2004 18:05:43 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81I5hlb016993; Wed, 1 Sep 2004 18:05:43 GMT (envelope-from julian) Message-Id: <200409011805.i81I5hlb016993@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 18:05:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_smp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 18:05:43 -0000 julian 2004-09-01 18:05:43 UTC FreeBSD src repository Modified files: sys/kern subr_smp.c Log: *Blush* forgot to test non SMP builds.. oddly enough some UP code (particularly in the acpi code) seems to want this in a UP build. (I guess so you can have a sigle kernel module that works for both) Revision Changes Path 1.192 +2 -1 src/sys/kern/subr_smp.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 18:22:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02DBD16A4CE; Wed, 1 Sep 2004 18:22:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D717243D45; Wed, 1 Sep 2004 18:22:14 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81IMEF0017603; Wed, 1 Sep 2004 18:22:14 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81IMERb017602; Wed, 1 Sep 2004 18:22:14 GMT (envelope-from brooks) Message-Id: <200409011822.i81IMERb017602@repoman.freebsd.org> From: Brooks Davis Date: Wed, 1 Sep 2004 18:22:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 18:22:15 -0000 brooks 2004-09-01 18:22:14 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.c sys/net if.c if.h Log: Use a spare byte in struct if_data to store the structure size without increasing it. Add code to ifconfig to use this size to find the sockaddr_dl after the struct if_data in the routing message. This allows struct if_data to grow (up to 255 bytes) without breaking ifconfig. Submitted by: peter Revision Changes Path 1.107 +4 -1 src/sbin/ifconfig/ifconfig.c 1.202 +1 -0 src/sys/net/if.c 1.90 +1 -0 src/sys/net/if.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 18:29:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1280716A4CE; Wed, 1 Sep 2004 18:29:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7E7643D4C; Wed, 1 Sep 2004 18:29:57 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81ITvaC017809; Wed, 1 Sep 2004 18:29:57 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81ITvq9017808; Wed, 1 Sep 2004 18:29:57 GMT (envelope-from julian) Message-Id: <200409011829.i81ITvq9017808@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 18:29:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 18:29:58 -0000 julian 2004-09-01 18:29:57 UTC FreeBSD src repository Modified files: sys/i386/include param.h Log: Don't ask for this for modules. no modules need to know about preemption at the moment Revision Changes Path 1.76 +1 -1 src/sys/i386/include/param.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 19:04:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E47416A4CF; Wed, 1 Sep 2004 19:04:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6943343D39; Wed, 1 Sep 2004 19:04:09 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81J49ad018832; Wed, 1 Sep 2004 19:04:09 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81J49Pp018831; Wed, 1 Sep 2004 19:04:09 GMT (envelope-from alc) Message-Id: <200409011904.i81J49Pp018831@repoman.freebsd.org> From: Alan Cox Date: Wed, 1 Sep 2004 19:04:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 19:04:09 -0000 alc 2004-09-01 19:04:09 UTC FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: Correction to the previous revision: I forgot to apply the ones complement to a constant. This didn't show in testing because the broken expression produced the same result in my tests as the correct expression. Revision Changes Path 1.500 +1 -1 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 19:18:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 877EB16A4CE; Wed, 1 Sep 2004 19:18:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6792F43D2F; Wed, 1 Sep 2004 19:18:59 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81JIxDt019396; Wed, 1 Sep 2004 19:18:59 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81JIx2g019395; Wed, 1 Sep 2004 19:18:59 GMT (envelope-from alc) Message-Id: <200409011918.i81JIx2g019395@repoman.freebsd.org> From: Alan Cox Date: Wed, 1 Sep 2004 19:18:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 19:18:59 -0000 alc 2004-09-01 19:18:59 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: In vm_fault_unwire() eliminate the acquisition and release of Giant in the case of non-kernel pmaps. Revision Changes Path 1.195 +0 -4 src/sys/vm/vm_fault.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 19:23:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CE4F16A4CE; Wed, 1 Sep 2004 19:23:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ECAB43D3F; Wed, 1 Sep 2004 19:23:02 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81JN2K2019624; Wed, 1 Sep 2004 19:23:02 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81JN27E019623; Wed, 1 Sep 2004 19:23:02 GMT (envelope-from julian) Message-Id: <200409011923.i81JN27E019623@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 19:23:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kgzip kgzcmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 19:23:02 -0000 julian 2004-09-01 19:23:02 UTC FreeBSD src repository Modified files: usr.sbin/kgzip kgzcmp.c Log: When non kernel programs try to define _KERNEL it always ends in tears. this is a temporary hack.. we'll remove it in a short while. I'll set teh MFC to remind me MFC after: 1 week Revision Changes Path 1.11 +2 -0 src/usr.sbin/kgzip/kgzcmp.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 19:56:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 841BB16A4CE; Wed, 1 Sep 2004 19:56:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6402543D4C; Wed, 1 Sep 2004 19:56:47 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81Julh5021306; Wed, 1 Sep 2004 19:56:47 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81JulMC021305; Wed, 1 Sep 2004 19:56:47 GMT (envelope-from mlaier) Message-Id: <200409011956.i81JulMC021305@repoman.freebsd.org> From: Max Laier Date: Wed, 1 Sep 2004 19:56:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 19:56:47 -0000 mlaier 2004-09-01 19:56:47 UTC FreeBSD src repository Modified files: sys/net if.c Log: Fix an assertion when if_down()ing a ALTQ managed interface. The lock should have been in place all the time the mtx_assert in the ALTQ code just discovered the shortcoming. PR: i386/71195 Tested by: Bettan (PR originator), myself MFC after: 5 days Revision Changes Path 1.203 +2 -0 src/sys/net/if.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 19:58:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3296E16A4CE; Wed, 1 Sep 2004 19:58:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 133CF43D1D; Wed, 1 Sep 2004 19:58:38 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81Jwb5S021363; Wed, 1 Sep 2004 19:58:37 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81Jwb73021362; Wed, 1 Sep 2004 19:58:37 GMT (envelope-from alc) Message-Id: <200409011958.i81Jwb73021362@repoman.freebsd.org> From: Alan Cox Date: Wed, 1 Sep 2004 19:58:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 19:58:38 -0000 alc 2004-09-01 19:58:37 UTC FreeBSD src repository Modified files: sys/vm vm_mmap.c Log: Remove dead code. Revision Changes Path 1.193 +0 -4 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:04:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B150A16A4CE; Wed, 1 Sep 2004 20:04:42 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4092743D3F; Wed, 1 Sep 2004 20:04:42 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id EE8FEFE1; Wed, 1 Sep 2004 22:05:19 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 0F3BBB874; Wed, 1 Sep 2004 22:04:41 +0200 (CEST) To: Julian Elischer References: <200409011829.i81ITvq9017808@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Wed, 01 Sep 2004 22:04:40 +0200 In-Reply-To: <200409011829.i81ITvq9017808@repoman.freebsd.org> (Julian Elischer's message of "Wed, 1 Sep 2004 18:29:57 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:04:42 -0000 Julian Elischer writes: > Log: > Don't ask for this for modules. no modules need to know about preemptio= n at the moment Including opt_* from other headers is a big no-no. If I were you, I would seriously consider reverting this file to 1.72 and finding some other way of solving this, such as turning PREEMPTION off entirely or adding an #error to sched_ule.c conditional on PREEMPTION. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:38:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBAFA16A4CE; Wed, 1 Sep 2004 20:38:21 +0000 (GMT) Received: from mail.vicor-nb.com (bigwoop.vicor-nb.com [208.206.78.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9799A43D5C; Wed, 1 Sep 2004 20:38:21 +0000 (GMT) (envelope-from julian@elischer.org) Received: from elischer.org (julian.vicor-nb.com [208.206.78.97]) by mail.vicor-nb.com (Postfix) with ESMTP id E8F727A3F9; Wed, 1 Sep 2004 13:38:20 -0700 (PDT) Message-ID: <4136333C.8090207@elischer.org> Date: Wed, 01 Sep 2004 13:38:20 -0700 From: Julian Elischer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030516 X-Accept-Language: en, hu MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200409011829.i81ITvq9017808@repoman.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:38:21 -0000 I'm rapidly coming to that conclusion myself.. breaks all over the place because so many places pretend to be the kernel when they are not. Dag-Erling Smørgrav wrote: >Julian Elischer writes: > > >> Log: >> Don't ask for this for modules. no modules need to know about preemption at the moment >> >> > >Including opt_* from other headers is a big no-no. If I were you, I >would seriously consider reverting this file to 1.72 and finding some >other way of solving this, such as turning PREEMPTION off entirely or >adding an #error to sched_ule.c conditional on PREEMPTION. > >DES > > From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:41:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E007D16A4CE; Wed, 1 Sep 2004 20:41:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C028E43D54; Wed, 1 Sep 2004 20:41:18 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81KfIqq022525; Wed, 1 Sep 2004 20:41:18 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81KfI6B022524; Wed, 1 Sep 2004 20:41:18 GMT (envelope-from julian) Message-Id: <200409012041.i81KfI6B022524@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 20:41:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:41:19 -0000 julian 2004-09-01 20:41:18 UTC FreeBSD src repository Modified files: sys/i386/include param.h Log: Give up trying to make preemption dependent on SCHED_4BSD the list of breakages was getting too long Revision Changes Path 1.77 +1 -4 src/sys/i386/include/param.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:42:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AEE716A4CE; Wed, 1 Sep 2004 20:42:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E151143D1F; Wed, 1 Sep 2004 20:42:38 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81KgcWh022568; Wed, 1 Sep 2004 20:42:38 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81KgcFQ022567; Wed, 1 Sep 2004 20:42:38 GMT (envelope-from julian) Message-Id: <200409012042.i81KgcFQ022567@repoman.freebsd.org> From: Julian Elischer Date: Wed, 1 Sep 2004 20:42:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kgzip kgzcmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 20:42:39 -0000 julian 2004-09-01 20:42:38 UTC FreeBSD src repository Modified files: usr.sbin/kgzip kgzcmp.c Log: Revert.. not needed now Revision Changes Path 1.12 +0 -2 src/usr.sbin/kgzip/kgzcmp.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:43:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E71516A4CE; Wed, 1 Sep 2004 20:43:51 +0000 (GMT) Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id D77C243D48; Wed, 1 Sep 2004 20:43:50 +0000 (GMT) (envelope-from gibbs@scsiguy.com) Received: from caspian.scsiguy.com (caspian.scsiguy.com [63.229.232.105]) by aslan.scsiguy.com (8.12.11/8.12.11) with ESMTP id i81Khj8U081407; Wed, 1 Sep 2004 14:43:46 -0600 (MDT) (envelope-from gibbs@scsiguy.com) Date: Wed, 01 Sep 2004 14:44:45 -0600 From: "Justin T. Gibbs" To: Brooks Davis , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> In-Reply-To: <200409011822.i81IMERb017602@repoman.freebsd.org> References: <200409011822.i81IMERb017602@repoman.freebsd.org> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:43:51 -0000 > brooks 2004-09-01 18:22:14 UTC > > FreeBSD src repository > > Modified files: > sbin/ifconfig ifconfig.c > sys/net if.c if.h > Log: > Use a spare byte in struct if_data to store the structure size without > increasing it. Add code to ifconfig to use this size to find the > sockaddr_dl after the struct if_data in the routing message. This > allows struct if_data to grow (up to 255 bytes) without breaking > ifconfig. You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like the SCSI protocol. -- Justin From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:44:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D737E16A4CE; Wed, 1 Sep 2004 20:44:52 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE3443D2D; Wed, 1 Sep 2004 20:44:52 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B40DA5C916; Wed, 1 Sep 2004 13:44:52 -0700 (PDT) Date: Wed, 1 Sep 2004 13:44:52 -0700 From: Alfred Perlstein To: "Justin T. Gibbs" Message-ID: <20040901204452.GO31434@elvis.mu.org> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:44:53 -0000 * Justin T. Gibbs [040901 13:43] wrote: > > > brooks 2004-09-01 18:22:14 UTC > > > > FreeBSD src repository > > > > Modified files: > > sbin/ifconfig ifconfig.c > > sys/net if.c if.h > > Log: > > Use a spare byte in struct if_data to store the structure size without > > increasing it. Add code to ifconfig to use this size to find the > > sockaddr_dl after the struct if_data in the routing message. This > > allows struct if_data to grow (up to 255 bytes) without breaking > > ifconfig. > > You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like > the SCSI protocol. Or treat 0 as "look at some other location for length" of int width. :) -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:47:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1AF416A4CE; Wed, 1 Sep 2004 20:47:50 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 950D043D3F; Wed, 1 Sep 2004 20:47:50 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 8FA215C942; Wed, 1 Sep 2004 13:47:50 -0700 (PDT) Date: Wed, 1 Sep 2004 13:47:50 -0700 From: Alfred Perlstein To: Julian Elischer Message-ID: <20040901204750.GP31434@elvis.mu.org> References: <200409012041.i81KfI6B022524@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409012041.i81KfI6B022524@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: peter@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 20:47:50 -0000 * Julian Elischer [040901 13:41] wrote: > julian 2004-09-01 20:41:18 UTC > > FreeBSD src repository > > Modified files: > sys/i386/include param.h > Log: > Give up trying to make preemption dependent on SCHED_4BSD > the list of breakages was getting too long It's too bad config(8) can't be made to parse a dependancy list. Making SCHED_4BSD implicitly turn on PREEMPTION would be nice. This would also allow for us to not break people so badly when modularizing a component, we can just keep the main component and have it require all the subcomponents. somehow peter got cc'd on this... dunno how/why... :D -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Sep 1 20:52:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC8B16A4CE; Wed, 1 Sep 2004 20:52:31 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E329343D39; Wed, 1 Sep 2004 20:52:30 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i81KqQRI040816 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 1 Sep 2004 23:52:27 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i81KqQAC000820; Wed, 1 Sep 2004 23:52:26 +0300 (EEST) (envelope-from ru) Date: Wed, 1 Sep 2004 23:52:26 +0300 From: Ruslan Ermilov To: Julian Elischer Message-ID: <20040901205226.GA793@ip.net.ua> References: <200409011923.i81JN27E019623@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline In-Reply-To: <200409011923.i81JN27E019623@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/kgzip kgzcmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 20:52:31 -0000 --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 01, 2004 at 07:23:02PM +0000, Julian Elischer wrote: > julian 2004-09-01 19:23:02 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/kgzip kgzcmp.c=20 > Log: > When non kernel programs try to define _KERNEL > it always ends in tears. > =20 > this is a temporary hack.. > we'll remove it in a short while. I'll set teh MFC to remind me > =20 > MFC after: 1 week > =20 > Revision Changes Path > 1.11 +2 -0 src/usr.sbin/kgzip/kgzcmp.c >=20 The include list was bogus here, here's the correct fix. The actual bug is in the header though. %%% Index: kgzcmp.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.sbin/kgzip/kgzcmp.c,v retrieving revision 1.11 diff -u -r1.11 kgzcmp.c --- kgzcmp.c 1 Sep 2004 19:23:02 -0000 1.11 +++ kgzcmp.c 1 Sep 2004 20:49:12 -0000 @@ -26,15 +26,12 @@ * $FreeBSD: src/usr.sbin/kgzip/kgzcmp.c,v 1.11 2004/09/01 19:23:02 julian= Exp $ */ =20 -#define _KERNEL -#define KLD_MODULE -#include -#undef KLD_MODULE -#undef _KERNEL #include #include #include =20 +#include + #include #include #include %%% Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBNjaKqRfpzJluFF4RAjMcAJ94HegJ8z5sTGpzCiZ9QJTUKCgwBwCbBC7d rO+eXsbn84mmDR08tzetqxY= =sayG -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 21:00:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AD7616A4CE; Wed, 1 Sep 2004 21:00:24 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE57C43D31; Wed, 1 Sep 2004 21:00:23 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i81KvgRd085133; Wed, 1 Sep 2004 14:57:43 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 01 Sep 2004 14:57:55 -0600 (MDT) Message-Id: <20040901.145755.113101292.imp@bsdimp.com> To: julian@freebsd.org From: "M. Warner Losh" In-Reply-To: <200409011829.i81ITvq9017808@repoman.freebsd.org> References: <200409011829.i81ITvq9017808@repoman.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 21:00:24 -0000 In message: <200409011829.i81ITvq9017808@repoman.freebsd.org> Julian Elischer writes: : julian 2004-09-01 18:29:57 UTC : : FreeBSD src repository : : Modified files: : sys/i386/include param.h : Log: : Don't ask for this for modules. no modules need to know about preemption at the moment Generally, .h files shouldn't include opt_goo.h at all. Please remove it entirely from param.h or find some other way to get this information. There are a few others in the tree, btu they are generally in error or are not visible to modules. Warner From owner-cvs-src@FreeBSD.ORG Wed Sep 1 21:01:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1059D16A56D; Wed, 1 Sep 2004 21:01:03 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 578F543D5A; Wed, 1 Sep 2004 21:00:33 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i81KwaJS085135; Wed, 1 Sep 2004 14:58:37 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 01 Sep 2004 14:58:49 -0600 (MDT) Message-Id: <20040901.145849.00592114.imp@bsdimp.com> To: julian@elischer.org From: "M. Warner Losh" In-Reply-To: <4136333C.8090207@elischer.org> References: <200409011829.i81ITvq9017808@repoman.freebsd.org> <4136333C.8090207@elischer.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: des@des.no cc: src-committers@freebsd.org cc: julian@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 21:01:04 -0000 In message: <4136333C.8090207@elischer.org> Julian Elischer writes: : I'm rapidly coming to that conclusion myself.. : : breaks all over the place because so many places pretend to be the : kernel when they are not. Which is why we have that rule in place :-( I'm with DES on this one. Warner From owner-cvs-src@FreeBSD.ORG Wed Sep 1 21:12:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ED0A16A4CE; Wed, 1 Sep 2004 21:12:03 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 108DF43D45; Wed, 1 Sep 2004 21:12:03 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i81LCQF9007992; Wed, 1 Sep 2004 14:12:26 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i81LCQfF007991; Wed, 1 Sep 2004 14:12:26 -0700 Date: Wed, 1 Sep 2004 14:12:26 -0700 From: Brooks Davis To: "Justin T. Gibbs" Message-ID: <20040901211226.GB3754@odin.ac.hmc.edu> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OwLcNYc0lM97+oe1" Content-Disposition: inline In-Reply-To: <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 21:12:03 -0000 --OwLcNYc0lM97+oe1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 01, 2004 at 02:44:45PM -0600, Justin T. Gibbs wrote: >=20 > > brooks 2004-09-01 18:22:14 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sbin/ifconfig ifconfig.c=20 > > sys/net if.c if.h=20 > > Log: > > Use a spare byte in struct if_data to store the structure size without > > increasing it. Add code to ifconfig to use this size to find the > > sockaddr_dl after the struct if_data in the routing message. This > > allows struct if_data to grow (up to 255 bytes) without breaking > > ifconfig. >=20 > You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like > the SCSI protocol. Unfortunaly, we're using 0 as the magic, not-set variable. My intent is to add some better hurristics for the 0 case if we do end up keeping this hack. Long term, we probably need to rev the routing message API to fix this kind of junk, but that's a massive undertaking. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --OwLcNYc0lM97+oe1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBNjs5XY6L6fI4GtQRAgAIAJ92UwkD6gXAURy3ZcS9RhzpLkpaawCgj9Sx DF3+6mmlXige+lWc1MHwn70= =ekhs -----END PGP SIGNATURE----- --OwLcNYc0lM97+oe1-- From owner-cvs-src@FreeBSD.ORG Wed Sep 1 21:13:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8606216A4E2 for ; Wed, 1 Sep 2004 21:13:49 +0000 (GMT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1A343D49 for ; Wed, 1 Sep 2004 21:13:49 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 23865 invoked from network); 1 Sep 2004 21:13:48 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 1 Sep 2004 21:13:48 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i81LDVpE062794; Wed, 1 Sep 2004 17:13:43 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Giorgos Keramidas Date: Wed, 1 Sep 2004 15:19:42 -0400 User-Agent: KMail/1.6.2 References: <200409010642.i816g2lK094069@repoman.freebsd.org> <20040901112017.GA43387@orion.daedalusnetworks.priv> <20040901140424.GA6322@orion.daedalusnetworks.priv> In-Reply-To: <20040901140424.GA6322@orion.daedalusnetworks.priv> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409011519.42627.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_machdep.c src/sys/i386/include param.h src/sys/kern kern_idle.c kern_switch.c sched_4bsd.c subr_smp.c src/sys/sys smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 21:13:49 -0000 On Wednesday 01 September 2004 10:04 am, Giorgos Keramidas wrote: > On 2004-09-01 14:20, Giorgos Keramidas wrote: > > On 2004-09-01 06:42, Julian Elischer wrote: > > > 1.191 +135 -1 src/sys/kern/subr_smp.c > > > > This moved all_cpus in an #ifdef SMP which breaks the compilation on > > non-SPM systems: [...] > > > > If all_cpus is only meaningful in the #ifdef SMP case, the following > > diff seems necessary to unbreak the build of HEAD on non-SMP systems: > > [...] > > Hmmm, now that I look at sys/smp.h the all_cpus and nearby externs > should be moved inside #ifdef SMP too to match the changes of 1.191 > subr_smp.c: Please no! There is a _reason_ for this: ---------------------------- revision 1.180 date: 2003/12/03 14:55:31; author: jhb; state: Exp; lines: +36 -0 Export a few SMP related symbols in UP kernels as well. This is needed to aid other kernel code, especially code which can be in a module such as the acpi_cpu(4) driver, to work properly with both SMP and UP kernels. The exported symbols include mp_ncpus, all_cpus, mp_maxid, smp_started, and the smp_rendezvous() function. This also means that CPU_ABSENT() is now always implemented the same on all kernels. Approved by: re (scottl) ---------------------------- The idea is to cut down on the number of #ifdef SMP's in the kernel, esp the parts in modules which can't possibly work. Part of the whole SMPng deal is that one now needs to think of the kernel as inherently SMP and multithreaded. SMP is no longer a special case bolted onto the side as in 4.x. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Sep 1 22:01:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ED2D16A4CE; Wed, 1 Sep 2004 22:01:16 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEABC43D55; Wed, 1 Sep 2004 22:01:15 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i81M1FkE086205; Wed, 1 Sep 2004 15:01:15 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i81M1Fni086204; Wed, 1 Sep 2004 15:01:15 -0700 (PDT) (envelope-from obrien) Date: Wed, 1 Sep 2004 15:01:14 -0700 From: "David O'Brien" To: Julian Elischer Message-ID: <20040901220114.GA85043@dragon.nuxi.com> References: <200409011923.i81JN27E019623@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409011923.i81JN27E019623@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/kgzip kgzcmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 22:01:16 -0000 On Wed, Sep 01, 2004 at 07:23:02PM +0000, Julian Elischer wrote: > julian 2004-09-01 19:23:02 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/kgzip kgzcmp.c > Log: > When non kernel programs try to define _KERNEL > it always ends in tears. > this is a temporary hack.. > we'll remove it in a short while. I'll set teh MFC to remind me What does this mean in English?? -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Wed Sep 1 22:15:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC2D116A4CE; Wed, 1 Sep 2004 22:15:45 +0000 (GMT) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451DE43D45; Wed, 1 Sep 2004 22:15:45 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr5.xs4all.nl (8.12.11/8.12.11) with ESMTP id i81MFhuw024146; Thu, 2 Sep 2004 00:15:44 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i81MFhw8068412; Thu, 2 Sep 2004 00:15:43 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i81MFh2V068411; Thu, 2 Sep 2004 00:15:43 +0200 (CEST) (envelope-from wb) Date: Thu, 2 Sep 2004 00:15:43 +0200 From: Wilko Bulte To: "David O'Brien" Message-ID: <20040901221543.GA68385@freebie.xs4all.nl> References: <200409011923.i81JN27E019623@repoman.freebsd.org> <20040901220114.GA85043@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040901220114.GA85043@dragon.nuxi.com> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: Julian Elischer cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/kgzip kgzcmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 01 Sep 2004 22:15:46 -0000 On Wed, Sep 01, 2004 at 03:01:14PM -0700, David O'Brien wrote.. > On Wed, Sep 01, 2004 at 07:23:02PM +0000, Julian Elischer wrote: > > julian 2004-09-01 19:23:02 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/kgzip kgzcmp.c > > Log: > > When non kernel programs try to define _KERNEL > > it always ends in tears. > > this is a temporary hack.. > > we'll remove it in a short while. I'll set teh MFC to remind me > > What does this mean in English?? That Julian is crying? :) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Sep 1 22:53:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7A5B16A4CF; Wed, 1 Sep 2004 22:53:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86EBD43D1F; Wed, 1 Sep 2004 22:53:13 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81MrDHG026327; Wed, 1 Sep 2004 22:53:13 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81MrDje026326; Wed, 1 Sep 2004 22:53:13 GMT (envelope-from marcel) Message-Id: <200409012253.i81MrDje026326@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 1 Sep 2004 22:53:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/tga tga_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 22:53:13 -0000 marcel 2004-09-01 22:53:13 UTC FreeBSD src repository Modified files: sys/dev/tga tga_pci.c Log: Remove redundant _FBSDID. Revision Changes Path 1.10 +0 -3 src/sys/dev/tga/tga_pci.c From owner-cvs-src@FreeBSD.ORG Wed Sep 1 23:22:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 417F916A4CE; Wed, 1 Sep 2004 23:22:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3660543D48; Wed, 1 Sep 2004 23:22:42 +0000 (GMT) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81NMg1O027172; Wed, 1 Sep 2004 23:22:42 GMT (envelope-from pdeuskar@repoman.freebsd.org) Received: (from pdeuskar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81NMgQR027171; Wed, 1 Sep 2004 23:22:42 GMT (envelope-from pdeuskar) Message-Id: <200409012322.i81NMgQR027171@repoman.freebsd.org> From: Prafulla Deuskar Date: Wed, 1 Sep 2004 23:22:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/em if_em.c if_em.h if_em_hw.c if_em_hw.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 23:22:42 -0000 pdeuskar 2004-09-01 23:22:42 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c if_em.h if_em_hw.c if_em_hw.h Log: Added support for Intel PRO/1000 GT Desktop Adapter(Device ID 8086 107C) Removed support for Intel 82541ER Added fix for 82547 which corrects an issue with Jumbo frames larger than 10k. Added fix for vlan tagged frames not being properly bridged. Corrected TBI workaround. Corrected incorrect LED operation issues Submitted by: tackerman (Tony Ackerman) MFC after: 2 weeks Revision Changes Path 1.45 +60 -18 src/sys/dev/em/if_em.c 1.26 +15 -4 src/sys/dev/em/if_em.h 1.14 +349 -212 src/sys/dev/em/if_em_hw.c 1.14 +25 -9 src/sys/dev/em/if_em_hw.h From owner-cvs-src@FreeBSD.ORG Wed Sep 1 23:28:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC01816A4CE; Wed, 1 Sep 2004 23:28:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB5EF43D31; Wed, 1 Sep 2004 23:28:27 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i81NSRhg027339; Wed, 1 Sep 2004 23:28:27 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i81NSRxX027338; Wed, 1 Sep 2004 23:28:27 GMT (envelope-from tjr) Message-Id: <200409012328.i81NSRxX027338@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 1 Sep 2004 23:28:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen glob.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2004 23:28:27 -0000 tjr 2004-09-01 23:28:27 UTC FreeBSD src repository Modified files: lib/libc/gen glob.3 Log: Septepber -> September Noticed by: ru Revision Changes Path 1.30 +1 -1 src/lib/libc/gen/glob.3 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 00:46:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBBB016A4CF for ; Thu, 2 Sep 2004 00:46:26 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52A4043D4C for ; Thu, 2 Sep 2004 00:46:26 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 99379 invoked from network); 2 Sep 2004 00:44:06 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 2 Sep 2004 00:44:06 -0000 Message-ID: <41366D5F.6EC48920@freebsd.org> Date: Thu, 02 Sep 2004 02:46:23 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Brooks Davis References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> <20040901211226.GB3754@odin.ac.hmc.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: "Justin T. Gibbs" cc: cvs-src@FreeBSD.org cc: Brooks Davis cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 00:46:27 -0000 Brooks Davis wrote: > hack. Long term, we probably need to rev the routing message API to fix > this kind of junk, but that's a massive undertaking. Oh, yes! /me likes doing these things! ;-) -- Andre From owner-cvs-src@FreeBSD.ORG Thu Sep 2 01:12:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B14A16A4CE; Thu, 2 Sep 2004 01:12:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9088843D1D; Thu, 2 Sep 2004 01:12:20 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i821CK9C030329; Thu, 2 Sep 2004 01:12:20 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i821CKfE030328; Thu, 2 Sep 2004 01:12:20 GMT (envelope-from csjp) Message-Id: <200409020112.i821CKfE030328@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 2 Sep 2004 01:12:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/ufs/ufs ufs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 01:12:20 -0000 csjp 2004-09-02 01:12:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/ufs/ufs ufs_vnops.c Log: MFC v1.243: Currently, if the secure level is low enough, system flags can be manipulated by prison root. In 4.x prison root can not manipulate system flags, regardless of the security level. This behavior should remain consistent to avoid any surprises which could lead to security problems for system administrators which give out privileged access to jails. This commit changes suser_cred's flag argument from SUSER_ALLOWJAIL to 0. This will prevent prison root from being able to manipulate system flags on files. Approved by: re (kensmith) Revision Changes Path 1.242.2.1 +1 -1 src/sys/ufs/ufs/ufs_vnops.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 01:55:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E78416A4CE; Thu, 2 Sep 2004 01:55:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DAAF43D49; Thu, 2 Sep 2004 01:55:00 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i821t0RO031484; Thu, 2 Sep 2004 01:55:00 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i821t0xd031483; Thu, 2 Sep 2004 01:55:00 GMT (envelope-from kensmith) Message-Id: <200409020155.i821t0xd031483@repoman.freebsd.org> From: Ken Smith Date: Thu, 2 Sep 2004 01:55:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.sbin/sysinstall config.c dispatch.c install.c menus.c sysinstall.8 sysinstall.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 01:55:00 -0000 kensmith 2004-09-02 01:55:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/sysinstall config.c dispatch.c install.c menus.c sysinstall.8 sysinstall.h Log: MFC of the X server configuration removal from sysinstall. Versions being MFC-ed: config.c V1.226 dispatch.c V1.47 install.c V1.359 menus.c V1.400 sysinstall.8 V1.65 sysinstall.h V1.262 Discussed on: freebsd-current@ Approved by: re (scottl) Revision Changes Path 1.225.2.1 +0 -139 src/usr.sbin/sysinstall/config.c 1.46.4.1 +0 -2 src/usr.sbin/sysinstall/dispatch.c 1.358.2.1 +0 -6 src/usr.sbin/sysinstall/install.c 1.395.2.1 +0 -4 src/usr.sbin/sysinstall/menus.c 1.64.2.1 +0 -10 src/usr.sbin/sysinstall/sysinstall.8 1.261.2.1 +0 -2 src/usr.sbin/sysinstall/sysinstall.h From owner-cvs-src@FreeBSD.ORG Thu Sep 2 03:21:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DEC116A4CE; Thu, 2 Sep 2004 03:21:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33D5443D2F; Thu, 2 Sep 2004 03:21:40 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i823LeDb034320; Thu, 2 Sep 2004 03:21:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i823LeY5034319; Thu, 2 Sep 2004 03:21:40 GMT (envelope-from rwatson) Message-Id: <200409020321.i823LeY5034319@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 03:21:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern uipc_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 03:21:40 -0000 rwatson 2004-09-02 03:21:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern uipc_usrreq.c Log: Merge uipc_usrreq.c:1.140 to RELENG_5: date: 2004/08/25 21:24:36; author: rwatson; state: Exp; lines: +15 -8 Don't hold the UNIX domain socket subsystem lock over the body of the UNIX domain socket garbage collection implementation, as that risks holding the mutex over potentially sleeping operations (as well as introducing some nasty lock order issues, etc). unp_gc() will hold the lock long enough to do necessary deferal checks and set that it's running, but then release it until it needs to reset the gc state. Discussed with: alfred Approved by: re (kensmith) Revision Changes Path 1.138.2.2 +15 -8 src/sys/kern/uipc_usrreq.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:00:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBE3416A4CF; Thu, 2 Sep 2004 04:00:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAFA243D3F; Thu, 2 Sep 2004 04:00:12 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8240CPw035233; Thu, 2 Sep 2004 04:00:12 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8240CTe035232; Thu, 2 Sep 2004 04:00:12 GMT (envelope-from kientzle) Message-Id: <200409020400.i8240CTe035232@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 2 Sep 2004 04:00:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libarchive archive_read_extract.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:00:13 -0000 kientzle 2004-09-02 04:00:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libarchive archive_read_extract.c Log: MFC archive_read_extract.c 1.35: Cache uid-from-uname and gid-from-gname lookups during extraction Approved by: re (Ken Smith) Revision Changes Path 1.33.2.2 +84 -17 src/lib/libarchive/archive_read_extract.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:06:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D71416A4CE; Thu, 2 Sep 2004 04:06:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BD1B43D2F; Thu, 2 Sep 2004 04:06:00 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82460Tv035506; Thu, 2 Sep 2004 04:06:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82460Xm035505; Thu, 2 Sep 2004 04:06:00 GMT (envelope-from kientzle) Message-Id: <200409020406.i82460Xm035505@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 2 Sep 2004 04:06:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.bin/tar write.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:06:00 -0000 kientzle 2004-09-02 04:06:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/tar write.c Log: MFC write.c 1.34: Fix -T/-I to correctly use updated -C machinery. Approved by: re (Ken Smith) Revision Changes Path 1.33.2.1 +5 -4 src/usr.bin/tar/write.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:09:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39A2816A4CE; Thu, 2 Sep 2004 04:09:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1510C43D58; Thu, 2 Sep 2004 04:09:47 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8249kk5035657; Thu, 2 Sep 2004 04:09:46 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8249kZe035656; Thu, 2 Sep 2004 04:09:46 GMT (envelope-from kientzle) Message-Id: <200409020409.i8249kZe035656@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 2 Sep 2004 04:09:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.bin/tar bsdtar.1 bsdtar.c read.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:09:47 -0000 kientzle 2004-09-02 04:09:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/tar bsdtar.1 bsdtar.c read.c Log: MFC: support -O with -t, where it means "send list to stderr", as in gtar Approved by: re (Ken Smith) Revision Changes Path 1.20.2.1 +4 -2 src/usr.bin/tar/bsdtar.1 1.52.2.2 +1 -1 src/usr.bin/tar/bsdtar.c 1.19.2.1 +15 -10 src/usr.bin/tar/read.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:18:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7682D16A4CE; Thu, 2 Sep 2004 04:18:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5709B43D55; Thu, 2 Sep 2004 04:18:17 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i824IHZK036208; Thu, 2 Sep 2004 04:18:17 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i824IH6B036207; Thu, 2 Sep 2004 04:18:17 GMT (envelope-from kientzle) Message-Id: <200409020418.i824IH6B036207@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 2 Sep 2004 04:18:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/contrib/cpio tar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:18:17 -0000 kientzle 2004-09-02 04:18:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/cpio tar.c Log: MFC: Recognize and ignore pax 'x' and 'g' extension entries. In particular, don't create "PaxHeader" dirs when extracting archives created by newer tar and pax implementations. Approved by: re (Ken Smith) Revision Changes Path 1.1.1.1.32.1 +15 -0 src/contrib/cpio/tar.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:28:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 749DC16A4CE; Thu, 2 Sep 2004 04:28:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1947C43D46; Thu, 2 Sep 2004 04:28:06 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i824S5N8036479; Thu, 2 Sep 2004 04:28:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i824S5QR036478; Thu, 2 Sep 2004 04:28:05 GMT (envelope-from njl) Message-Id: <200409020428.i824S5QR036478@repoman.freebsd.org> From: Nate Lawson Date: Thu, 2 Sep 2004 04:28:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdDebug.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:28:06 -0000 njl 2004-09-02 04:28:05 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdDebug.c Log: Don't enter the debugger when executing an AML breakpoint instruction unless ACPI_DEBUG is defined. Users don't typically care about errant breakpoint instructions. The HP Pavilion 7915 has this in its PCI0 _INI method for rev 0x6040000 of the RSDT. Revision Changes Path 1.9 +5 -5 src/sys/dev/acpica/Osd/OsdDebug.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:32:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A036E16A4CE; Thu, 2 Sep 2004 04:32:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED5843D46; Thu, 2 Sep 2004 04:32:26 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i824WQnt036681; Thu, 2 Sep 2004 04:32:26 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i824WQnf036680; Thu, 2 Sep 2004 04:32:26 GMT (envelope-from kientzle) Message-Id: <200409020432.i824WQnf036680@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 2 Sep 2004 04:32:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/contrib/gnu-sort/lib version-etc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:32:26 -0000 kientzle 2004-09-02 04:32:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/gnu-sort/lib version-etc.c Log: MFC lib/version-etc.c 1.4: correctly clean up va_list variable Approved by: re (Ken Smith) Revision Changes Path 1.3.2.1 +4 -1 src/contrib/gnu-sort/lib/version-etc.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 04:40:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EBE116A4CE; Thu, 2 Sep 2004 04:40:52 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F9C643D2F; Thu, 2 Sep 2004 04:40:52 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.50] (adsl-64-171-186-94.dsl.snfc21.pacbell.net [64.171.186.94]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i824eoDl015357; Wed, 1 Sep 2004 21:40:51 -0700 Message-ID: <4136A452.7080700@root.org> Date: Wed, 01 Sep 2004 21:40:50 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-src@freebsd.org, cvs-all@freebsd.org, src-committers@freebsd.org References: <20040902042809.99A9416A4EE@hub.freebsd.org> In-Reply-To: <20040902042809.99A9416A4EE@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/dev/acpica/Osd OsdDebug.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 04:40:52 -0000 Nate Lawson wrote: > njl 2004-09-02 04:28:05 UTC > > FreeBSD src repository > > Modified files: > sys/dev/acpica/Osd OsdDebug.c > Log: > Don't enter the debugger when executing an AML breakpoint instruction > unless ACPI_DEBUG is defined. Users don't typically care about errant > breakpoint instructions. The HP Pavilion 7915 has this in its PCI0 > _INI method for rev 0x6040000 of the RSDT. > > Revision Changes Path > 1.9 +5 -5 src/sys/dev/acpica/Osd/OsdDebug.c I may MFC this if it works for the user. Whoever put a breakpoint opcode in the PCI0._INI method for this machine should be hit on the head with the spec. -Nate From owner-cvs-src@FreeBSD.ORG Thu Sep 2 05:07:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06EE416A4CE; Thu, 2 Sep 2004 05:07:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D93B743D2F; Thu, 2 Sep 2004 05:07:29 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8257TB0037645; Thu, 2 Sep 2004 05:07:29 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8257TFl037644; Thu, 2 Sep 2004 05:07:29 GMT (envelope-from brooks) Message-Id: <200409020507.i8257TFl037644@repoman.freebsd.org> From: Brooks Davis Date: Thu, 2 Sep 2004 05:07:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 05:07:30 -0000 brooks 2004-09-02 05:07:29 UTC FreeBSD src repository Modified files: . UPDATING sys/net if.c if.h Log: Back out ifi_epoch. The ABI breakage is too disruptive this close to 5-STABLE. ifi_epoch will shortly be reintroduced with less precistion using the space currently allocated to ifi_unused. Revision Changes Path 1.354 +8 -0 src/UPDATING 1.204 +0 -1 src/sys/net/if.c 1.91 +0 -1 src/sys/net/if.h From owner-cvs-src@FreeBSD.ORG Thu Sep 2 06:12:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F74716A4CE; Thu, 2 Sep 2004 06:12:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 156BD43D39; Thu, 2 Sep 2004 06:12:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i826CJGS039428; Thu, 2 Sep 2004 06:12:19 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i826CJcZ039427; Thu, 2 Sep 2004 06:12:19 GMT (envelope-from marcel) Message-Id: <200409020612.i826CJcZ039427@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 2 Sep 2004 06:12:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/pci pcibus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 06:12:20 -0000 marcel 2004-09-02 06:12:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/pci pcibus.c Log: MFC rev 1.35: In alpha_pci_alloc_resource(), when allocating a memory resource, do not set the virtual address to the bus address when the bus doesn't have either of the PCI_RF_DENSE or PCI_RF_BWX flags set. The TGA driver uses the virtual address to access the registers, which on some machines can cause a memory management fault. Map the bus address as K0SEG virtual memory instead. Note that with some hardware combinations involving the TGA2 adapter this change merely results that the memory management fault is replaced by a machine check. Approved by: re (scottl) Revision Changes Path 1.34.2.1 +1 -1 src/sys/alpha/pci/pcibus.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 06:14:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13A5916A4CE; Thu, 2 Sep 2004 06:14:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E664F43D48; Thu, 2 Sep 2004 06:14:42 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i826Egaj039488; Thu, 2 Sep 2004 06:14:42 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i826EgDd039487; Thu, 2 Sep 2004 06:14:42 GMT (envelope-from marcel) Message-Id: <200409020614.i826EgDd039487@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 2 Sep 2004 06:14:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/tga tga_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 06:14:43 -0000 marcel 2004-09-02 06:14:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/tga tga_pci.c Log: MFC rev 1.9 & 1.10: Do not match TGA2 adapters. They are not compatible with TGA adapters, nor are they 3D accelarators as the description would like us to believe. Since the TGA2 adapter has a VGA mode (unlike the TGA adapter), one can use the VGA driver instead. Remove redundant _FBSDID. Approved by: re (scottl) Revision Changes Path 1.8.2.1 +0 -5 src/sys/dev/tga/tga_pci.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 06:22:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DB6F16A4CE; Thu, 2 Sep 2004 06:22:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D1C143D1F; Thu, 2 Sep 2004 06:22:17 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i826MH9T040012; Thu, 2 Sep 2004 06:22:17 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i826MHFO040011; Thu, 2 Sep 2004 06:22:17 GMT (envelope-from den) Message-Id: <200409020622.i826MHFO040011@repoman.freebsd.org> From: Denis Peplin Date: Thu, 2 Sep 2004 06:22:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R/relnotes/i386 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 06:22:17 -0000 den 2004-09-02 06:22:17 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R/relnotes/i386 Makefile Log: Fix URL_RELPREFIX Revision Changes Path 1.3 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/i386/Makefile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 06:47:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C33C16A4CE; Thu, 2 Sep 2004 06:47:56 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E2E43D2D; Thu, 2 Sep 2004 06:47:55 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i826lntt050963 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 2 Sep 2004 09:47:50 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i826lnDs043774; Thu, 2 Sep 2004 09:47:49 +0300 (EEST) (envelope-from ru) Date: Thu, 2 Sep 2004 09:47:49 +0300 From: Ruslan Ermilov To: Alfred Perlstein Message-ID: <20040902064749.GB43702@ip.net.ua> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> <20040901204452.GO31434@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aVD9QWMuhilNxW9f" Content-Disposition: inline In-Reply-To: <20040901204452.GO31434@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: "Justin T. Gibbs" cc: cvs-src@freebsd.org cc: Brooks Davis cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 06:47:56 -0000 --aVD9QWMuhilNxW9f Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 01, 2004 at 01:44:52PM -0700, Alfred Perlstein wrote: > * Justin T. Gibbs [040901 13:43] wrote: > >=20 > > > brooks 2004-09-01 18:22:14 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sbin/ifconfig ifconfig.c=20 > > > sys/net if.c if.h=20 > > > Log: > > > Use a spare byte in struct if_data to store the structure size with= out > > > increasing it. Add code to ifconfig to use this size to find the > > > sockaddr_dl after the struct if_data in the routing message. This > > > allows struct if_data to grow (up to 255 bytes) without breaking > > > ifconfig. > >=20 > > You could squeeze out 256 bytes if you treat 0 as meaning 256 - just li= ke > > the SCSI protocol. >=20 > Or treat 0 as "look at some other location for length" of int width. :) >=20 That wouldn't be backwards compatible, which was the intent. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --aVD9QWMuhilNxW9f Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBNsIVqRfpzJluFF4RAjFfAJ9iPqZ1r2M+8lheJZP1LhuMAu/iMwCeP6OH HNScStxiAoMWPVNXe7GxIE8= =uvh/ -----END PGP SIGNATURE----- --aVD9QWMuhilNxW9f-- From owner-cvs-src@FreeBSD.ORG Thu Sep 2 09:29:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9085816A4CF; Thu, 2 Sep 2004 09:29:19 +0000 (GMT) Received: from mail06.syd.optusnet.com.au (mail06.syd.optusnet.com.au [211.29.132.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id F007843D54; Thu, 2 Sep 2004 09:29:18 +0000 (GMT) (envelope-from PeterJeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (c211-30-75-229.belrs2.nsw.optusnet.com.au [211.30.75.229]) i829THcL015888 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 2 Sep 2004 19:29:18 +1000 Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])i829THxP061997; Thu, 2 Sep 2004 19:29:17 +1000 (EST) (envelope-from pjeremy@cirb503493.alcatel.com.au) Received: (from pjeremy@localhost)i829TGFA061996; Thu, 2 Sep 2004 19:29:17 +1000 (EST) (envelope-from pjeremy) Date: Thu, 2 Sep 2004 19:29:16 +1000 From: Peter Jeremy To: Brooks Davis Message-ID: <20040902092916.GA61915@cirb503493.alcatel.com.au> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> User-Agent: Mutt/1.4.2i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 09:29:19 -0000 On Wed, 2004-Sep-01 14:44:45 -0600, Justin T. Gibbs wrote: >You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like >the SCSI protocol. It's too late now but you could support 1020 bytes by counting 4-byte words instead of bytes. This doesn't lose anything because the struct will always be padded to a multiple of 4 or 8 bytes. -- Peter Jeremy From owner-cvs-src@FreeBSD.ORG Thu Sep 2 11:15:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1575B16A4CF; Thu, 2 Sep 2004 11:15:12 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E401443D31; Thu, 2 Sep 2004 11:15:11 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id D94585C91F; Thu, 2 Sep 2004 04:15:11 -0700 (PDT) Date: Thu, 2 Sep 2004 04:15:11 -0700 From: Alfred Perlstein To: Ruslan Ermilov Message-ID: <20040902111511.GR31434@elvis.mu.org> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> <20040901204452.GO31434@elvis.mu.org> <20040902064749.GB43702@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040902064749.GB43702@ip.net.ua> User-Agent: Mutt/1.4.2.1i cc: "Justin T. Gibbs" cc: cvs-src@freebsd.org cc: Brooks Davis cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 11:15:12 -0000 * Ruslan Ermilov [040901 23:47] wrote: > On Wed, Sep 01, 2004 at 01:44:52PM -0700, Alfred Perlstein wrote: > > * Justin T. Gibbs [040901 13:43] wrote: > > > > > > > brooks 2004-09-01 18:22:14 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sbin/ifconfig ifconfig.c > > > > sys/net if.c if.h > > > > Log: > > > > Use a spare byte in struct if_data to store the structure size without > > > > increasing it. Add code to ifconfig to use this size to find the > > > > sockaddr_dl after the struct if_data in the routing message. This > > > > allows struct if_data to grow (up to 255 bytes) without breaking > > > > ifconfig. > > > > > > You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like > > > the SCSI protocol. > > > > Or treat 0 as "look at some other location for length" of int width. :) > > > That wouldn't be backwards compatible, which was the intent. or 255 or some other escape sequence. :) -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 12:50:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 336A316A4CE; Thu, 2 Sep 2004 12:50:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51CE43D41; Thu, 2 Sep 2004 12:50:47 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82ColRA053358; Thu, 2 Sep 2004 12:50:47 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82ColQ7053357; Thu, 2 Sep 2004 12:50:47 GMT (envelope-from ru) Message-Id: <200409021250.i82ColQ7053357@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 2 Sep 2004 12:50:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 12:50:48 -0000 ru 2004-09-02 12:50:47 UTC FreeBSD src repository Modified files: sys/pc98/conf NOTES Log: MFi386: revision 1.1172. Revision Changes Path 1.43 +19 -13 src/sys/pc98/conf/NOTES From owner-cvs-src@FreeBSD.ORG Thu Sep 2 13:40:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDE2616A4CE; Thu, 2 Sep 2004 13:40:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC2F843D1D; Thu, 2 Sep 2004 13:40:34 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82DeY9s054868; Thu, 2 Sep 2004 13:40:34 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82DeY1D054867; Thu, 2 Sep 2004 13:40:34 GMT (envelope-from keramida) Message-Id: <200409021340.i82DeY1D054867@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 2 Sep 2004 13:40:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release fixit.profile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 13:40:35 -0000 keramida 2004-09-02 13:40:34 UTC FreeBSD src repository (doc committer) Modified files: release fixit.profile Log: Minor wordsmithing of the fixit media login message. Approved by: re Revision Changes Path 1.10 +2 -2 src/release/fixit.profile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 13:45:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCB4B16A4CE; Thu, 2 Sep 2004 13:45:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD61E43D49; Thu, 2 Sep 2004 13:45:24 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82DjOEn055045; Thu, 2 Sep 2004 13:45:24 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82DjOLb055044; Thu, 2 Sep 2004 13:45:24 GMT (envelope-from keramida) Message-Id: <200409021345.i82DjOLb055044@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 2 Sep 2004 13:45:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release fixit.profile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 13:45:25 -0000 keramida 2004-09-02 13:45:24 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release fixit.profile Log: Minor wordsmithing of the fixit media login message. Approved by: re Revision Changes Path 1.9.8.1 +2 -2 src/release/fixit.profile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 14:34:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99FC816A4CE; Thu, 2 Sep 2004 14:34:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79AED43D5D; Thu, 2 Sep 2004 14:34:28 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82EYSUw059843; Thu, 2 Sep 2004 14:34:28 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82EYSqC059842; Thu, 2 Sep 2004 14:34:28 GMT (envelope-from nectar) Message-Id: <200409021434.i82EYSqC059842@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 2 Sep 2004 14:34:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libz infback.c inflate.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 14:34:28 -0000 nectar 2004-09-02 14:34:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libz infback.c inflate.c Log: MFC infback.c 1.2, inflate.c 1.5: Correct a denial-of-service vulnerability in zlib. Approved by: re (scottl) Revision Changes Path 1.1.1.1.2.1 +3 -0 src/lib/libz/infback.c 1.4.2.1 +4 -1 src/lib/libz/inflate.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 14:47:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6033816A4CE; Thu, 2 Sep 2004 14:47:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53AE443D5C; Thu, 2 Sep 2004 14:47:38 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82ElcFH062797; Thu, 2 Sep 2004 14:47:38 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82Elcbt062786; Thu, 2 Sep 2004 14:47:38 GMT (envelope-from csjp) Message-Id: <200409021447.i82Elcbt062786@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 2 Sep 2004 14:47:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netinet ip_mroute.c raw_ip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 14:47:38 -0000 csjp 2004-09-02 14:47:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet ip_mroute.c raw_ip.c Log: MFC netinet/ip_mroute.c v.1.107 MFC netinet/raw_ip.c v1.143 When a prison is given the ability to create raw sockets (when the security.jail.allow_raw_sockets sysctl MIB is set to 1) where privileged access to jails is given out, it is possible for prison root to manipulate various network parameters which effect the host environment. This commit plugs a number of security holes associated with the use of raw sockets and prisons. This commit makes the following changes: - Add a comment to rtioctl warning developers that if they add any ioctl commands, they should use super-user checks where necessary, as it is possible for PRISON root to make it this far in execution. - Add super-user checks for the execution of the SIOCGETVIFCNT and SIOCGETSGCNT IP multicast ioctl commands. - Add a super-user check to rip_ctloutput(). If the calling cred is PRISON root, make sure the socket option name is IP_HDRINCL, otherwise deny the request. Although this patch corrects a number of security problems associated with raw sockets and prisons, the warning in jail(8) should still apply, and by default we should keep the default value of security.jail.allow_raw_sockets MIB to 0 (or disabled) until we are certain that we have tracked down all the problems. Looking forward, we will probably want to eliminate the references to curthread. Approved by: re (kensmith) Revision Changes Path 1.106.2.1 +8 -0 src/sys/netinet/ip_mroute.c 1.142.2.1 +10 -0 src/sys/netinet/raw_ip.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 14:49:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7391516A4CE; Thu, 2 Sep 2004 14:49:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6733743D45; Thu, 2 Sep 2004 14:49:35 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82EnZ4e065463; Thu, 2 Sep 2004 14:49:35 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82EnZ65065461; Thu, 2 Sep 2004 14:49:35 GMT (envelope-from csjp) Message-Id: <200409021449.i82EnZ65065461@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 2 Sep 2004 14:49:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 14:49:35 -0000 csjp 2004-09-02 14:49:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/net route.c Log: MFC net/route.c v1.107 When a prison is given the ability to create raw sockets (when the security.jail.allow_raw_sockets sysctl MIB is set to 1) where privileged access to jails is given out, it is possible for prison root to manipulate various network parameters which effect the host environment. This commit plugs a number of security holes associated with the use of raw sockets and prisons. This commit makes the following changes: - Add a comment to rtioctl warning developers that if they add any ioctl commands, they should use super-user checks where necessary, as it is possible for PRISON root to make it this far in execution. - Add super-user checks for the execution of the SIOCGETVIFCNT and SIOCGETSGCNT IP multicast ioctl commands. - Add a super-user check to rip_ctloutput(). If the calling cred is PRISON root, make sure the socket option name is IP_HDRINCL, otherwise deny the request. Although this patch corrects a number of security problems associated with raw sockets and prisons, the warning in jail(8) should still apply, and by default we should keep the default value of security.jail.allow_raw_sockets MIB to 0 (or disabled) until we are certain that we have tracked down all the problems. Looking forward, we will probably want to eliminate the references to curthread. Approved by: re (kensmith) Revision Changes Path 1.106.2.1 +7 -0 src/sys/net/route.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 14:51:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60E2816A4CE; Thu, 2 Sep 2004 14:51:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4000543D45; Thu, 2 Sep 2004 14:51:18 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82EpIZG066469; Thu, 2 Sep 2004 14:51:18 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82EpIA1066468; Thu, 2 Sep 2004 14:51:18 GMT (envelope-from bmah) Message-Id: <200409021451.i82EpIA1066468@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 2 Sep 2004 14:51:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/share/examples Makefile.relnotesng src/release/doc/share/sgml release.ent X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 14:51:18 -0000 bmah 2004-09-02 14:51:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/share/examples Makefile.relnotesng release/doc/share/sgml release.ent Log: Update the version number in the release documentation to reflect the current pre-5.3 state of this branch and change the upload location for relnotesNG snapshots. Approved by: re (hrs) Revision Changes Path 1.9.4.1 +1 -1 src/release/doc/share/examples/Makefile.relnotesng 1.18.2.1 +1 -1 src/release/doc/share/sgml/release.ent From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:24:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B0116A4CF; Thu, 2 Sep 2004 15:24:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C036843D53; Thu, 2 Sep 2004 15:24:38 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FOcZF087448; Thu, 2 Sep 2004 15:24:38 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FOc5K087447; Thu, 2 Sep 2004 15:24:38 GMT (envelope-from gibbs) Message-Id: <200409021524.i82FOc5K087447@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:24:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:24:39 -0000 gibbs 2004-09-02 15:24:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/isa psm.c Log: MFC: Improve sync error recovery (revs 1.80 and 1.81). Approved by: re Revision Changes Path 1.79.2.1 +120 -98 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:25:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 277BE16A4D0; Thu, 2 Sep 2004 15:25:15 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 083B143D60; Thu, 2 Sep 2004 15:25:15 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i82FPlTm004737; Thu, 2 Sep 2004 08:25:47 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i82FPlrE004736; Thu, 2 Sep 2004 08:25:47 -0700 Date: Thu, 2 Sep 2004 08:25:46 -0700 From: Brooks Davis To: Peter Jeremy Message-ID: <20040902152546.GA3801@odin.ac.hmc.edu> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <73F8DDC079929FAA3D43CA2E@caspian.scsiguy.com> <20040902092916.GA61915@cirb503493.alcatel.com.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline In-Reply-To: <20040902092916.GA61915@cirb503493.alcatel.com.au> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: cvs-src@freebsd.org cc: Brooks Davis cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:25:15 -0000 --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 02, 2004 at 07:29:16PM +1000, Peter Jeremy wrote: > On Wed, 2004-Sep-01 14:44:45 -0600, Justin T. Gibbs wrote: > >You could squeeze out 256 bytes if you treat 0 as meaning 256 - just like > >the SCSI protocol. >=20 > It's too late now but you could support 1020 bytes by counting 4-byte > words instead of bytes. This doesn't lose anything because the struct > will always be padded to a multiple of 4 or 8 bytes. Yah, I that occured to me as well, but too late to do anything about it. I suppose we could redefine the unused values (odd numbers and multiples of 2 by not 4) to do that, but I think I'll leave that pressure in place to encourage someone to redo the routing socket API. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --HcAYCG3uE/tztfnV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBNzt2XY6L6fI4GtQRAtB3AJ0QpoV/GIy52FlYSw2jqdeNOeFp3wCfcI/7 qRfwrCS5nRLGJDzcL1FOPM8= =nSt6 -----END PGP SIGNATURE----- --HcAYCG3uE/tztfnV-- From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:29:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DFD216A4CE; Thu, 2 Sep 2004 15:29:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DF3B43D1F; Thu, 2 Sep 2004 15:29:40 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FTehZ087684; Thu, 2 Sep 2004 15:29:40 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FTeQM087683; Thu, 2 Sep 2004 15:29:40 GMT (envelope-from gibbs) Message-Id: <200409021529.i82FTeQM087683@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:29:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:29:40 -0000 gibbs 2004-09-02 15:29:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/aic7xxx aic7xxx_pci.c Log: MFC: Correct argument order in PCI config space operations used to handle PCI error interrupts. Approved by: re Revision Changes Path 1.32.2.1 +7 -6 src/sys/dev/aic7xxx/aic7xxx_pci.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:31:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86BC516A4CF; Thu, 2 Sep 2004 15:31:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60BFF43D2D; Thu, 2 Sep 2004 15:31:21 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FVLXw087808; Thu, 2 Sep 2004 15:31:21 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FVLuv087807; Thu, 2 Sep 2004 15:31:21 GMT (envelope-from gibbs) Message-Id: <200409021531.i82FVLuv087807@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:31:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/aic7xxx aic79xx_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:31:21 -0000 gibbs 2004-09-02 15:31:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/aic7xxx aic79xx_pci.c Log: MFC: Set AHD_BUSFREEREV_BUG in the bugs, not features, field of our softc. Approved by: re Revision Changes Path 1.20.2.1 +3 -3 src/sys/dev/aic7xxx/aic79xx_pci.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:32:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A90A416A4D0; Thu, 2 Sep 2004 15:32:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8864043D45; Thu, 2 Sep 2004 15:32:05 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FW5f4087851; Thu, 2 Sep 2004 15:32:05 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FW5FH087850; Thu, 2 Sep 2004 15:32:05 GMT (envelope-from gibbs) Message-Id: <200409021532.i82FW5FH087850@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:32:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:32:05 -0000 gibbs 2004-09-02 15:32:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/aic7xxx aic79xx.h Log: MFC: Remove stale EISA constants from initial port from the aic7xxx driver Approved by: re Revision Changes Path 1.21.2.1 +0 -13 src/sys/dev/aic7xxx/aic79xx.h From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:33:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9247516A4CE; Thu, 2 Sep 2004 15:33:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F8D43D2F; Thu, 2 Sep 2004 15:33:15 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FXFdm087893; Thu, 2 Sep 2004 15:33:15 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FXFYG087892; Thu, 2 Sep 2004 15:33:15 GMT (envelope-from gibbs) Message-Id: <200409021533.i82FXFYG087892@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:33:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:33:15 -0000 gibbs 2004-09-02 15:33:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/aic7xxx aic79xx.c Log: MFC: Correct polarity of logic to avoid unecessary bus resets during timeout recovery. Approved by: re Revision Changes Path 1.31.2.1 +2 -2 src/sys/dev/aic7xxx/aic79xx.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:36:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F35316A4CE; Thu, 2 Sep 2004 15:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4134543D3F; Thu, 2 Sep 2004 15:36:04 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82Fa4fF088023; Thu, 2 Sep 2004 15:36:04 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82Fa4wB088022; Thu, 2 Sep 2004 15:36:04 GMT (envelope-from gibbs) Message-Id: <200409021536.i82Fa4wB088022@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Thu, 2 Sep 2004 15:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/aic7xxx ahc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:36:04 -0000 gibbs 2004-09-02 15:36:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/aic7xxx ahc_isa.c Log: MFC: Correct a spelling error in a comment. Approved by: re Revision Changes Path 1.1.2.2 +1 -1 src/sys/dev/aic7xxx/ahc_isa.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 15:41:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B3D016A4CE; Thu, 2 Sep 2004 15:41:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19CD943D45; Thu, 2 Sep 2004 15:41:45 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82FfiAi088191; Thu, 2 Sep 2004 15:41:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82FfiP0088190; Thu, 2 Sep 2004 15:41:44 GMT (envelope-from rwatson) Message-Id: <200409021541.i82FfiP0088190@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 15:41:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netgraph ng_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 15:41:45 -0000 rwatson 2004-09-02 15:41:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph ng_socket.c Log: Merge ng_socket.c:1.54 to RELENG_5: date: 2004/08/30 14:41:25; author: rwatson; state: Exp; lines: +2 -0 Acquire Giant arounds calls into the linker from Netgraph sockets. We now no longer hold Giant in send(), so it isn't inheritted by the linker, which calls into VFS. Reported by: glebius Discussed with: glebius, bz Approved by: re (kensmith) Revision Changes Path 1.53.2.1 +2 -0 src/sys/netgraph/ng_socket.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 16:04:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24E5516A4CE; Thu, 2 Sep 2004 16:04:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05C7843D45; Thu, 2 Sep 2004 16:04:10 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82G496U088840; Thu, 2 Sep 2004 16:04:09 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82G49Vv088839; Thu, 2 Sep 2004 16:04:09 GMT (envelope-from rwatson) Message-Id: <200409021604.i82G49Vv088839@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 16:04:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 16:04:10 -0000 rwatson 2004-09-02 16:04:09 UTC FreeBSD src repository Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Back out pseudo_vnops.c:1.45, which was a workaround for pfind() returning incompletely initialized processes. This problem was eliminated by kern_proc.c:1.215, which causes pfind() not to return processes in the PRS_NEW state. Revision Changes Path 1.46 +0 -11 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 17:59:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA38A16A4CE; Thu, 2 Sep 2004 17:59:40 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A966643D55; Thu, 2 Sep 2004 17:59:40 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i82HxWe4008586; Thu, 2 Sep 2004 10:59:32 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i82HxUS8008585; Thu, 2 Sep 2004 10:59:30 -0700 (PDT) (envelope-from obrien) Date: Thu, 2 Sep 2004 10:59:30 -0700 From: "David O'Brien" To: Julian Elischer Message-ID: <20040902175930.GA8551@dragon.nuxi.com> References: <200409011829.i81ITvq9017808@repoman.freebsd.org> <4136333C.8090207@elischer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4136333C.8090207@elischer.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: Dag-Erling Sm?rgrav cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 17:59:41 -0000 On Wed, Sep 01, 2004 at 01:38:20PM -0700, Julian Elischer wrote: > I'm rapidly coming to that conclusion myself.. > > breaks all over the place because so many places pretend to be the > kernel when they are not. What it really means is we haven't provided a sufficient API for userland to get a kernel data that obviously is needed. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Thu Sep 2 18:05:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA96316A4CE; Thu, 2 Sep 2004 18:05:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBF8A43D48; Thu, 2 Sep 2004 18:05:26 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82I5Qmr092954; Thu, 2 Sep 2004 18:05:26 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82I5QET092953; Thu, 2 Sep 2004 18:05:26 GMT (envelope-from marcel) Message-Id: <200409021805.i82I5QET092953@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 2 Sep 2004 18:05:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 18:05:27 -0000 marcel 2004-09-02 18:05:26 UTC FreeBSD src repository Modified files: sys/ia64/conf GENERIC Log: Add aac(4) and aacp(4). The driver is 64-bit clean for roughly a year now and has been mentioned on the freebsd-ia64 list. Revision Changes Path 1.69 +2 -0 src/sys/ia64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Sep 2 18:12:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06D8616A4CE; Thu, 2 Sep 2004 18:12:17 +0000 (GMT) Received: from mail.vicor-nb.com (bigwoop.vicor-nb.com [208.206.78.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7E0743D58; Thu, 2 Sep 2004 18:12:16 +0000 (GMT) (envelope-from julian@elischer.org) Received: from elischer.org (julian.vicor-nb.com [208.206.78.97]) by mail.vicor-nb.com (Postfix) with ESMTP id A93567A427; Thu, 2 Sep 2004 11:12:16 -0700 (PDT) Message-ID: <41376280.6050801@elischer.org> Date: Thu, 02 Sep 2004 11:12:16 -0700 From: Julian Elischer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030516 X-Accept-Language: en, hu MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200409011829.i81ITvq9017808@repoman.freebsd.org> <4136333C.8090207@elischer.org> <20040902175930.GA8551@dragon.nuxi.com> In-Reply-To: <20040902175930.GA8551@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Dag-Erling Sm?rgrav cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 18:12:17 -0000 David O'Brien wrote: >On Wed, Sep 01, 2004 at 01:38:20PM -0700, Julian Elischer wrote: > > >>I'm rapidly coming to that conclusion myself.. >> >>breaks all over the place because so many places pretend to be the >>kernel when they are not. >> >> >> > >What it really means is we haven't provided a sufficient API for userland >to get a kernel data that obviously is needed. > yes.. it's tricky.. should we define a "_KERNEL_INTERFACE" or something? how about _REALLY_IS_KERNEL which defines _KERNEL so if you just need the interface you define _KERNEL but include files cna protect REALLY internal stuff with "#ifdef _REALLY_IS_KERNEL suggestions welcome. > > > From owner-cvs-src@FreeBSD.ORG Thu Sep 2 18:36:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E4DB16A4CE; Thu, 2 Sep 2004 18:36:45 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 196B043D49; Thu, 2 Sep 2004 18:36:45 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id EFAE48803; Thu, 2 Sep 2004 11:36:44 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Thu, 2 Sep 2004 11:36:44 -0700 User-Agent: KMail/1.6.2 References: <200409011822.i81IMERb017602@repoman.freebsd.org> <20040902092916.GA61915@cirb503493.alcatel.com.au> <20040902152546.GA3801@odin.ac.hmc.edu> In-Reply-To: <20040902152546.GA3801@odin.ac.hmc.edu> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409021136.44582.peter@wemm.org> cc: Peter Jeremy cc: Brooks Davis cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 18:36:45 -0000 On Thursday 02 September 2004 08:25 am, Brooks Davis wrote: > On Thu, Sep 02, 2004 at 07:29:16PM +1000, Peter Jeremy wrote: > > On Wed, 2004-Sep-01 14:44:45 -0600, Justin T. Gibbs wrote: > > >You could squeeze out 256 bytes if you treat 0 as meaning 256 - > > > just like the SCSI protocol. > > > > It's too late now but you could support 1020 bytes by counting > > 4-byte words instead of bytes. This doesn't lose anything because > > the struct will always be padded to a multiple of 4 or 8 bytes. > > Yah, I that occured to me as well, but too late to do anything about > it. I suppose we could redefine the unused values (odd numbers and > multiples of 2 by not 4) to do that, but I think I'll leave that > pressure in place to encourage someone to redo the routing socket > API. BTW, in case nobody noticed.. nothing sets the routing socket abi version number, and nothing checks it. No versions are even defined. Well.. version 0 is implicit I guess. :-) -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 18:37:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8D8116A4CE; Thu, 2 Sep 2004 18:37:52 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id C656543D41; Thu, 2 Sep 2004 18:37:52 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id B53AA8803; Thu, 2 Sep 2004 11:37:52 -0700 (PDT) From: Peter Wemm To: Brooks Davis Date: Thu, 2 Sep 2004 11:37:52 -0700 User-Agent: KMail/1.6.2 References: <200409011822.i81IMERb017602@repoman.freebsd.org> In-Reply-To: <200409011822.i81IMERb017602@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409021137.52410.peter@wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 18:37:53 -0000 On Wednesday 01 September 2004 11:22 am, Brooks Davis wrote: > brooks 2004-09-01 18:22:14 UTC > > FreeBSD src repository > > Modified files: > sbin/ifconfig ifconfig.c > sys/net if.c if.h > Log: > Use a spare byte in struct if_data to store the structure size > without increasing it. Add code to ifconfig to use this size to find > the sockaddr_dl after the struct if_data in the routing message. > This allows struct if_data to grow (up to 255 bytes) without breaking > ifconfig. > > Submitted by: peter > > Revision Changes Path > 1.107 +4 -1 src/sbin/ifconfig/ifconfig.c > 1.202 +1 -0 src/sys/net/if.c > 1.90 +1 -0 src/sys/net/if.h I'd like this to get into 5.x if possible too. It'll ease cross-booting of 5.x and 6.x kernels for a while. Granted, that wont be a good thing to do after things diverge more, but for now this will help. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 18:59:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2AEC16A4CE; Thu, 2 Sep 2004 18:59:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C69C543D1D; Thu, 2 Sep 2004 18:59:15 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82IxFJQ094924; Thu, 2 Sep 2004 18:59:15 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82IxFS3094923; Thu, 2 Sep 2004 18:59:15 GMT (envelope-from scottl) Message-Id: <200409021859.i82IxFS3094923@repoman.freebsd.org> From: Scott Long Date: Thu, 2 Sep 2004 18:59:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/include param.h src/sys/amd64/include param.h src/sys/conf NOTES options src/sys/i386/include param.h src/sys/kern kern_mutex.c kern_shutdown.c kern_switch.c sched_ule.c src/sys/vm vm_zeroidle.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 18:59:16 -0000 scottl 2004-09-02 18:59:15 UTC FreeBSD src repository Modified files: sys/alpha/include param.h sys/amd64/include param.h sys/conf NOTES options sys/i386/include param.h sys/kern kern_mutex.c kern_shutdown.c kern_switch.c sched_ule.c sys/vm vm_zeroidle.c Log: Turn PREEMPTION into a kernel option. Make sure that it's defined if FULL_PREEMPTION is defined. Add a runtime warning to ULE if PREEMPTION is enabled (code inspired by the PREEMPTION warning in kern_switch.c). This is a possible MT5 candidate. Revision Changes Path 1.36 +0 -5 src/sys/alpha/include/param.h 1.14 +0 -5 src/sys/amd64/include/param.h 1.1272 +6 -1 src/sys/conf/NOTES 1.482 +2 -1 src/sys/conf/options 1.78 +0 -5 src/sys/i386/include/param.h 1.149 +1 -0 src/sys/kern/kern_mutex.c 1.166 +1 -0 src/sys/kern/kern_shutdown.c 1.84 +5 -1 src/sys/kern/kern_switch.c 1.124 +14 -0 src/sys/kern/sched_ule.c 1.29 +2 -0 src/sys/vm/vm_zeroidle.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 19:01:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B69AD16A4CE; Thu, 2 Sep 2004 19:01:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 968F743D41; Thu, 2 Sep 2004 19:01:48 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82J1mPF095311; Thu, 2 Sep 2004 19:01:48 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82J1mUe095310; Thu, 2 Sep 2004 19:01:48 GMT (envelope-from marcel) Message-Id: <200409021901.i82J1mUe095310@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 2 Sep 2004 19:01:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/ia64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 19:01:48 -0000 marcel 2004-09-02 19:01:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/ia64/conf GENERIC Log: MFC rev 1.67: remove asr(4), rev 1.69: add aac(4) and aacp(4). Approved by: re (blanket) Revision Changes Path 1.66.2.1 +2 -1 src/sys/ia64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Sep 2 19:52:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B11B916A4CE; Thu, 2 Sep 2004 19:52:07 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A9DC43D41; Thu, 2 Sep 2004 19:52:07 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i82JqgNv012153; Thu, 2 Sep 2004 12:52:42 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i82JqgmQ012152; Thu, 2 Sep 2004 12:52:42 -0700 Date: Thu, 2 Sep 2004 12:52:42 -0700 From: Brooks Davis To: Peter Wemm Message-ID: <20040902195242.GB10756@odin.ac.hmc.edu> References: <200409011822.i81IMERb017602@repoman.freebsd.org> <200409021137.52410.peter@wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pvezYHf7grwyp3Bc" Content-Disposition: inline In-Reply-To: <200409021137.52410.peter@wemm.org> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 19:52:08 -0000 --pvezYHf7grwyp3Bc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 02, 2004 at 11:37:52AM -0700, Peter Wemm wrote: > On Wednesday 01 September 2004 11:22 am, Brooks Davis wrote: > > brooks 2004-09-01 18:22:14 UTC > > > > FreeBSD src repository > > > > Modified files: > > sbin/ifconfig ifconfig.c > > sys/net if.c if.h > > Log: > > Use a spare byte in struct if_data to store the structure size > > without increasing it. Add code to ifconfig to use this size to find > > the sockaddr_dl after the struct if_data in the routing message.=20 > > This allows struct if_data to grow (up to 255 bytes) without breaking > > ifconfig. > > > > Submitted by: peter > > > > Revision Changes Path > > 1.107 +4 -1 src/sbin/ifconfig/ifconfig.c > > 1.202 +1 -0 src/sys/net/if.c > > 1.90 +1 -0 src/sys/net/if.h >=20 > I'd like this to get into 5.x if possible too. It'll ease cross-booting= =20 > of 5.x and 6.x kernels for a while. Granted, that wont be a good thing= =20 > to do after things diverge more, but for now this will help. That's my plan. It needs another two days in current before I can submit and MT5 request though. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --pvezYHf7grwyp3Bc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBN3oJXY6L6fI4GtQRAp1PAJ4vGb9OF+LZ2EJHzvMJm9w+NZP1DwCfTBvy 2DUwVeidX7XGLJDIYfqOMvo= =4v9y -----END PGP SIGNATURE----- --pvezYHf7grwyp3Bc-- From owner-cvs-src@FreeBSD.ORG Thu Sep 2 19:53:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC78316A4CE; Thu, 2 Sep 2004 19:53:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCF2C43D55; Thu, 2 Sep 2004 19:53:13 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82JrD0h097188; Thu, 2 Sep 2004 19:53:13 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82JrDWG097187; Thu, 2 Sep 2004 19:53:13 GMT (envelope-from rwatson) Message-Id: <200409021953.i82JrDWG097187@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 19:53:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_ksocket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 19:53:14 -0000 rwatson 2004-09-02 19:53:13 UTC FreeBSD src repository Modified files: sys/netgraph ng_ksocket.c Log: In FreeBSD 5.x, curthread is always defined, so we don't need to to test and optionally use &thread0 if it's NULL. Spotted by: julian Revision Changes Path 1.47 +3 -3 src/sys/netgraph/ng_ksocket.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 19:53:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0A2316A4CE; Thu, 2 Sep 2004 19:53:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D4643D45; Thu, 2 Sep 2004 19:53:40 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82Jreua097223; Thu, 2 Sep 2004 19:53:40 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82JreHN097222; Thu, 2 Sep 2004 19:53:40 GMT (envelope-from brueffer) Message-Id: <200409021953.i82JreHN097222@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 2 Sep 2004 19:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 19:53:41 -0000 brueffer 2004-09-02 19:53:40 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: aac works in ia64, twe and twa seem to work on amd64 (though not officially supported by 3ware) MFC after: 3 days Revision Changes Path 1.16 +3 -3 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:08:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D1C16A4D1; Thu, 2 Sep 2004 20:08:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E5143D1F; Thu, 2 Sep 2004 20:08:41 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82K8fRX097750; Thu, 2 Sep 2004 20:08:41 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82K8fJ6097749; Thu, 2 Sep 2004 20:08:41 GMT (envelope-from cperciva) Message-Id: <200409022008.i82K8fJ6097749@repoman.freebsd.org> From: Colin Percival Date: Thu, 2 Sep 2004 20:08:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:08:42 -0000 cperciva 2004-09-02 20:08:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/md md.c Log: MFC rev. 1.129. (Attempt #2 to fix this problem without breaking anything else.) When creating a new md, g_waitidle() to make sure the /dev entry gets created before mdconfig(8) returns, *but only if it's not a preloaded md*. Approved by: re (kensmith) Revision Changes Path 1.127.2.3 +2 -0 src/sys/dev/md/md.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:14:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F09816A4CE; Thu, 2 Sep 2004 20:14:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E22FD43D39; Thu, 2 Sep 2004 20:14:03 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82KE3Im097932; Thu, 2 Sep 2004 20:14:03 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82KE3dT097931; Thu, 2 Sep 2004 20:14:03 GMT (envelope-from rwatson) Message-Id: <200409022014.i82KE3dT097931@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 20:14:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:14:04 -0000 rwatson 2004-09-02 20:14:03 UTC FreeBSD src repository Modified files: sys/netkey key.c Log: The KAME IPSEC implementation at one point used its own pseudo-random number generator, which was re-seeded via a timeout. Now centralized randomness/entropy is used, we can garbage collect the timeout and re-seeding code (which was largely a no-op). Discussed with: itojun, suz, JINMEI Tatuya < jinmei at isl dot rdc dot toshiba dot co dot jp > Revision Changes Path 1.67 +0 -22 src/sys/netkey/key.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:15:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A16C516A4E4; Thu, 2 Sep 2004 20:15:11 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB94743D4C; Thu, 2 Sep 2004 20:15:10 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i82KF4X0071046 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 2 Sep 2004 23:15:05 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i82KF4o8003109; Thu, 2 Sep 2004 23:15:04 +0300 (EEST) (envelope-from ru) Date: Thu, 2 Sep 2004 23:15:04 +0300 From: Ruslan Ermilov To: Colin Percival Message-ID: <20040902201504.GF2671@ip.net.ua> References: <200409022008.i82K8fJ6097749@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Mjqg7Yu+0hL22rav" Content-Disposition: inline In-Reply-To: <200409022008.i82K8fJ6097749@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:15:11 -0000 --Mjqg7Yu+0hL22rav Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 02, 2004 at 08:08:41PM +0000, Colin Percival wrote: > cperciva 2004-09-02 20:08:41 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_5) > sys/dev/md md.c=20 > Log: > MFC rev. 1.129. (Attempt #2 to fix this problem without breaking > anything else.) > =20 > When creating a new md, g_waitidle() to make sure the /dev entry gets > created before mdconfig(8) returns, *but only if it's not a preloaded > md*. > =20 > Approved by: re (kensmith) > =20 > Revision Changes Path > 1.127.2.3 +2 -0 src/sys/dev/md/md.c >=20 Thank you! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Mjqg7Yu+0hL22rav Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBN39IqRfpzJluFF4RApGRAJ4zFAULEckELaU5J+o8sTIBmRreJACgjcwK hNAuNcUDikwRfEV+pjf/JMM= =awID -----END PGP SIGNATURE----- --Mjqg7Yu+0hL22rav-- From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:18:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C327916A4CE; Thu, 2 Sep 2004 20:18:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25D143D49; Thu, 2 Sep 2004 20:18:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82KI2G1098111; Thu, 2 Sep 2004 20:18:02 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82KI28M098110; Thu, 2 Sep 2004 20:18:02 GMT (envelope-from rwatson) Message-Id: <200409022018.i82KI28M098110@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 20:18:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 raw_ip6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:18:02 -0000 rwatson 2004-09-02 20:18:02 UTC FreeBSD src repository Modified files: sys/netinet6 raw_ip6.c Log: Unlock rather than lock the ripcbinfo lock at the end of rip6_input(). RELENG_5 candidate. Foot provided by: Patrick Guelat Revision Changes Path 1.46 +1 -1 src/sys/netinet6/raw_ip6.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:30:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B6DA16A4CF; Thu, 2 Sep 2004 20:30:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EA1343D1D; Thu, 2 Sep 2004 20:30:06 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82KU66W098406; Thu, 2 Sep 2004 20:30:06 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82KU6Lh098405; Thu, 2 Sep 2004 20:30:06 GMT (envelope-from hrs) Message-Id: <200409022030.i82KU6Lh098405@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 2 Sep 2004 20:30:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:30:06 -0000 hrs 2004-09-02 20:30:06 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes (changes in the second half of July and the first half of August 2004): NO_ADAPTIVE_MUTEXES, ADAPTIVE_GIANT, acpi_panasonic(4) added, contigmalloc(9) reimplemented (vm.old_contigmalloc added), hme(4) checksum offload support, {mem,io}.ko added, pcic(4) removed completely from GENERIC kernel configuration file, psm(4) Synaptics TouchPad support, Thread Local Storage (TLS) support, ipfw(4) antispoof option, GEOM_MIRROR class and gmirror(8) added, col(1), colcrt(1), colrm(1), column(1), and fmt(1) multibyte characters support, df(1) bugfix, ftpd(8) uses its euid for opening a data transfer socket, gpt(8) -i option, remove command added, kgdb(1) added, LIBPTHREAD_SYSTEM_SCOPE for libpthread, look(1) -d bugfix, make(1) "+" flag added, make(1) MAKEFLAGS change, tgmath.h C99 header added, GNU extensions of mbsnrtowcs(3) and wcsnrtombs(3) implemented, patch(1) replaced with a BSD-licensed version from OpenBSD, ppp(8) "set pppoe [standard|3Com]" for ng_pppoe(4), ul(1) multibyte characters support, FILE 3.41 --> 4.10, GCC 3.3.3 --> 3.4.2, NTP 4.1.1.a --> 4.2.0, rc.d localpkg support in the Ports Collection, and crypto distribution now part of base. Update release notes: snd_*(4) reorganization, and use the term "geom class" for consistency. MFC: ppp(8) "set rad_alive". Revision Changes Path 1.763 +175 -14 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:44:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBFA316A4CE; Thu, 2 Sep 2004 20:44:41 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF1A343D1F; Thu, 2 Sep 2004 20:44:41 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id 9A6158803; Thu, 2 Sep 2004 13:44:41 -0700 (PDT) From: Peter Wemm To: Doug Rabson Date: Thu, 2 Sep 2004 13:44:41 -0700 User-Agent: KMail/1.6.2 References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> <1094046475.31688.0.camel@builder02.qubesoft.com> In-Reply-To: <1094046475.31688.0.camel@builder02.qubesoft.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409021344.41267.peter@wemm.org> cc: Wilko Bulte cc: src-committers@FreeBSD.org cc: Warner Losh cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:44:42 -0000 On Wednesday 01 September 2004 06:47 am, Doug Rabson wrote: > On Tue, 2004-08-31 at 21:38, Wilko Bulte wrote: > > On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > > > > > imp 2004-08-31 20:37:10 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/dev/fdc fdc_isa.c > > > Log: > > > When ISA_PNP_PROBE is called, it will return 0 when it finds a > > > device, ENOENT when there's no PNP ID for this device node, or > > > ENXIO when there is one, but it doesn't match. > > > > > > In the nonPNP case (as most Alpha systems appear to be), we > > > were > > > > I think no Alpha has PNP. > > All alphas with ISA busses support ISA PnP. I used to use it with an > old ISA PnP sound card in my 164lx. Exactly. Firmware support isn't required. ISA-PnP is a hardware level protocol. You can plug an isa-pnp card into any machine with physical isa slots and have to use the isapnp interface to wake the card, probe it, assign irqs etc. On PC's, this is typically done by the bios for compatability reasons. It would pick some of the default settings that the card suggested. A non-isapnp-aware OS could find the cards in their preconfigured location. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:44:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E04E516A4CE; Thu, 2 Sep 2004 20:44:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4C5343D39; Thu, 2 Sep 2004 20:44:56 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82Kiuhf099321; Thu, 2 Sep 2004 20:44:56 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82KiuoR099320; Thu, 2 Sep 2004 20:44:56 GMT (envelope-from alfred) Message-Id: <200409022044.i82KiuoR099320@repoman.freebsd.org> From: Alfred Perlstein Date: Thu, 2 Sep 2004 20:44:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/mtree BSD.include.dist src/include Makefile src/lib/libautofs Makefile libautofs.c src/sys/fs/autofs autofs_util.c autofs_vfsops.c autofs_vnops.c src/sys/conf NOTES files options src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:44:57 -0000 alfred 2004-09-02 20:44:56 UTC FreeBSD src repository Modified files: etc/mtree BSD.include.dist include Makefile lib/libautofs Makefile libautofs.c sys/fs/autofs autofs_util.c autofs_vfsops.c autofs_vnops.c sys/conf NOTES files options sys/modules Makefile Log: Hook autofs to the build. Revision Changes Path 1.89 +2 -0 src/etc/mtree/BSD.include.dist 1.223 +1 -1 src/include/Makefile 1.2 +6 -3 src/lib/libautofs/Makefile 1.2 +1 -1 src/lib/libautofs/libautofs.c 1.1273 +1 -0 src/sys/conf/NOTES 1.949 +3 -0 src/sys/conf/files 1.483 +1 -0 src/sys/conf/options 1.2 +1 -1 src/sys/fs/autofs/autofs_util.c 1.2 +1 -1 src/sys/fs/autofs/autofs_vfsops.c 1.2 +4 -4 src/sys/fs/autofs/autofs_vnops.c 1.398 +1 -0 src/sys/modules/Makefile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:48:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 831E416A4CF; Thu, 2 Sep 2004 20:48:08 +0000 (GMT) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 699F943D53; Thu, 2 Sep 2004 20:48:08 +0000 (GMT) (envelope-from peter@yahoo-inc.com) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id 5BB5F8803; Thu, 2 Sep 2004 13:48:08 -0700 (PDT) From: Peter Wemm To: Nate Lawson Date: Thu, 2 Sep 2004 13:48:08 -0700 User-Agent: KMail/1.6.2 References: <20040902042809.99A9416A4EE@hub.freebsd.org> <4136A452.7080700@root.org> In-Reply-To: <4136A452.7080700@root.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409021348.08007.peter@wemm.org> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/acpica/Osd OsdDebug.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:48:08 -0000 On Wednesday 01 September 2004 09:40 pm, Nate Lawson wrote: > Nate Lawson wrote: > > njl 2004-09-02 04:28:05 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/acpica/Osd OsdDebug.c > > Log: > > Don't enter the debugger when executing an AML breakpoint > > instruction unless ACPI_DEBUG is defined. Users don't typically > > care about errant breakpoint instructions. The HP Pavilion 7915 > > has this in its PCI0 _INI method for rev 0x6040000 of the RSDT. > > > > Revision Changes Path > > 1.9 +5 -5 src/sys/dev/acpica/Osd/OsdDebug.c > > I may MFC this if it works for the user. Whoever put a breakpoint > opcode in the PCI0._INI method for this machine should be hit on the > head with the spec. I think I know how to arrange for this to happen. :-) -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:48:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA25916A4CF for ; Thu, 2 Sep 2004 20:48:33 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91DA343D5E for ; Thu, 2 Sep 2004 20:48:33 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 21442 invoked from network); 2 Sep 2004 20:48:33 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail4.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 2 Sep 2004 20:48:33 -0000 Received: from hydrogen.funkthat.com (unefez@localhost.funkthat.com [127.0.0.1])i82KmWuU005026; Thu, 2 Sep 2004 13:48:32 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i82KmVxm005025; Thu, 2 Sep 2004 13:48:31 -0700 (PDT) Date: Thu, 2 Sep 2004 13:48:31 -0700 From: John-Mark Gurney To: Julian Elischer Message-ID: <20040902204831.GJ29902@funkthat.com> References: <200409011829.i81ITvq9017808@repoman.freebsd.org> <4136333C.8090207@elischer.org> <20040902175930.GA8551@dragon.nuxi.com> <41376280.6050801@elischer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41376280.6050801@elischer.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: obrien@FreeBSD.org cc: Dag-Erling Sm?rgrav cc: Julian Elischer Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:48:34 -0000 Julian Elischer wrote this message on Thu, Sep 02, 2004 at 11:12 -0700: > David O'Brien wrote: > >What it really means is we haven't provided a sufficient API for userland > >to get a kernel data that obviously is needed. > > yes.. it's tricky.. > should we define a "_KERNEL_INTERFACE" or something? > how about _REALLY_IS_KERNEL > which defines _KERNEL > so if you just need the interface you define _KERNEL > but include files cna protect REALLY internal stuff with "#ifdef > _REALLY_IS_KERNEL The question first is, do we want to use the same structure in userland and kernel.. If we do, then it should not be under _KERNEL, and be publicly exported... If we don't need the entire structure, then we define the common structure, and write a function or two that converts between the two structures... like struct xfile, struct xprision, struct xvfsconf, struct xsocket, struct xucred, struct xunpcb, struct xunpgen, struct xvnode... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:49:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3956B16A4CF; Thu, 2 Sep 2004 20:49:23 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2591443D31; Thu, 2 Sep 2004 20:49:23 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 1BA515C963; Thu, 2 Sep 2004 13:49:23 -0700 (PDT) Date: Thu, 2 Sep 2004 13:49:23 -0700 From: Alfred Perlstein To: Julian Elischer Message-ID: <20040902204923.GS31434@elvis.mu.org> References: <200409011829.i81ITvq9017808@repoman.freebsd.org> <4136333C.8090207@elischer.org> <20040902175930.GA8551@dragon.nuxi.com> <41376280.6050801@elischer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41376280.6050801@elischer.org> User-Agent: Mutt/1.4.2.1i cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: obrien@FreeBSD.org cc: Dag-Erling Sm?rgrav cc: Julian Elischer Subject: Re: cvs commit: src/sys/i386/include param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:49:23 -0000 * Julian Elischer [040902 11:12] wrote: > > yes.. it's tricky.. > should we define a "_KERNEL_INTERFACE" or something? > how about _REALLY_IS_KERNEL > which defines _KERNEL > so if you just need the interface you define _KERNEL > but include files cna protect REALLY internal stuff with "#ifdef > _REALLY_IS_KERNEL That's too error prone and breaks ABI, you need to split the structures like the kinfo_proc and xStructs used. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Sep 2 20:57:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D79B716A4CE; Thu, 2 Sep 2004 20:57:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD48843D1D; Thu, 2 Sep 2004 20:57:40 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82Kvek7099798; Thu, 2 Sep 2004 20:57:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82KveoR099797; Thu, 2 Sep 2004 20:57:40 GMT (envelope-from rwatson) Message-Id: <200409022057.i82KveoR099797@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 20:57:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/pci if_pcn.c if_sf.c if_ste.c if_ti.c if_tl.c if_wb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 20:57:41 -0000 rwatson 2004-09-02 20:57:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/pci if_pcn.c if_sf.c if_ste.c if_ti.c if_tl.c if_wb.c Log: Merge if_pcn.c:1.60, if_sf.c:1.73, if_ti.c:1.97, if_tl.c:1.94, if_wb.c:1.74 to RELENG_5: Tag a last set of PCI network interfaces as IFF_NEEDSGIANT until they are either locked down or demonstrated MPSAFE. Approved by: re (scottl) Revision Changes Path 1.59.2.1 +2 -1 src/sys/pci/if_pcn.c 1.72.2.1 +2 -1 src/sys/pci/if_sf.c 1.76.2.1 +2 -1 src/sys/pci/if_ste.c 1.96.2.1 +2 -1 src/sys/pci/if_ti.c 1.93.2.1 +2 -1 src/sys/pci/if_tl.c 1.73.2.1 +2 -1 src/sys/pci/if_wb.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 21:01:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CD416A4CE; Thu, 2 Sep 2004 21:01:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7578A43D45; Thu, 2 Sep 2004 21:01:09 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82L1969099952; Thu, 2 Sep 2004 21:01:09 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82L19FM099951; Thu, 2 Sep 2004 21:01:09 GMT (envelope-from hrs) Message-Id: <200409022101.i82L19FM099951@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 2 Sep 2004 21:01:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml src/release/doc/share/sgml release.ent X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 21:01:09 -0000 hrs 2004-09-02 21:01:09 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/errata article.sgml release/doc/share/sgml release.ent Log: Trim errata and bump &release.next;. Revision Changes Path 1.71 +12 -234 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.20 +1 -1 src/release/doc/share/sgml/release.ent From owner-cvs-src@FreeBSD.ORG Thu Sep 2 21:18:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A02D116A4CE; Thu, 2 Sep 2004 21:18:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80C5343D3F; Thu, 2 Sep 2004 21:18:09 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82LI9Vs000697; Thu, 2 Sep 2004 21:18:09 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82LI9Z2000696; Thu, 2 Sep 2004 21:18:09 GMT (envelope-from rwatson) Message-Id: <200409022118.i82LI9Z2000696@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 21:18:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netinet6 raw_ip6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 21:18:09 -0000 rwatson 2004-09-02 21:18:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet6 raw_ip6.c Log: Merge raw_ip6.c:1.46 to RELENG_5: date: 2004/09/02 20:18:02; author: rwatson; state: Exp; lines: +1 -1 Unlock rather than lock the ripcbinfo lock at the end of rip6_input(). RELENG_5 candidate. Foot provided by: Patrick Guelat Approved by: re (scottl) (accelerated schedule for BETA3) Revision Changes Path 1.45.2.1 +1 -1 src/sys/netinet6/raw_ip6.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 21:37:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0465216A4CE; Thu, 2 Sep 2004 21:37:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABAF243D46; Thu, 2 Sep 2004 21:37:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82LbouW001538; Thu, 2 Sep 2004 21:37:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82LboZP001537; Thu, 2 Sep 2004 21:37:50 GMT (envelope-from rwatson) Message-Id: <200409022137.i82LboZP001537@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 21:37:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/sockets/kqueue Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 21:37:51 -0000 rwatson 2004-09-02 21:37:50 UTC FreeBSD src repository Modified files: tools/regression/sockets/kqueue Makefile Log: Don't override the rule used to build a binary by providing our own compiler line. Revision Changes Path 1.2 +0 -1 src/tools/regression/sockets/kqueue/Makefile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 21:41:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CDF016A4CF; Thu, 2 Sep 2004 21:41:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D99A43D1D; Thu, 2 Sep 2004 21:41:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82LfvpZ001808; Thu, 2 Sep 2004 21:41:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82LfvDd001807; Thu, 2 Sep 2004 21:41:57 GMT (envelope-from rwatson) Message-Id: <200409022141.i82LfvDd001807@repoman.freebsd.org> From: Robert Watson Date: Thu, 2 Sep 2004 21:41:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/sockets/kqueue kqueue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 21:41:57 -0000 rwatson 2004-09-02 21:41:57 UTC FreeBSD src repository Modified files: tools/regression/sockets/kqueue kqueue.c Log: Pass O_NONBLOCK directly to fcntl() rather than the pointer to an int holding the value O_NONBLOCK. This worked previously because I was lucky. Revision Changes Path 1.2 +8 -12 src/tools/regression/sockets/kqueue/kqueue.c From owner-cvs-src@FreeBSD.ORG Thu Sep 2 22:01:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0657F16A4CE; Thu, 2 Sep 2004 22:01:28 +0000 (GMT) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C6C643D2D; Thu, 2 Sep 2004 22:01:27 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id i82M1PTR073820; Fri, 3 Sep 2004 00:01:26 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i82M1PvU072937; Fri, 3 Sep 2004 00:01:25 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i82M1PUd072936; Fri, 3 Sep 2004 00:01:25 +0200 (CEST) (envelope-from wb) Date: Fri, 3 Sep 2004 00:01:25 +0200 From: Wilko Bulte To: Peter Wemm Message-ID: <20040902220125.GA72910@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> <1094046475.31688.0.camel@builder02.qubesoft.com> <200409021344.41267.peter@wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409021344.41267.peter@wemm.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: Warner Losh cc: src-committers@FreeBSD.org cc: Doug Rabson cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 22:01:28 -0000 On Thu, Sep 02, 2004 at 01:44:41PM -0700, Peter Wemm wrote.. > On Wednesday 01 September 2004 06:47 am, Doug Rabson wrote: > > On Tue, 2004-08-31 at 21:38, Wilko Bulte wrote: > > > On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > > > > > > > imp 2004-08-31 20:37:10 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/dev/fdc fdc_isa.c > > > > Log: > > > > When ISA_PNP_PROBE is called, it will return 0 when it finds a > > > > device, ENOENT when there's no PNP ID for this device node, or > > > > ENXIO when there is one, but it doesn't match. > > > > > > > > In the nonPNP case (as most Alpha systems appear to be), we > > > > were > > > > > > I think no Alpha has PNP. > > > > All alphas with ISA busses support ISA PnP. I used to use it with an > > old ISA PnP sound card in my 164lx. > > Exactly. Firmware support isn't required. ISA-PnP is a hardware level > protocol. You can plug an isa-pnp card into any machine with physical > isa slots and have to use the isapnp interface to wake the card, probe > it, assign irqs etc. On PC's, this is typically done by the bios for OK, maybe I should have said that (AFAIK..) there is nothing in SRM that would do that on Alphas. DEC did not have too many ISA cards for Alphas as far as I remember. EISA cards were used (Adaptec 174x, 274x, Compaq Qvision VGA, DEFAA (?) fddi, DE42x ethernet is what comes to mind. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Thu Sep 2 22:09:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDC3B16A4CE; Thu, 2 Sep 2004 22:09:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79CCD43D45; Thu, 2 Sep 2004 22:09:33 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82M9X6O002656; Thu, 2 Sep 2004 22:09:33 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82M9XWn002655; Thu, 2 Sep 2004 22:09:33 GMT (envelope-from ache) Message-Id: <200409022209.i82M9XWn002655@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 2 Sep 2004 22:09:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/msgdef Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 22:09:33 -0000 ache 2004-09-02 22:09:33 UTC FreeBSD src repository Modified files: share/msgdef Makefile Log: Rewrite this hack -rm -rf ${LOCALEDIR}/*/LC_MESSAGES and move it inside loop. It can damage user-made ${LOCALEDIR}/* locales otherwise. Revision Changes Path 1.59 +1 -2 src/share/msgdef/Makefile From owner-cvs-src@FreeBSD.ORG Thu Sep 2 22:21:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BB1816A4CF; Thu, 2 Sep 2004 22:21:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09BB243D31; Thu, 2 Sep 2004 22:21:52 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82MLpKo003049; Thu, 2 Sep 2004 22:21:51 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82MLpEl003048; Thu, 2 Sep 2004 22:21:51 GMT (envelope-from scottl) Message-Id: <200409022221.i82MLpEl003048@repoman.freebsd.org> From: Scott Long Date: Thu, 2 Sep 2004 22:21:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 22:21:52 -0000 scottl 2004-09-02 22:21:51 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Fix whitespace from last commit. Submitted by: ru Revision Changes Path 1.1274 +1 -1 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Thu Sep 2 23:16:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F6FB16A4CE; Thu, 2 Sep 2004 23:16:56 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABAE43D55; Thu, 2 Sep 2004 23:16:55 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id B120B65213; Fri, 3 Sep 2004 00:16:53 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 83652-04; Fri, 3 Sep 2004 00:16:53 +0100 (BST) Received: from empiric.dek.spc.org (dhcp113.icir.org [192.150.187.113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 142B865211; Fri, 3 Sep 2004 00:16:51 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id C25106316; Thu, 2 Sep 2004 16:16:48 -0700 (PDT) Date: Thu, 2 Sep 2004 16:16:48 -0700 From: Bruce M Simpson To: Peter Wemm Message-ID: <20040902231648.GE807@empiric.icir.org> Mail-Followup-To: Peter Wemm , Brooks Davis , Peter Jeremy , Brooks Davis , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, xorp-hackers@xorp.org References: <200409011822.i81IMERb017602@repoman.freebsd.org> <20040902092916.GA61915@cirb503493.alcatel.com.au> <20040902152546.GA3801@odin.ac.hmc.edu> <200409021136.44582.peter@wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="t0UkRYy7tHLRMCai" Content-Disposition: inline In-Reply-To: <200409021136.44582.peter@wemm.org> cc: xorp-hackers@xorp.org cc: Brooks Davis cc: Brooks Davis cc: Peter Jeremy cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sbin/ifconfig ifconfig.c src/sys/net if.c if.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 23:16:56 -0000 --t0UkRYy7tHLRMCai Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I have to admit to a certain amount of culpability here, as I wasn't really thinking through all of the implications of Brooks' change when I agreed 'y= es, having an epoch timer which makes us less susceptible to roll-over where struct ifnet and SNMP are concerned, is a good idea'. Refactoring the PF_ROUTE ABI is probably a task for the 6-CURRENT lifetime. If done right, we could MT5 it as we go along. On Thu, Sep 02, 2004 at 11:36:44AM -0700, Peter Wemm wrote: > BTW, in case nobody noticed.. nothing sets the routing socket abi=20 > version number, and nothing checks it. No versions are even defined. =20 > Well.. version 0 is implicit I guess. :-) Yeah. This is a pain. There are a number of sticky things about routing socket messages as they are right now. This probably needs to happen using a different protocol family to begin with, with the old PF_ROUTE kept on board as a shim; notice that PF_KEY_V2 is explicitly numbered as such, and has much in common with how routing sockets and messages are dealt with. A Tag/Length/Value scheme might be more appropriate; things like dealing with netmasks are very hairy indeed. This is not so much on my TODO list as my WISHLIST right now, XORP could certainly benefit. BMS --t0UkRYy7tHLRMCai Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Comment: '' iD8DBQFBN6ngueUpAYYNtTsRAjoOAKCAOsWTZ+fJys/KmI0Wq0Ph6cWKXgCglEk9 4guFiLpaM0kDtjN4NFozeHA= =HxPU -----END PGP SIGNATURE----- --t0UkRYy7tHLRMCai-- From owner-cvs-src@FreeBSD.ORG Thu Sep 2 23:19:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC43816A4CE; Thu, 2 Sep 2004 23:19:30 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C08F43D1F; Thu, 2 Sep 2004 23:19:30 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id C4CCF65219; Fri, 3 Sep 2004 00:19:29 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 83652-04-5; Fri, 3 Sep 2004 00:19:29 +0100 (BST) Received: from empiric.dek.spc.org (dhcp113.icir.org [192.150.187.113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 2BC4565216; Fri, 3 Sep 2004 00:19:29 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 396FF6316; Thu, 2 Sep 2004 16:19:27 -0700 (PDT) Date: Thu, 2 Sep 2004 16:19:27 -0700 From: Bruce M Simpson To: Robert Watson Message-ID: <20040902231927.GA8735@empiric.icir.org> Mail-Followup-To: Robert Watson , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200409022014.i82KE3dT097931@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409022014.i82KE3dT097931@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 23:19:31 -0000 On Thu, Sep 02, 2004 at 08:14:03PM +0000, Robert Watson wrote: > Log: > The KAME IPSEC implementation at one point used its own pseudo-random > number generator, which was re-seeded via a timeout. Now centralized > randomness/entropy is used, we can garbage collect the timeout and > re-seeding code (which was largely a no-op). Bravo! Encore! BMS From owner-cvs-src@FreeBSD.ORG Thu Sep 2 23:37:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9498F16A4CE; Thu, 2 Sep 2004 23:37:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7466643D31; Thu, 2 Sep 2004 23:37:42 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i82NbgSP005494; Thu, 2 Sep 2004 23:37:42 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i82NbgcE005493; Thu, 2 Sep 2004 23:37:42 GMT (envelope-from julian) Message-Id: <200409022337.i82NbgcE005493@repoman.freebsd.org> From: Julian Elischer Date: Thu, 2 Sep 2004 23:37:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 23:37:42 -0000 julian 2004-09-02 23:37:42 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: remove unused code MFC after: 2 days Revision Changes Path 1.85 +0 -109 src/sys/kern/kern_switch.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 01:37:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E5CC16A4CE; Fri, 3 Sep 2004 01:37:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F12043D39; Fri, 3 Sep 2004 01:37:03 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i831b3Q9009659; Fri, 3 Sep 2004 01:37:03 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i831b2Ct009658; Fri, 3 Sep 2004 01:37:02 GMT (envelope-from rwatson) Message-Id: <200409030137.i831b2Ct009658@repoman.freebsd.org> From: Robert Watson Date: Fri, 3 Sep 2004 01:37:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net netisr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 01:37:03 -0000 rwatson 2004-09-03 01:37:02 UTC FreeBSD src repository Modified files: sys/net netisr.c Log: Correct a comment typo: s/Note/Not/. Pointed out by: kensmith Revision Changes Path 1.14 +1 -1 src/sys/net/netisr.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 02:45:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F02A16A4CE; Fri, 3 Sep 2004 02:45:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3FCC43D49; Fri, 3 Sep 2004 02:45:36 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i832jajt011438; Fri, 3 Sep 2004 02:45:36 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i832jaKG011437; Fri, 3 Sep 2004 02:45:36 GMT (envelope-from scottl) Message-Id: <200409030245.i832jaKG011437@repoman.freebsd.org> From: Scott Long Date: Fri, 3 Sep 2004 02:45:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs autofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 02:45:37 -0000 scottl 2004-09-03 02:45:36 UTC FreeBSD src repository Modified files: sys/fs/autofs autofs_vnops.c Log: Use %zd to print size_t values. Revision Changes Path 1.3 +2 -2 src/sys/fs/autofs/autofs_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 03:09:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8816516A4CE; Fri, 3 Sep 2004 03:09:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62EBA43D41; Fri, 3 Sep 2004 03:09:55 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8339tLW012362; Fri, 3 Sep 2004 03:09:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8339tCS012361; Fri, 3 Sep 2004 03:09:55 GMT (envelope-from rwatson) Message-Id: <200409030309.i8339tCS012361@repoman.freebsd.org> From: Robert Watson Date: Fri, 3 Sep 2004 03:09:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/conf options src/sys/sys kernel.h src/sys/net netisr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 03:09:55 -0000 rwatson 2004-09-03 03:09:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf options sys/sys kernel.h sys/net netisr.c Log: Merge sys/conf/options:1.478, sys/net/netisr.c:1.12, and sys/sys/kernel.h:1.118 to RELENG_5: Change the default disposition of debug.mpsafenet from 0 to 1, which will cause the network stack to operate without the Giant lock by default. This change has the potential to improve performance by increasing parallelism and decreasing latency in network processing. Due to the potential exposure of existing or new bugs, the following compatibility functionality is maintained: - It is still possible to disable Giant-free operation by setting debug.mpsafenet to 0 in loader.conf. - Add "options NET_WITH_GIANT", which will restore the default value of debug.mpsafenet to 0, and is intended for use on systems compiled with known unsafe components, or where a more conservative configuration is desired. - Add a new declaration, NET_NEEDS_GIANT("componentname"), which permits kernel components to declare dependence on Giant over the network stack. If the declaration is made by a preloaded module or a compiled in component, the disposition of debug.mpsafenet will be set to 0 and a warning concerning performance degraded operation printed to the console. If it is declared by a loadable kernel module after boot, a warning is displayed but the disposition cannot be changed. This is implemented by defining a new SYSINIT() value, SI_SUB_SETTINGS, which is intended for the processing of configuration choices after tunables are read in and the console is available to generate errors, but before much else gets going. This compatibility behavior will go away when we've finished the last of the locking work and are confident that operation is correct. Approved by: re (scottl, kensmith) Revision Changes Path 1.475.2.2 +1 -0 src/sys/conf/options 1.10.2.1 +82 -3 src/sys/net/netisr.c 1.117.2.1 +6 -0 src/sys/sys/kernel.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 03:12:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 916FC16A4CE; Fri, 3 Sep 2004 03:12:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8755043D1D; Fri, 3 Sep 2004 03:12:58 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i833CwS6012562; Fri, 3 Sep 2004 03:12:58 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i833Cwfx012561; Fri, 3 Sep 2004 03:12:58 GMT (envelope-from rwatson) Message-Id: <200409030312.i833Cwfx012561@repoman.freebsd.org> From: Robert Watson Date: Fri, 3 Sep 2004 03:12:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netgraph ng_tty.c src/sys/netinet6 ipsec.c src/sys/netipx ipx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 03:12:58 -0000 rwatson 2004-09-03 03:12:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph ng_tty.c sys/netinet6 ipsec.c sys/netipx ipx.c Log: Merge sys/netgraph/ng_tty.c:1.30, sys/netinet6/ipsec.c:1.37, sys/netipx/ipx.c:1.27 to RELENG_5: Mark Netgraph TTY, KAME IPSEC, and IPX/SPX as requiring Giant for correct operation using NET_NEEDS_GIANT(). This will result in a boot-time restoration of Giant-enabled network operation, or run-time warning on dynamic load (applicable only to the Netgraph component). Additional components will likely need to be marked with this in the future. Approved by: re (scottl, kensmith) Revision Changes Path 1.29.2.1 +2 -0 src/sys/netgraph/ng_tty.c 1.36.2.1 +2 -0 src/sys/netinet6/ipsec.c 1.26.4.1 +6 -0 src/sys/netipx/ipx.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 03:17:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A398616A4CE; Fri, 3 Sep 2004 03:17:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8425943D2F; Fri, 3 Sep 2004 03:17:14 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i833HEr4012775; Fri, 3 Sep 2004 03:17:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i833HEHi012774; Fri, 3 Sep 2004 03:17:14 GMT (envelope-from rwatson) Message-Id: <200409030317.i833HEHi012774@repoman.freebsd.org> From: Robert Watson Date: Fri, 3 Sep 2004 03:17:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 03:17:14 -0000 rwatson 2004-09-03 03:17:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) . UPDATING Log: Merge UPDATING:1.351 to RELENG_5: date: 2004/08/28 17:08:30; author: rwatson; state: Exp; lines: +13 -0 Add an updating entry for the recent change in network stack locking default for debug.mpsafenet, pointing at the recent announcement and things to try if instability is experienced. Approved by: re (scottl) Revision Changes Path 1.342.2.3 +13 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Sep 3 03:19:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4CFA16A4CE; Fri, 3 Sep 2004 03:19:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C627F43D54; Fri, 3 Sep 2004 03:19:14 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i833JE6H012828; Fri, 3 Sep 2004 03:19:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i833JEYQ012827; Fri, 3 Sep 2004 03:19:14 GMT (envelope-from rwatson) Message-Id: <200409030319.i833JEYQ012827@repoman.freebsd.org> From: Robert Watson Date: Fri, 3 Sep 2004 03:19:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_aio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 03:19:15 -0000 rwatson 2004-09-03 03:19:14 UTC FreeBSD src repository Modified files: sys/kern vfs_aio.c Log: Tag AIO as requiring Giant over the network stack using NET_NEEDS_GIANT(). RELENG_5 candidate. Revision Changes Path 1.175 +2 -0 src/sys/kern/vfs_aio.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 03:58:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10B3616A4CE; Fri, 3 Sep 2004 03:58:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0EF743D1D; Fri, 3 Sep 2004 03:58:45 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i833wj2A014290; Fri, 3 Sep 2004 03:58:45 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i833wj7N014289; Fri, 3 Sep 2004 03:58:45 GMT (envelope-from brueffer) Message-Id: <200409030358.i833wj7N014289@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 03:58:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 nge.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 03:58:46 -0000 brueffer 2004-09-03 03:58:45 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 nge.4 Log: - move list of supported adapters into a HARDWARE section - properly capitalize Fast/Gigabit Ethernet - bump document date MFC after: 3 days Revision Changes Path 1.14 +33 -31 src/share/man/man4/nge.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 04:13:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A0616A4CE; Fri, 3 Sep 2004 04:13:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B43B643D48; Fri, 3 Sep 2004 04:13:22 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i834DMaS014722; Fri, 3 Sep 2004 04:13:22 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i834DMiH014721; Fri, 3 Sep 2004 04:13:22 GMT (envelope-from brueffer) Message-Id: <200409030413.i834DMiH014721@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 04:13:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ste.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 04:13:23 -0000 brueffer 2004-09-03 04:13:22 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ste.4 Log: - move list of supported adapters into a HARDWARE section - properly capitalize (Fast) Ethernet - bump document date MFC after: 3 days Revision Changes Path 1.16 +18 -7 src/share/man/man4/ste.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 04:15:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5347916A4CE; Fri, 3 Sep 2004 04:15:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1033943D1F; Fri, 3 Sep 2004 04:15:55 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i834Fs2d014848; Fri, 3 Sep 2004 04:15:54 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i834Fs5S014847; Fri, 3 Sep 2004 04:15:54 GMT (envelope-from brueffer) Message-Id: <200409030415.i834Fs5S014847@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 04:15:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 04:15:55 -0000 brueffer 2004-09-03 04:15:54 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: Add nge(4) and ste(4) MFC after: 3 days Revision Changes Path 1.17 +2 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Fri Sep 3 04:17:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 039A116A4CE; Fri, 3 Sep 2004 04:17:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7BCC43D62; Fri, 3 Sep 2004 04:17:19 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i834HJmT014953; Fri, 3 Sep 2004 04:17:19 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i834HJj2014952; Fri, 3 Sep 2004 04:17:19 GMT (envelope-from brueffer) Message-Id: <200409030417.i834HJj2014952@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 04:17:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 04:17:20 -0000 brueffer 2004-09-03 04:17:19 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Autogenerate device listings for nge(4) and ste(4) MFC after: 3 days Revision Changes Path 1.239 +2 -6 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Fri Sep 3 05:11:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C56016A4CE; Fri, 3 Sep 2004 05:11:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C11543D3F; Fri, 3 Sep 2004 05:11:33 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i835BXqk016332; Fri, 3 Sep 2004 05:11:33 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i835BXiJ016331; Fri, 3 Sep 2004 05:11:33 GMT (envelope-from alc) Message-Id: <200409030511.i835BXiJ016331@repoman.freebsd.org> From: Alan Cox Date: Fri, 3 Sep 2004 05:11:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_fork.c sysv_shm.c src/sys/vm vm_fault.c vm_glue.c vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 05:11:33 -0000 alc 2004-09-03 05:11:33 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c sysv_shm.c sys/vm vm_fault.c vm_glue.c vm_map.c Log: Push Giant deep into vm_forkproc(), acquiring it only if the process has mapped System V shared memory segments (see shmfork_myhook()) or requires the allocation of an ldt (see vm_fault_wire()). Revision Changes Path 1.237 +12 -16 src/sys/kern/kern_fork.c 1.97 +2 -0 src/sys/kern/sysv_shm.c 1.196 +4 -0 src/sys/vm/vm_fault.c 1.203 +0 -2 src/sys/vm/vm_glue.c 1.361 +0 -3 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 05:49:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 675D716A4CE; Fri, 3 Sep 2004 05:49:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4585E43D5D; Fri, 3 Sep 2004 05:49:05 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i835n5Cc017301; Fri, 3 Sep 2004 05:49:05 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i835n5VC017300; Fri, 3 Sep 2004 05:49:05 GMT (envelope-from julian) Message-Id: <200409030549.i835n5VC017300@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 05:49:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 05:49:05 -0000 julian 2004-09-03 05:49:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern sched_4bsd.c Log: MFC 1.50 Use some macros to reduce diff to upcoming commits Approved by: re (scottl) Revision Changes Path 1.49.2.1 +9 -8 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 05:54:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4CB316A4CE for ; Fri, 3 Sep 2004 05:54:08 +0000 (GMT) Received: from smtp.tiscali.ch (smtp.tiscali.ch [212.40.5.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00AC643D58 for ; Fri, 3 Sep 2004 05:54:08 +0000 (GMT) (envelope-from flex.banana@bluewin.ch) Received: from [192.168.1.202] (adsl-248-174-zh2.tiscali.ch [212.254.248.174]) by smtp.tiscali.ch (8.11.7/8.11.7) with ESMTP id i835s5N18170 for ; Fri, 3 Sep 2004 07:54:05 +0200 Mime-Version: 1.0 (Apple Message framework v619) Content-Transfer-Encoding: 7bit Message-Id: <8452BB7E-FD6D-11D8-974E-000A95CE05A8@bluewin.ch> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: cvs-src@freebsd.org From: "flex.banana" Date: Fri, 3 Sep 2004 07:53:02 +0200 X-Mailer: Apple Mail (2.619) Subject: TravelMate 292ELCi X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 05:54:08 -0000 hi all my laptop freeze on the boot, with all FreeBSD systems here the screen: any can help me please? thanks a lot banana this is from 6.0-current 20040901 boot -vp GDB: no debug ports present KDB: debugger backends: ddb KDB: current backend: ddb SMAP type=01 base=0000000000000000 len=0000000000009fc00 SMAP type=02 base=0000000000009fc00 len=0000000000000400 SMAP type=02 base=000000000000e000 len=0000000000020000 SMAP type=01 base=0000000000100000 len=000000000eef0000 SMAP type=03 base=000000000eff0000 len=000000000000ffc0 SMAP type=04 base=0000000000effffc0 len=0000000000000040 SMAP type=02 base=00000000ffb80000 len=0000000000080000 SMAP type=02 base=00000000fff80000 len=0000000000080000 Copyright (c) 1992-2004 The FreeBSD Project. .....blablabl..... FreeBSD 6.0-CURRENT #0: Wed Sep 1 03:13:58 UTC 2004 root@mango.internal.hasta.se:/usr/obj/usr/src/sys/GENERIC WARNING: WITNESS option enabled, expect reduced performance. Preloaded elf kernel "/boot/kernel/kernel" at 0xc0e10000. Preloaded mfs_root "/boot/mfsroot" at 0xc0e10228. Calibrating clock(s) ... i8254 clock: 1193291 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clocl: 1298902587 Hz CPU: Intel(R) Celeron(R) M processor 1300MHz (1298.90-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x695 Stepping = 5 Features=0xa7e9f9bf real memory = 251592704 (239 MB) Physical memory chunk(s) : 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 (768 pages) 0x0000000001029000 - 0x000000000eb87fff, 230027264 (56159 pages) avail memory = 232366080 (221 MB) bios32: Found BIOS32 Service Directory header at 0xc00e7050 bios32: Entry = 0xe97d0 (c00e97d0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xe7000+0x27e4 pnpbios: Found PnP BIOS data at 0xc00ff020 pnpbios: Entry = eb000:34c6 Rev = 1.0 pnpbios: Envent flag at eb01e pnpbios: OEM ID 8224744e Other BIOS signatures found: wlan: <802.11 Link Layer> null: random: io: mem: Pentium Pro MTRR support enabled npx0: [FAST] npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x8000005c pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=80] is there (id=35808086) pcibios: BIOS version 2.10 Found $PIR table, 8 entries at 0cx00fe890 PCI-Only Interrupts: none Location Bus Device Pic Link IRQs embedded 0 29 A 0x60 5 10 11 embedded 0 29 B 0x63 5 10 11 embedded 0 29 C 0x62 5 10 11 embedded 0 29 D 0x6b 5 10 11 embedded 0 31 A 0x62 5 10 11 embedded 0 31 B 0x61 5 10 11 embedded 0 2 A 0x60 5 10 11 embedded 0 2 B 0x61 5 10 11 embedded 0 0 A 0x60 5 10 11 embedded 0 0 B 0x61 5 10 11 embedded 1 0 A 0x68 5 10 11 embedded 1 1 A 0x69 5 10 11 embedded 1 2 A 0x6a 5 10 11 embedded 1 2 B 0x6b 5 10 11 embedded 1 4 A 0x60 5 10 11 pcib0: pcibus 0 on motherboard pir0: on motherboard $PIR: Links after initial probe: Link IRQ Rtd Ref IRQs 0x60 255 N 4 5 10 11 0x63 255 N 1 5 10 11 0x62 255 N 2 5 10 11 0x6b 255 N 2 5 10 11 0x61 255 N 3 5 10 11 0x68 255 N 1 5 10 11 0x69 255 N 1 5 10 11 0x6a 255 N 1 5 10 11 $PIR: Found mathing pin for 0.29.INTA at func 0: 255 $PIR: Found mathing pin for 0.29.INTB at func 1: 255 $PIR: Found mathing pin for 0.29.INTC at func 2: 255 $PIR: Found mathing pin for 0.29.INTD at func 7:10 $PIR: Found mathing pin for 0.31.INTA at func 1: 255 $PIR: Found mathing pin for 0.31.INTB at func 3: 255 $PIR: Found mathing pin for 0.31.INTB at func 5:5 $PIR: Found mathing pin for 0.2.INTA at func 0:11 $PIR: Found mathing pin for 1.1.INTA at func 0:11 $PIR: Found mathing pin for 1.2.INTA at func 0:11 $PIR: Found mathing pin for 1.4.INTA at func 0:255 $PIR: Links after initial IRQ discovery: Link IRQ Rtd Ref IRQs 0x60 11 Y 4 5 10 11 0x63 255 N 1 5 10 11 0x62 255 N 2 5 10 11 0x6b 10 Y 2 5 10 11 0x61 5 Y 3 5 10 11 0x68 255 N 1 5 10 11 0x69 11 Y 1 5 10 11 0x6a 11 Y 1 5 10 11 $PIR: IRQs used by BIOS: 5 10 11 $PIR: Interrupt Weights: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ] [ 0 0 0 0 0 3 0 0 0 0 2 6 0 0 0 0 ] pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x8086, dev=0x3580, revid=0x02 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, stratreg=0x2090, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns found-> vendor=0x8086, dev=0x3584, revid=0x02 bus=0, slot=0, func=1 class=08-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, stratreg=0x0080, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns found-> vendor=0x8086, dev=0x3585, revid=0x02 bus=0, slot=0, func=3 class=08-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, stratreg=0x0080, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns map[10]: type 3, range 32, base b0000000, size 27, enabled map[14]: type 1, range 32, base f0000000, size 19, enabled map[18]: type 4, range 32, base 0000e000, size 3, enabled $PIR: 0:2 INTA routed to irq 11 found-> vendor=0x8086, dev=0x3582, revid=0x02 bus=0, slot=2, func=0 class=03-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, stratreg=0x0090, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns intpin=a, irq=11 powerspec 1 supports D0 D1 D3 current D0 map[10]: type 3, range 32, base 00000000, size 27, memory disabled From owner-cvs-src@FreeBSD.ORG Fri Sep 3 05:55:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58A7A16A4CE; Fri, 3 Sep 2004 05:55:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D2FE43D46; Fri, 3 Sep 2004 05:55:06 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i835t67i017562; Fri, 3 Sep 2004 05:55:06 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i835t60I017561; Fri, 3 Sep 2004 05:55:06 GMT (envelope-from julian) Message-Id: <200409030555.i835t60I017561@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 05:55:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/sys proc.h src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 05:55:24 -0000 julian 2004-09-03 05:55:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/sys proc.h sys/kern kern_kse.c Log: MFC: > Move TDF_CAN_UNBIND to thread private flags td_pflags, this eliminates > need of sched_lock in some places. Also in thread_userret, remove > spare thread allocation code, it is already done in thread_user_enter. > Reviewed by: julian > Revision Changes Path > 1.195 +4 -19 src/sys/kern/kern_kse.c > 1.394 +3 -4 src/sys/sys/proc.h > Approved by: re (scottl) Revision Changes Path 1.193.2.1 +4 -11 src/sys/kern/kern_kse.c 1.392.2.1 +3 -4 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 05:58:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2064F16A4CE; Fri, 3 Sep 2004 05:58:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 164E043D1F; Fri, 3 Sep 2004 05:58:21 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i835wKj8017693; Fri, 3 Sep 2004 05:58:20 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i835wK2B017692; Fri, 3 Sep 2004 05:58:20 GMT (envelope-from julian) Message-Id: <200409030558.i835wK2B017692@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 05:58:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_thread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 05:58:21 -0000 julian 2004-09-03 05:58:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_thread.c Log: MFC: > Only test return_instead if P_SINGLE_EXIT is set, otherwise a fork() > syscall can interrupt other thread's syscall in sleepq_catch_signals(). > Current, all callers know thread_suspend_check may suspend thread > itself, so we need't to check return_instead for normal suspension > flags (no P_SINGLE_EXIT set). > > Tested by: deischen > Reported by: Maarten L. Hekkelman > > Revision Changes Path > 1.195 +1 -1 src/sys/kern/kern_thread.c Approved by: re (scottl) Revision Changes Path 1.193.2.1 +1 -1 src/sys/kern/kern_thread.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:11:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42E4516A4CE; Fri, 3 Sep 2004 06:11:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3348043D2D; Fri, 3 Sep 2004 06:11:59 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836BxMW018516; Fri, 3 Sep 2004 06:11:59 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836Bxl5018515; Fri, 3 Sep 2004 06:11:59 GMT (envelope-from julian) Message-Id: <200409030611.i836Bxl5018515@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 06:11:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/alpha trap.c src/sys/amd64/amd64 trap.c src/sys/amd64/ia32 ia32_syscall.c src/sys/i386/i386 trap.c src/sys/kern kern_fork.c kern_prot.c subr_trap.c src/sys/powerpc/powerpc trap.c src/sys/sparc64/sparc64 trap.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:11:59 -0000 julian 2004-09-03 06:11:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/alpha trap.c sys/amd64/amd64 trap.c sys/amd64/ia32 ia32_syscall.c sys/i386/i386 trap.c sys/kern kern_fork.c kern_prot.c subr_trap.c sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys ucred.h Log: MFC > Remove sched_free_thread() which was only used > in diagnostics. It has outlived its usefulness and has started > causing panics for people who turn on DIAGNOSTIC, in what is otherwise > good code. > > MFC after: 2 days > > Revision Changes Path > 1.119 +0 -6 src/sys/alpha/alpha/trap.c > 1.280 +0 -6 src/sys/amd64/amd64/trap.c > 1.7 +0 -3 src/sys/amd64/ia32/ia32_syscall.c > 1.268 +0 -6 src/sys/i386/i386/trap.c > 1.104 +0 -10 src/sys/ia64/ia64/trap.c > 1.235 +0 -3 src/sys/kern/kern_fork.c > 1.188 +0 -13 src/sys/kern/kern_prot.c > 1.271 +0 -3 src/sys/kern/subr_trap.c > 1.48 +0 -3 src/sys/powerpc/powerpc/trap.c > 1.71 +0 -6 src/sys/sparc64/sparc64/trap.c > 1.50 +0 -3 src/sys/sys/ucred.h Approved by: re (scottl) Revision Changes Path 1.118.2.1 +0 -6 src/sys/alpha/alpha/trap.c 1.279.2.1 +0 -6 src/sys/amd64/amd64/trap.c 1.6.4.1 +0 -3 src/sys/amd64/ia32/ia32_syscall.c 1.267.2.1 +0 -6 src/sys/i386/i386/trap.c 1.234.2.1 +0 -3 src/sys/kern/kern_fork.c 1.187.2.1 +0 -13 src/sys/kern/kern_prot.c 1.270.2.1 +0 -3 src/sys/kern/subr_trap.c 1.47.2.1 +0 -3 src/sys/powerpc/powerpc/trap.c 1.70.2.1 +0 -6 src/sys/sparc64/sparc64/trap.c 1.49.2.1 +0 -3 src/sys/sys/ucred.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:18:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 303B416A4CE; Fri, 3 Sep 2004 06:18:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E81943D49; Fri, 3 Sep 2004 06:18:48 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836IlC6018681; Fri, 3 Sep 2004 06:18:47 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836IlCZ018680; Fri, 3 Sep 2004 06:18:47 GMT (envelope-from julian) Message-Id: <200409030618.i836IlCZ018680@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 06:18:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:18:48 -0000 julian 2004-09-03 06:18:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_kse.c Log: MFC: > 1. try to use existing mailbox address in thread_update_usr_ticks. > 2. remove '\n' in KASSERT. > > Revision Changes Path > 1.196 +6 -4 src/sys/kern/kern_kse.c Approved by: re (scottl) Revision Changes Path 1.193.2.2 +6 -4 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:18:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF6E16A4E4; Fri, 3 Sep 2004 06:18:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82D3D43D3F; Fri, 3 Sep 2004 06:18:52 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836IqQp018711; Fri, 3 Sep 2004 06:18:52 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836Iqmo018710; Fri, 3 Sep 2004 06:18:52 GMT (envelope-from ru) Message-Id: <200409030618.i836Iqmo018710@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 3 Sep 2004 06:18:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/sockets/kqueue Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:18:55 -0000 ru 2004-09-03 06:18:52 UTC FreeBSD src repository Modified files: tools/regression/sockets/kqueue Makefile Log: Join the effort in simplifying this makefile. ;) Revision Changes Path 1.3 +1 -3 src/tools/regression/sockets/kqueue/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:24:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA76C16A4CE; Fri, 3 Sep 2004 06:24:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B911743D39; Fri, 3 Sep 2004 06:24:25 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836OPG5018917; Fri, 3 Sep 2004 06:24:25 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836OPaL018916; Fri, 3 Sep 2004 06:24:25 GMT (envelope-from roam) Message-Id: <200409030624.i836OPaL018916@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 3 Sep 2004 06:24:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys msync.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:24:26 -0000 roam 2004-09-03 06:24:25 UTC FreeBSD src repository (doc,ports committer) Modified files: lib/libc/sys msync.2 Log: Add a BUGS section and copy the wording from mmap(2)'s MAP_NOSYNC, documenting the obsoleteness of the msync(2) syscall and its single remaining purpose. PR: 70916 Submitted by: Radim Kolar MFC after: 3 days Revision Changes Path 1.28 +9 -0 src/lib/libc/sys/msync.2 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:26:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAC7916A4CE; Fri, 3 Sep 2004 06:26:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF15443D53; Fri, 3 Sep 2004 06:26:28 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836QS6L019053; Fri, 3 Sep 2004 06:26:28 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836QSM5019052; Fri, 3 Sep 2004 06:26:28 GMT (envelope-from julian) Message-Id: <200409030626.i836QSM5019052@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 06:26:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_kse.c src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:26:29 -0000 julian 2004-09-03 06:26:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_kse.c sys/sys proc.h Log: MFC: Remove TDP_USTATCLOCK, we no longer need it because we now always update tick count for userland in thread_userret. This change also removes a "no upcall owned" panic because fuword() schedules an upcall under heavily loaded, and code assumes there is no upcall can occur. Reported and Tested by: Peter Holm Revision Changes Path 1.198 +30 -55 src/sys/kern/kern_kse.c 1.396 +0 -1 src/sys/sys/proc.h ---- Note free bit.. as per the flags word. MFC after: 2 days Revision Changes Path 1.397 +1 -0 src/sys/sys/proc.h Approved by: re (scottl) Revision Changes Path 1.193.2.3 +30 -55 src/sys/kern/kern_kse.c 1.392.2.2 +1 -1 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:32:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF79216A4CE; Fri, 3 Sep 2004 06:32:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEEBE43D2D; Fri, 3 Sep 2004 06:32:11 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836WBNt019278; Fri, 3 Sep 2004 06:32:11 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836WBlF019277; Fri, 3 Sep 2004 06:32:11 GMT (envelope-from ru) Message-Id: <200409030632.i836WBlF019277@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 3 Sep 2004 06:32:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:32:12 -0000 ru 2004-09-03 06:32:11 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Fixed more spacing bugs. Revision Changes Path 1.1275 +9 -9 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Fri Sep 3 06:40:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70E916A4CE; Fri, 3 Sep 2004 06:40:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96F5E43D5F; Fri, 3 Sep 2004 06:40:26 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i836eQTM019750; Fri, 3 Sep 2004 06:40:26 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i836eQT8019749; Fri, 3 Sep 2004 06:40:26 GMT (envelope-from julian) Message-Id: <200409030640.i836eQT8019749@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 06:40:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/alpha trap.c src/sys/amd64/amd64 trap.c src/sys/i386/i386 trap.c src/sys/ia64/ia64 trap.c src/sys/kern kern_kse.c kern_sig.c subr_trap.c src/sys/powerpc/powerpc trap.c src/sys/sparc64/sparc64 trap.c src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 06:40:26 -0000 julian 2004-09-03 06:40:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/alpha trap.c sys/amd64/amd64 trap.c sys/i386/i386 trap.c sys/ia64/ia64 trap.c sys/kern kern_kse.c kern_sig.c subr_trap.c sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys proc.h Log: MFC: > Remove an unneeded argument.. > The removed argument could trivially be derived from the remaining one. > That in turn should be the same as curthread, but it is possible that > curthread could be expensive to derive on some systems so leave it as an > argument. > Having both proc and thread as an argument just gives an opportunity for > them to get out sync. > > > Revision Changes Path > 1.120 +1 -1 src/sys/alpha/alpha/trap.c > 1.281 +2 -2 src/sys/amd64/amd64/trap.c > 1.269 +2 -2 src/sys/i386/i386/trap.c > 1.105 +1 -1 src/sys/ia64/ia64/trap.c > 1.197 +2 -2 src/sys/kern/kern_kse.c > 1.290 +1 -1 src/sys/kern/kern_sig.c > 1.272 +1 -1 src/sys/kern/subr_trap.c > 1.49 +1 -1 src/sys/powerpc/powerpc/trap.c > 1.72 +1 -1 src/sys/sparc64/sparc64/trap.c > 1.395 +1 -1 src/sys/sys/proc.h Revision Changes Path 1.118.2.2 +1 -1 src/sys/alpha/alpha/trap.c 1.279.2.2 +2 -2 src/sys/amd64/amd64/trap.c 1.267.2.2 +2 -2 src/sys/i386/i386/trap.c 1.103.2.1 +1 -1 src/sys/ia64/ia64/trap.c 1.193.2.4 +2 -2 src/sys/kern/kern_kse.c 1.289.2.1 +1 -1 src/sys/kern/kern_sig.c 1.270.2.2 +1 -1 src/sys/kern/subr_trap.c 1.47.2.2 +1 -1 src/sys/powerpc/powerpc/trap.c 1.70.2.2 +1 -1 src/sys/sparc64/sparc64/trap.c 1.392.2.3 +1 -1 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 07:11:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5726716A4CE; Fri, 3 Sep 2004 07:11:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 360A643D48; Fri, 3 Sep 2004 07:11:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i837BhQf020727; Fri, 3 Sep 2004 07:11:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i837BgDA020726; Fri, 3 Sep 2004 07:11:42 GMT (envelope-from brooks) Message-Id: <200409030711.i837BgDA020726@repoman.freebsd.org> From: Brooks Davis Date: Fri, 3 Sep 2004 07:11:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/kgdb main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 07:11:43 -0000 brooks 2004-09-03 07:11:42 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/kgdb main.c Log: If the argument to the -r flag starts with a ':' or a '|', don't try to make sure it is a device. GDB special cases these prefixes and treats :#### as a tcp port on localhost and executes what ever follows '|'. This allows kgdb to debug via dconschat. Discussed with: marcel Revision Changes Path 1.3 +1 -1 src/gnu/usr.bin/gdb/kgdb/main.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 07:37:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0F3D16A4CE; Fri, 3 Sep 2004 07:37:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9170F43D2D; Fri, 3 Sep 2004 07:37:53 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i837brHO021477; Fri, 3 Sep 2004 07:37:53 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i837brTY021476; Fri, 3 Sep 2004 07:37:53 GMT (envelope-from sos) Message-Id: <200409030737.i837brTY021476@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 3 Sep 2004 07:37:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-chipset.c ata-pci.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 07:37:53 -0000 sos 2004-09-03 07:37:53 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Cleanup the defines used for various chipsets. Add new nVidia controllers. Revision Changes Path 1.85 +15 -14 src/sys/dev/ata/ata-chipset.c 1.33 +16 -5 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 07:42:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2684F16A4CE; Fri, 3 Sep 2004 07:42:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06F2343D48; Fri, 3 Sep 2004 07:42:32 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i837gV5t021678; Fri, 3 Sep 2004 07:42:31 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i837gVS6021677; Fri, 3 Sep 2004 07:42:31 GMT (envelope-from julian) Message-Id: <200409030742.i837gVS6021677@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 07:42:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys smp.h src/sys/kern sched_4bsd.c subr_smp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 07:42:32 -0000 julian 2004-09-03 07:42:31 UTC FreeBSD src repository Modified files: sys/sys smp.h sys/kern sched_4bsd.c subr_smp.c Log: Move 4bsd specific experimental IP code into the 4bsd file. Move the sysctls into kern.sched Revision Changes Path 1.53 +126 -0 src/sys/kern/sched_4bsd.c 1.193 +1 -130 src/sys/kern/subr_smp.c 1.81 +0 -1 src/sys/sys/smp.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 08:19:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7FDD16A4CE; Fri, 3 Sep 2004 08:19:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF03B43D53; Fri, 3 Sep 2004 08:19:31 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i838JVD6023181; Fri, 3 Sep 2004 08:19:31 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i838JVZh023180; Fri, 3 Sep 2004 08:19:31 GMT (envelope-from julian) Message-Id: <200409030819.i838JVZh023180@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 08:19:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys smp.h src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 08:19:32 -0000 julian 2004-09-03 08:19:31 UTC FreeBSD src repository Modified files: sys/sys smp.h sys/kern sched_4bsd.c Log: ooops finish last commit. moved the variables but not the declarations. Revision Changes Path 1.54 +1 -0 src/sys/kern/sched_4bsd.c 1.82 +4 -3 src/sys/sys/smp.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 08:23:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BED716A4CE; Fri, 3 Sep 2004 08:23:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BB9243D55; Fri, 3 Sep 2004 08:23:05 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i838N4JS023371; Fri, 3 Sep 2004 08:23:05 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i838N49K023370; Fri, 3 Sep 2004 08:23:04 GMT (envelope-from sos) Message-Id: <200409030823.i838N49K023370@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 3 Sep 2004 08:23:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-chipset.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 08:23:05 -0000 sos 2004-09-03 08:23:04 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: Sync promise_mio_command with WIP on the Promise line of SATA controllers. Revision Changes Path 1.86 +9 -4 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 08:34:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58C3616A4CE; Fri, 3 Sep 2004 08:34:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38F7343D58; Fri, 3 Sep 2004 08:34:49 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i838YnNn023915; Fri, 3 Sep 2004 08:34:49 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i838YnmW023914; Fri, 3 Sep 2004 08:34:49 GMT (envelope-from julian) Message-Id: <200409030834.i838YnmW023914@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 08:34:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 08:34:49 -0000 julian 2004-09-03 08:34:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_switch.c Log: MFC remove #if 0'd code Approved by: re (scottl) Revision Changes Path 1.78.2.1 +0 -109 src/sys/kern/kern_switch.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 08:44:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B4F916A4CE; Fri, 3 Sep 2004 08:44:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B63743D31; Fri, 3 Sep 2004 08:44:24 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i838iNQ9024137; Fri, 3 Sep 2004 08:44:24 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i838iNr9024136; Fri, 3 Sep 2004 08:44:23 GMT (envelope-from scottl) Message-Id: <200409030844.i838iNr9024136@repoman.freebsd.org> From: Scott Long Date: Fri, 3 Sep 2004 08:44:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iir iir.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 08:44:24 -0000 scottl 2004-09-03 08:44:23 UTC FreeBSD src repository Modified files: sys/dev/iir iir.c Log: Panic if given a CAM_DATA_PHYS pointer from CAM instead of trying to handle it. It makes no sense in a PAE environment and is impossible to handle correctly. This case is also never used right now. This should make the iir(4) driver ready for PAE. Revision Changes Path 1.11 +2 -14 src/sys/dev/iir/iir.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 09:15:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB30816A4CF; Fri, 3 Sep 2004 09:15:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F4A43D48; Fri, 3 Sep 2004 09:15:10 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i839FAYF024966; Fri, 3 Sep 2004 09:15:10 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i839FAdd024965; Fri, 3 Sep 2004 09:15:10 GMT (envelope-from julian) Message-Id: <200409030915.i839FAdd024965@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 09:15:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 09:15:22 -0000 julian 2004-09-03 09:15:10 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: fix compile for UP Revision Changes Path 1.55 +4 -0 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 09:19:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3247516A4CE; Fri, 3 Sep 2004 09:19:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10B4B43D46; Fri, 3 Sep 2004 09:19:50 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i839JnLA025108; Fri, 3 Sep 2004 09:19:49 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i839JnkX025107; Fri, 3 Sep 2004 09:19:49 GMT (envelope-from julian) Message-Id: <200409030919.i839JnkX025107@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 09:19:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 09:19:50 -0000 julian 2004-09-03 09:19:49 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Don't declare a function we are not defining. Revision Changes Path 1.56 +2 -0 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 09:36:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9F7316A4CE; Fri, 3 Sep 2004 09:36:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA83A43D1D; Fri, 3 Sep 2004 09:36:16 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i839aGTK027079; Fri, 3 Sep 2004 09:36:16 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i839aG7O027078; Fri, 3 Sep 2004 09:36:16 GMT (envelope-from ru) Message-Id: <200409030936.i839aG7O027078@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 3 Sep 2004 09:36:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man7 release.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 09:36:17 -0000 ru 2004-09-03 09:36:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man7 release.7 Log: Merge (and tweak as necessary) documentation changes from HEAD that are relevant to RELENG_4, including documenting the following configuration variables: DOC_LANG, DOCRELEASETAG, KERNEL_FLAGS, KERNELS, NOCDROM, PORTSRELEASETAG, and WORLD_FLAGS. Revision Changes Path 1.3.2.9 +92 -47 src/share/man/man7/release.7 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 10:47:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1D0E16A4CE; Fri, 3 Sep 2004 10:47:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 923B743D49; Fri, 3 Sep 2004 10:47:49 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83AlnhZ029287; Fri, 3 Sep 2004 10:47:49 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Aln0N029286; Fri, 3 Sep 2004 10:47:49 GMT (envelope-from julian) Message-Id: <200409031047.i83Aln0N029286@repoman.freebsd.org> From: Julian Elischer Date: Fri, 3 Sep 2004 10:47:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 10:47:49 -0000 julian 2004-09-03 10:47:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_kse.c Log: fix mismerge of two MFCs Revision Changes Path 1.193.2.5 +3 -3 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:08:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CBDA16A4CF; Fri, 3 Sep 2004 12:08:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CCB743D31; Fri, 3 Sep 2004 12:08:57 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83C8umG035493; Fri, 3 Sep 2004 12:08:56 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83C8uHZ035492; Fri, 3 Sep 2004 12:08:56 GMT (envelope-from ru) Message-Id: <200409031208.i83C8uHZ035492@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 3 Sep 2004 12:08:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release Makefile.inc.docports X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:08:57 -0000 ru 2004-09-03 12:08:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release Makefile.inc.docports Log: MFC: Fixed the doc build. Tested by: hrs Approved by: re (hrs) Revision Changes Path 1.24.2.1 +19 -19 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:10:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EC9716A4CE; Fri, 3 Sep 2004 12:10:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B9F843D1D; Fri, 3 Sep 2004 12:10:44 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83CAiTC035615; Fri, 3 Sep 2004 12:10:44 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83CAiqd035614; Fri, 3 Sep 2004 12:10:44 GMT (envelope-from sos) Message-Id: <200409031210.i83CAiqd035614@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 3 Sep 2004 12:10:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-lowlevel.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:10:44 -0000 sos 2004-09-03 12:10:44 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-lowlevel.c Log: Introduce ata_udelay() that uses tsleep instead of DELAY if possible. In places where we have long delays that doesn't depend on too accurate timing, use ata_udelay() instead of DELAY() so we dont uselessly spin the CPU if not nessesary; Revision Changes Path 1.225 +9 -0 src/sys/dev/ata/ata-all.c 1.83 +1 -0 src/sys/dev/ata/ata-all.h 1.87 +4 -4 src/sys/dev/ata/ata-chipset.c 1.47 +4 -3 src/sys/dev/ata/ata-lowlevel.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:23:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8E1616A4CE; Fri, 3 Sep 2004 12:23:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 885D643D48; Fri, 3 Sep 2004 12:23:16 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83CNGQP036017; Fri, 3 Sep 2004 12:23:16 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83CNGRk036016; Fri, 3 Sep 2004 12:23:16 GMT (envelope-from brueffer) Message-Id: <200409031223.i83CNGRk036016@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 12:23:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ti.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:23:16 -0000 brueffer 2004-09-03 12:23:16 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ti.4 Log: - move list of supported adapters into a HARDWARE section - list the Digital EtherWORKS adapter as supported [1] - properly capitalize (Fast|Gigabit) Ethernet - bump document date Obtained from: NetBSD [1] MFC after: 3 days Revision Changes Path 1.28 +48 -45 src/share/man/man4/ti.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:24:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C071616A4CE; Fri, 3 Sep 2004 12:24:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E69B43D1F; Fri, 3 Sep 2004 12:24:50 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83COohG036059; Fri, 3 Sep 2004 12:24:50 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83COoYw036058; Fri, 3 Sep 2004 12:24:50 GMT (envelope-from brueffer) Message-Id: <200409031224.i83COoYw036058@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 12:24:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 tl.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:24:51 -0000 brueffer 2004-09-03 12:24:50 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 tl.4 Log: - move list of supported adapters into a HARDWARE section - properly capitalize (Fast) Ethernet - bump document date MFC after: 3 days Revision Changes Path 1.19 +52 -15 src/share/man/man4/tl.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:27:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D205F16A4CE; Fri, 3 Sep 2004 12:27:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B205643D3F; Fri, 3 Sep 2004 12:27:27 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83CRRog036183; Fri, 3 Sep 2004 12:27:27 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83CRRUG036182; Fri, 3 Sep 2004 12:27:27 GMT (envelope-from brueffer) Message-Id: <200409031227.i83CRRUG036182@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 12:27:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:27:28 -0000 brueffer 2004-09-03 12:27:27 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: Add ti(4) and tl(4) MFC after: 3 days Revision Changes Path 1.18 +2 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Fri Sep 3 12:28:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D140316A4CE; Fri, 3 Sep 2004 12:28:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF69943D1F; Fri, 3 Sep 2004 12:28:53 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83CSr63036232; Fri, 3 Sep 2004 12:28:53 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83CSruV036231; Fri, 3 Sep 2004 12:28:53 GMT (envelope-from brueffer) Message-Id: <200409031228.i83CSruV036231@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 12:28:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 12:28:54 -0000 brueffer 2004-09-03 12:28:53 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Autogenerate device listings for ti(4) and tl(4) MFC after: 3 days Revision Changes Path 1.240 +2 -3 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Fri Sep 3 14:09:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3561816A4CE; Fri, 3 Sep 2004 14:09:06 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6AD043D4C; Fri, 3 Sep 2004 14:09:05 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id C70F5297F; Fri, 3 Sep 2004 16:09:43 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 9F1DCB85E; Fri, 3 Sep 2004 16:09:04 +0200 (CEST) To: Alfred Perlstein References: <200409022044.i82KiuoR099320@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 03 Sep 2004 16:09:04 +0200 In-Reply-To: <200409022044.i82KiuoR099320@repoman.freebsd.org> (Alfred Perlstein's message of "Thu, 2 Sep 2004 20:44:56 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/mtree BSD.include.dist src/include Makefile src/lib/libautofs Makefile libautofs.c src/sys/fs/autofs autofs_util.c autofs_vfsops.c autofs_vnops.c src/sys/conf NOTES files options src/sys/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 14:09:06 -0000 Alfred Perlstein writes: > Log: > Hook autofs to the build. s/Hook autofs to/Break/ DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Sep 3 14:28:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E373D16A4CE; Fri, 3 Sep 2004 14:28:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C503B43D45; Fri, 3 Sep 2004 14:28:53 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83ESrHT039604; Fri, 3 Sep 2004 14:28:53 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83ESrSf039603; Fri, 3 Sep 2004 14:28:53 GMT (envelope-from ache) Message-Id: <200409031428.i83ESrSf039603@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 3 Sep 2004 14:28:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/msgdef Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 14:28:54 -0000 ache 2004-09-03 14:28:53 UTC FreeBSD src repository Modified files: share/msgdef Makefile Log: Remove "-" before rm -rf Revision Changes Path 1.60 +1 -1 src/share/msgdef/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:03:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A404716A4CE; Fri, 3 Sep 2004 15:03:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8581343D1D; Fri, 3 Sep 2004 15:03:23 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83F3NpD040617; Fri, 3 Sep 2004 15:03:23 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83F3NTJ040616; Fri, 3 Sep 2004 15:03:23 GMT (envelope-from des) Message-Id: <200409031503.i83F3NTJ040616@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 3 Sep 2004 15:03:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs autofs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:03:23 -0000 des 2004-09-03 15:03:23 UTC FreeBSD src repository Modified files: sys/fs/autofs autofs_vfsops.c Log: Use %zd for size_t. Revision Changes Path 1.3 +1 -1 src/sys/fs/autofs/autofs_vfsops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:05:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 487CB16A4CE; Fri, 3 Sep 2004 15:05:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27A3243D1F; Fri, 3 Sep 2004 15:05:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83F5oxf040811; Fri, 3 Sep 2004 15:05:50 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83F5oBb040810; Fri, 3 Sep 2004 15:05:50 GMT (envelope-from jhb) Message-Id: <200409031505.i83F5oBb040810@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:05:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/amd64/linux32 linux32_machdep.csrc/sys/i386/linux linux_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:05:50 -0000 jhb 2004-09-03 15:05:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/amd64/linux32 linux32_machdep.c sys/i386/linux linux_machdep.c Log: MFC: Correct arguments to kern_sigaltstack(). Approved by: re (scottl) Revision Changes Path 1.2.2.1 +2 -2 src/sys/amd64/linux32/linux32_machdep.c 1.41.2.1 +2 -2 src/sys/i386/linux/linux_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:06:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5C2516A4CE; Fri, 3 Sep 2004 15:06:00 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFA843D39; Fri, 3 Sep 2004 15:06:00 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 490EA26E6; Fri, 3 Sep 2004 17:06:38 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 12B47B85E; Fri, 3 Sep 2004 17:05:59 +0200 (CEST) To: src-committers@FreeBSD.org References: <200409031503.i83F3NTJ040616@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 03 Sep 2004 17:05:58 +0200 In-Reply-To: <200409031503.i83F3NTJ040616@repoman.freebsd.org> (Dag-Erling Smorgrav's message of "Fri, 3 Sep 2004 15:03:23 +0000 (UTC)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/autofs autofs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:06:00 -0000 Dag-Erling Smorgrav writes: > Modified files: > sys/fs/autofs autofs_vfsops.c=20 > Log: > Use %zd for size_t. This fixes the LINT build on amd64, and hopefully on the other 64-bit platforms as well. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:06:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CCC116A4CF; Fri, 3 Sep 2004 15:06:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF06943D48; Fri, 3 Sep 2004 15:06:54 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83F6sNI040855; Fri, 3 Sep 2004 15:06:54 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83F6sCM040854; Fri, 3 Sep 2004 15:06:54 GMT (envelope-from jhb) Message-Id: <200409031506.i83F6sCM040854@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:06:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_shutdown.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:06:55 -0000 jhb 2004-09-03 15:06:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_shutdown.c Log: MFC: Remove some dead code. Approved by: re (scottl) Revision Changes Path 1.163.2.1 +1 -7 src/sys/kern/kern_shutdown.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:14:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5220916A4CE; Fri, 3 Sep 2004 15:14:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44CAD43D66; Fri, 3 Sep 2004 15:14:15 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83FEF7P041140; Fri, 3 Sep 2004 15:14:15 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83FEFCP041139; Fri, 3 Sep 2004 15:14:15 GMT (envelope-from jhb) Message-Id: <200409031514.i83FEFCP041139@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:14:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_condvar.c kern_synch.c kern_thread.c subr_sleepqueue.c src/sys/sys proc.h sleepqueue.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:14:15 -0000 jhb 2004-09-03 15:14:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_condvar.c kern_synch.c kern_thread.c subr_sleepqueue.c sys/sys proc.h sleepqueue.h Log: MFC: Further refine sleepqueue interface and consolidate duplicated code. This also appears to fix some select/poll races by more sanely handling TDF_SINTR. Approved by: re (scottl) Revision Changes Path 1.50.2.1 +16 -39 src/sys/kern/kern_condvar.c 1.257.2.1 +16 -28 src/sys/kern/kern_synch.c 1.193.2.2 +19 -0 src/sys/kern/kern_thread.c 1.10.2.1 +23 -9 src/sys/kern/subr_sleepqueue.c 1.392.2.4 +1 -0 src/sys/sys/proc.h 1.3.2.1 +4 -1 src/sys/sys/sleepqueue.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:19:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B39A16A4CE; Fri, 3 Sep 2004 15:19:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BCD443D1F; Fri, 3 Sep 2004 15:19:06 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83FJ6VC041394; Fri, 3 Sep 2004 15:19:06 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83FJ66V041393; Fri, 3 Sep 2004 15:19:06 GMT (envelope-from jhb) Message-Id: <200409031519.i83FJ66V041393@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:19:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sbin/fsck_ffs setup.c src/sbin/newfs mkfs.c src/sys/ufs/ffs fs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:19:06 -0000 jhb 2004-09-03 15:19:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sbin/fsck_ffs setup.c sbin/newfs mkfs.c sys/ufs/ffs fs.h Log: MFC: Generalize the UFS bad magic value so that it applies to both UFS1 and UFS2. Approved by: re (scottl) Revision Changes Path 1.47.2.1 +2 -2 src/sbin/fsck_ffs/setup.c 1.85.2.1 +9 -4 src/sbin/newfs/mkfs.c 1.43.2.1 +1 -1 src/sys/ufs/ffs/fs.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:30:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 895E216A4CE; Fri, 3 Sep 2004 15:30:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D58543D48; Fri, 3 Sep 2004 15:30:21 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83FULJj041937; Fri, 3 Sep 2004 15:30:21 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83FULHd041936; Fri, 3 Sep 2004 15:30:21 GMT (envelope-from jhb) Message-Id: <200409031530.i83FULHd041936@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:30:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/linux syscalls.master src/sys/alpha/osf1 osf1_misc.c syscalls.master src/sys/compat/linux linux_socket.c src/sys/compat/svr4 svr4_fcntl.c svr4_stream.c syscalls.master src/sys/i386/ibcs2 ibcs2_fcntl.c syscalls.master ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:30:21 -0000 jhb 2004-09-03 15:30:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/linux syscalls.master sys/alpha/osf1 osf1_misc.c syscalls.master sys/compat/linux linux_socket.c sys/compat/svr4 svr4_fcntl.c svr4_stream.c syscalls.master sys/i386/ibcs2 ibcs2_fcntl.c syscalls.master sys/i386/linux syscalls.master Log: MFC: Fix the ABI wrappers to use kern_fcntl() rather than calling fcntl() directly and mark related ABI syscalls as MP safe. Approved by: re (scottl) Revision Changes Path 1.58.2.1 +1 -1 src/sys/alpha/linux/syscalls.master 1.47.2.1 +13 -20 src/sys/alpha/osf1/osf1_misc.c 1.9.2.1 +1 -1 src/sys/alpha/osf1/syscalls.master 1.51.2.2 +4 -11 src/sys/compat/linux/linux_socket.c 1.32.4.1 +41 -61 src/sys/compat/svr4/svr4_fcntl.c 1.49.2.1 +9 -14 src/sys/compat/svr4/svr4_stream.c 1.15.2.1 +1 -1 src/sys/compat/svr4/syscalls.master 1.25.4.1 +18 -47 src/sys/i386/ibcs2/ibcs2_fcntl.c 1.18.2.1 +1 -1 src/sys/i386/ibcs2/syscalls.master 1.56.2.1 +2 -2 src/sys/i386/linux/syscalls.master From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:33:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E13B16A4CE; Fri, 3 Sep 2004 15:33:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30A2D43D1D; Fri, 3 Sep 2004 15:33:01 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83FX17k042199; Fri, 3 Sep 2004 15:33:01 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83FX1bd042198; Fri, 3 Sep 2004 15:33:01 GMT (envelope-from jhb) Message-Id: <200409031533.i83FX1bd042198@repoman.freebsd.org> From: John Baldwin Date: Fri, 3 Sep 2004 15:33:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c src/sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c src/sys/compat/svr4 svr4_proto.h svr4_syscall.h... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:33:01 -0000 jhb 2004-09-03 15:33:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c sys/alpha/osf1 osf1_proto.h osf1_syscall.h osf1_sysent.c sys/compat/svr4 svr4_proto.h svr4_syscall.h svr4_syscallnames.c svr4_sysent.c sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c Log: MFC: Regenerate after fcntl() changes. Approved by: re (scottl) Revision Changes Path 1.18.2.1 +1 -1 src/sys/alpha/linux/linux_proto.h 1.16.2.1 +1 -1 src/sys/alpha/linux/linux_syscall.h 1.16.2.1 +2 -2 src/sys/alpha/linux/linux_sysent.c 1.10.2.1 +1 -1 src/sys/alpha/osf1/osf1_proto.h 1.9.2.1 +1 -1 src/sys/alpha/osf1/osf1_syscall.h 1.9.2.1 +2 -2 src/sys/alpha/osf1/osf1_sysent.c 1.15.2.1 +1 -1 src/sys/compat/svr4/svr4_proto.h 1.13.2.1 +1 -1 src/sys/compat/svr4/svr4_syscall.h 1.13.2.1 +1 -1 src/sys/compat/svr4/svr4_syscallnames.c 1.14.2.1 +2 -2 src/sys/compat/svr4/svr4_sysent.c 1.19.2.1 +2 -1 src/sys/i386/ibcs2/ibcs2_proto.h 1.16.2.1 +1 -1 src/sys/i386/ibcs2/ibcs2_syscall.h 1.21.2.1 +2 -7 src/sys/i386/ibcs2/ibcs2_sysent.c 1.59.2.1 +1 -1 src/sys/i386/linux/linux_proto.h 1.53.2.1 +1 -1 src/sys/i386/linux/linux_syscall.h 1.60.2.1 +3 -3 src/sys/i386/linux/linux_sysent.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:40:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9DC516A534 for ; Fri, 3 Sep 2004 15:40:22 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9936243D5F for ; Fri, 3 Sep 2004 15:40:08 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 18100 invoked from network); 3 Sep 2004 15:40:08 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 3 Sep 2004 15:40:07 -0000 Received: from [10.50.41.228] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i83Fe3l3076130; Fri, 3 Sep 2004 11:40:03 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Wilko Bulte Date: Fri, 3 Sep 2004 09:28:42 -0400 User-Agent: KMail/1.6.2 References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <200409021344.41267.peter@wemm.org> <20040902220125.GA72910@freebie.xs4all.nl> In-Reply-To: <20040902220125.GA72910@freebie.xs4all.nl> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200409030928.42802.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Doug Rabson cc: Warner Losh Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:40:23 -0000 On Thursday 02 September 2004 06:01 pm, Wilko Bulte wrote: > On Thu, Sep 02, 2004 at 01:44:41PM -0700, Peter Wemm wrote.. > > > On Wednesday 01 September 2004 06:47 am, Doug Rabson wrote: > > > On Tue, 2004-08-31 at 21:38, Wilko Bulte wrote: > > > > On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. > > > > > > > > > imp 2004-08-31 20:37:10 UTC > > > > > > > > > > FreeBSD src repository > > > > > > > > > > Modified files: > > > > > sys/dev/fdc fdc_isa.c > > > > > Log: > > > > > When ISA_PNP_PROBE is called, it will return 0 when it finds a > > > > > device, ENOENT when there's no PNP ID for this device node, or > > > > > ENXIO when there is one, but it doesn't match. > > > > > > > > > > In the nonPNP case (as most Alpha systems appear to be), we > > > > > were > > > > > > > > I think no Alpha has PNP. > > > > > > All alphas with ISA busses support ISA PnP. I used to use it with an > > > old ISA PnP sound card in my 164lx. > > > > Exactly. Firmware support isn't required. ISA-PnP is a hardware level > > protocol. You can plug an isa-pnp card into any machine with physical > > isa slots and have to use the isapnp interface to wake the card, probe > > it, assign irqs etc. On PC's, this is typically done by the bios for > > OK, maybe I should have said that (AFAIK..) there is nothing in SRM > that would do that on Alphas. Yes. PnPBIOS is different from ISA PnP, but they look the same to ISA device drivers in FreeBSD. It is definitely true that Alphas do not enumerate floppy drives via PnPBIOS, and I don't know of any PnP floppy drives. > DEC did not have too many ISA cards for Alphas as far as I remember. > EISA cards were used (Adaptec 174x, 274x, Compaq Qvision VGA, > DEFAA (?) fddi, DE42x ethernet is what comes to mind. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:45:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7453516A4CE; Fri, 3 Sep 2004 15:45:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557CA43D58; Fri, 3 Sep 2004 15:45:32 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83FjWA4042588; Fri, 3 Sep 2004 15:45:32 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83FjWXq042587; Fri, 3 Sep 2004 15:45:32 GMT (envelope-from kan) Message-Id: <200409031545.i83FjWXq042587@repoman.freebsd.org> From: Alexander Kabaev Date: Fri, 3 Sep 2004 15:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_lock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:45:32 -0000 kan 2004-09-03 15:45:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_lock.c Log: MFC r1.76: Reintroduce slightly modified patch from kern/69964. Check for LK_HAVE_EXL in both acquire invocations. Approved by: re (scottl) Revision Changes Path 1.74.2.2 +11 -4 src/sys/kern/kern_lock.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:45:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8793916A4D0; Fri, 3 Sep 2004 15:45:57 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1604A43D1F; Fri, 3 Sep 2004 15:45:57 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i83FioNB008076; Fri, 3 Sep 2004 09:44:50 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 03 Sep 2004 09:45:09 -0600 (MDT) Message-Id: <20040903.094509.69351561.imp@bsdimp.com> To: jhb@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200409030928.42802.jhb@FreeBSD.org> References: <200409021344.41267.peter@wemm.org> <20040902220125.GA72910@freebie.xs4all.nl> <200409030928.42802.jhb@FreeBSD.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: dfr@nlsystems.com cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:45:57 -0000 In message: <200409030928.42802.jhb@FreeBSD.org> John Baldwin writes: : Yes. PnPBIOS is different from ISA PnP, but they look the same to ISA device : drivers in FreeBSD. It is definitely true that Alphas do not enumerate : floppy drives via PnPBIOS, and I don't know of any PnP floppy drives. I believe that the aha-1542CP has a pnp floppy controller on it. Warner From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:49:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC82D16A4CE; Fri, 3 Sep 2004 15:49:14 +0000 (GMT) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28ADB43D60; Fri, 3 Sep 2004 15:49:14 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk ([195.176.4.36]) by phk.freebsd.dk (8.12.10/8.12.10) with ESMTP id i83FmT3r089616; Fri, 3 Sep 2004 15:49:05 GMT (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i83FmERk003031; Fri, 3 Sep 2004 17:48:19 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 03 Sep 2004 09:45:09 MDT." <20040903.094509.69351561.imp@bsdimp.com> Date: Fri, 03 Sep 2004 17:48:14 +0200 Message-ID: <3030.1094226494@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: src-committers@FreeBSD.org cc: jhb@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: dfr@nlsystems.com cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:49:15 -0000 In message <20040903.094509.69351561.imp@bsdimp.com>, "M. Warner Losh" writes: >In message: <200409030928.42802.jhb@FreeBSD.org> > John Baldwin writes: >: Yes. PnPBIOS is different from ISA PnP, but they look the same to ISA device >: drivers in FreeBSD. It is definitely true that Alphas do not enumerate >: floppy drives via PnPBIOS, and I don't know of any PnP floppy drives. > >I believe that the aha-1542CP has a pnp floppy controller on it. I may have one of those in my piles. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-src@FreeBSD.ORG Fri Sep 3 15:57:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7957916A4CE; Fri, 3 Sep 2004 15:57:49 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 108D943D1D; Fri, 3 Sep 2004 15:57:49 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i83Fsrnr008178; Fri, 3 Sep 2004 09:54:53 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 03 Sep 2004 09:55:11 -0600 (MDT) Message-Id: <20040903.095511.21331590.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <3030.1094226494@critter.freebsd.dk> References: <20040903.094509.69351561.imp@bsdimp.com> <3030.1094226494@critter.freebsd.dk> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: jhb@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: dfr@nlsystems.com cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/sys/dev/fdc fdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 15:57:49 -0000 In message: <3030.1094226494@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <20040903.094509.69351561.imp@bsdimp.com>, "M. Warner Losh" writes: : >In message: <200409030928.42802.jhb@FreeBSD.org> : > John Baldwin writes: : >: Yes. PnPBIOS is different from ISA PnP, but they look the same to ISA device : >: drivers in FreeBSD. It is definitely true that Alphas do not enumerate : >: floppy drives via PnPBIOS, and I don't know of any PnP floppy drives. : > : >I believe that the aha-1542CP has a pnp floppy controller on it. : : I may have one of those in my piles. I have one in mine, but I don't know if the pnp-ness of the aha side of things also applies to the flopppy side of things. Warner From owner-cvs-src@FreeBSD.ORG Fri Sep 3 16:01:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8830416A4CE; Fri, 3 Sep 2004 16:01:34 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3960A43D3F; Fri, 3 Sep 2004 16:01:34 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 61A77343E; Fri, 3 Sep 2004 18:02:12 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 3D45BB85E; Fri, 3 Sep 2004 18:01:33 +0200 (CEST) To: src-committers@FreeBSD.org References: <200409031503.i83F3NTJ040616@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 03 Sep 2004 18:01:33 +0200 In-Reply-To: (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav's?= message of "Fri, 03 Sep 2004 17:05:58 +0200") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/autofs autofs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 16:01:34 -0000 des@des.no (Dag-Erling Sm=F8rgrav) writes: > Dag-Erling Smorgrav writes: > > Modified files: > > sys/fs/autofs autofs_vfsops.c=20 > > Log: > > Use %zd for size_t. > This fixes the LINT build on amd64, and hopefully on the other 64-bit > platforms as well. ...though it should really be %zu, not %zd. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Sep 3 16:05:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E86616A4CE; Fri, 3 Sep 2004 16:05:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7020A43D39; Fri, 3 Sep 2004 16:05:44 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83G5imD043268; Fri, 3 Sep 2004 16:05:44 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83G5idK043267; Fri, 3 Sep 2004 16:05:44 GMT (envelope-from des) Message-Id: <200409031605.i83G5idK043267@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 3 Sep 2004 16:05:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs autofs_vfsops.c autofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 16:05:44 -0000 des 2004-09-03 16:05:44 UTC FreeBSD src repository Modified files: sys/fs/autofs autofs_vfsops.c autofs_vnops.c Log: The correct format string for size_t is %zu (%zd is for ssize_t). Revision Changes Path 1.4 +2 -2 src/sys/fs/autofs/autofs_vfsops.c 1.4 +2 -2 src/sys/fs/autofs/autofs_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 16:41:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DA9816A4CE; Fri, 3 Sep 2004 16:41:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E7C643D39; Fri, 3 Sep 2004 16:41:42 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Gfga2044540; Fri, 3 Sep 2004 16:41:42 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83GfgXO044539; Fri, 3 Sep 2004 16:41:42 GMT (envelope-from jmg) Message-Id: <200409031641.i83GfgXO044539@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 3 Sep 2004 16:41:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/re if_re.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 16:41:42 -0000 jmg 2004-09-03 16:41:42 UTC FreeBSD src repository Modified files: sys/dev/re if_re.c Log: merge in if_rl locking because if_re was originally based upon if_rl. This essentially merges revs 1.143-1.1445 of sys/pci/if_rl.c. This now marks the interrupt MPSAFE along with making the mutex non-recursive. Looked over by: bms Revision Changes Path 1.30 +135 -84 src/sys/dev/re/if_re.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 16:54:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 835CA16A4CE; Fri, 3 Sep 2004 16:54:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66A5143D45; Fri, 3 Sep 2004 16:54:41 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83GsfZq045067; Fri, 3 Sep 2004 16:54:41 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Gsfs2045066; Fri, 3 Sep 2004 16:54:41 GMT (envelope-from njl) Message-Id: <200409031654.i83Gsfs2045066@repoman.freebsd.org> From: Nate Lawson Date: Fri, 3 Sep 2004 16:54:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/fdc fdc_acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 16:54:41 -0000 njl 2004-09-03 16:54:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/fdc fdc_acpi.c Log: MFC rev 1.4, 1.5: Fix _FDE and _FDI probing. Approved by: re (scottl) Revision Changes Path 1.2.2.1 +35 -11 src/sys/dev/fdc/fdc_acpi.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 17:02:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F181D16A4CE; Fri, 3 Sep 2004 17:02:03 +0000 (GMT) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 845DC43D31; Fri, 3 Sep 2004 17:02:03 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd10.aul.t-online.de by mailout04.sul.t-online.com with smtp id 1C3HRp-0001DC-02; Fri, 03 Sep 2004 19:02:01 +0200 Received: from Andro-Beta.Leidinger.net (SOalvBZBweg-BqhqJttNJCpqSU8Tp43NNqlAHmBKDv9bnUXopf-bUe@[217.229.215.22]) by fmrl10.sul.t-online.com with esmtp id 1C3HRc-2Be3ma0; Fri, 3 Sep 2004 19:01:48 +0200 Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) i83H1oo7025994; Fri, 3 Sep 2004 19:01:50 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Fri, 3 Sep 2004 19:03:12 +0200 From: Alexander Leidinger To: Peter Wemm Message-ID: <20040903190312.780ea3ff@Magellan.Leidinger.net> In-Reply-To: <200408300957.55509.peter@wemm.org> References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829175021.GB41269@dragon.nuxi.com> <200408300957.55509.peter@wemm.org> X-Mailer: Sylpheed-Claws 0.9.12a (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-ID: SOalvBZBweg-BqhqJttNJCpqSU8Tp43NNqlAHmBKDv9bnUXopf-bUe@t-dialin.net X-TOI-MSGID: 428efbf4-0216-47ee-b44f-52899e76cc81 cc: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: obrien@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 17:02:04 -0000 On Mon, 30 Aug 2004 09:57:55 -0700 Peter Wemm wrote: > On Sunday 29 August 2004 12:00 pm, Dag-Erling Sm=F8rgrav wrote: > > "David O'Brien" writes: > > > Could it also be Intel Xeon CT[*]? And thus amd64 also? > > > > It's really chipset-dependent, not processor-dependent. Will EM64T- > > enabled P4s or Xeons run on ICH motherboards? >=20 > Intel use the same programming interface on their newer chipsets, that=20 > happen to support their 64-bit enabled cpus. Does this include the ichwd part too? Bye, Alexander. --=20 The best things in life are free, but the expensive ones are still worth a look. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint =3D C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 17:09:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 258AF16A4CE; Fri, 3 Sep 2004 17:09:59 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6CF43D49; Fri, 3 Sep 2004 17:09:54 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.200] ([192.168.0.200]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i83H9n70086745; Fri, 3 Sep 2004 11:09:50 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4138A4BC.3060809@samsco.org> Date: Fri, 03 Sep 2004 11:07:08 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040831 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alexander Leidinger References: <200408291052.i7TAqeYA052308@repoman.freebsd.org> <20040829175021.GB41269@dragon.nuxi.com> <200408300957.55509.peter@wemm.org> <20040903190312.780ea3ff@Magellan.Leidinger.net> In-Reply-To: <20040903190312.780ea3ff@Magellan.Leidinger.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: src-committers@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: obrien@FreeBSD.org cc: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Subject: Re: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 17:09:59 -0000 Alexander Leidinger wrote: > On Mon, 30 Aug 2004 09:57:55 -0700 > Peter Wemm wrote: > > >>On Sunday 29 August 2004 12:00 pm, Dag-Erling Smørgrav wrote: >> >>>"David O'Brien" writes: >>> >>>>Could it also be Intel Xeon CT[*]? And thus amd64 also? >>> >>>It's really chipset-dependent, not processor-dependent. Will EM64T- >>>enabled P4s or Xeons run on ICH motherboards? >> >>Intel use the same programming interface on their newer chipsets, that >>happen to support their 64-bit enabled cpus. > > > Does this include the ichwd part too? > > Bye, > Alexander. > The 7520 chipset that the current 64-bit Xeons use has an ICH5 for the Southbridge, so I would expect the ichwd driver to have a chance of working on it. Scott From owner-cvs-src@FreeBSD.ORG Fri Sep 3 17:39:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C607B16A4CE; Fri, 3 Sep 2004 17:39:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A939543D53; Fri, 3 Sep 2004 17:39:00 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Hd0eq046828; Fri, 3 Sep 2004 17:39:00 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Hd020046827; Fri, 3 Sep 2004 17:39:00 GMT (envelope-from alfred) Message-Id: <200409031739.i83Hd020046827@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 3 Sep 2004 17:39:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 17:39:00 -0000 alfred 2004-09-03 17:39:00 UTC FreeBSD src repository Modified files: lib Makefile Log: Hook libautofs to the build. Revision Changes Path 1.192 +1 -1 src/lib/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 3 17:52:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB1616A4CE; Fri, 3 Sep 2004 17:52:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E599343D1D; Fri, 3 Sep 2004 17:52:55 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Hqt8U047326; Fri, 3 Sep 2004 17:52:55 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83HqtLp047325; Fri, 3 Sep 2004 17:52:55 GMT (envelope-from alfred) Message-Id: <200409031752.i83HqtLp047325@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 3 Sep 2004 17:52:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 procfs.5 src/usr.bin/truss truss.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 17:52:56 -0000 alfred 2004-09-03 17:52:55 UTC FreeBSD src repository Modified files: share/man/man5 procfs.5 usr.bin/truss truss.1 Log: xref and give a hint as to what procctl can be used for. Revision Changes Path 1.31 +5 -0 src/share/man/man5/procfs.5 1.16 +7 -1 src/usr.bin/truss/truss.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:01:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7A1A16A4CF; Fri, 3 Sep 2004 18:01:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8980043D45; Fri, 3 Sep 2004 18:01:34 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83I1Yv7047637; Fri, 3 Sep 2004 18:01:34 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83I1YtB047636; Fri, 3 Sep 2004 18:01:34 GMT (envelope-from alfred) Message-Id: <200409031801.i83I1YtB047636@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 3 Sep 2004 18:01:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libautofs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:01:34 -0000 alfred 2004-09-03 18:01:34 UTC FreeBSD src repository Modified files: lib/libautofs Makefile Log: Normalize the makefile. submitted by: ru Revision Changes Path 1.3 +3 -8 src/lib/libautofs/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:09:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1F7216A4CE; Fri, 3 Sep 2004 18:09:32 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08BAC43D31; Fri, 3 Sep 2004 18:09:32 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i83I9R3c096361 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Sep 2004 21:09:28 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i83I9Rdu004507; Fri, 3 Sep 2004 21:09:27 +0300 (EEST) (envelope-from ru) Date: Fri, 3 Sep 2004 21:09:27 +0300 From: Ruslan Ermilov To: Alfred Perlstein Message-ID: <20040903180927.GB4385@ip.net.ua> References: <200409031752.i83HqtLp047325@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9Ek0hoCL9XbhcSqy" Content-Disposition: inline In-Reply-To: <200409031752.i83HqtLp047325@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man5 procfs.5 src/usr.bin/truss truss.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:09:33 -0000 --9Ek0hoCL9XbhcSqy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 03, 2004 at 05:52:55PM +0000, Alfred Perlstein wrote: > alfred 2004-09-03 17:52:55 UTC >=20 > FreeBSD src repository >=20 > Modified files: > share/man/man5 procfs.5=20 > usr.bin/truss truss.1=20 > Log: > xref and give a hint as to what procctl can be used for. > =20 > Revision Changes Path > 1.31 +5 -0 src/share/man/man5/procfs.5 > 1.16 +7 -1 src/usr.bin/truss/truss.1 >=20 Do you know what happens when you forgot to bump the manpage's document dates? :-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --9Ek0hoCL9XbhcSqy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBOLNXqRfpzJluFF4RAp2ZAKCEBxRyEz3J3UtmWbE5xcyo5+MTBwCdHaBy veDiM+TQteHPe/VO+AnU3wo= =O5W2 -----END PGP SIGNATURE----- --9Ek0hoCL9XbhcSqy-- From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:32:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E6916A4CE; Fri, 3 Sep 2004 18:32:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A5C443D31; Fri, 3 Sep 2004 18:32:24 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83IWOWG048426; Fri, 3 Sep 2004 18:32:24 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83IWO30048425; Fri, 3 Sep 2004 18:32:24 GMT (envelope-from iedowse) Message-Id: <200409031832.i83IWO30048425@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 18:32:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/sys linker.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:32:24 -0000 iedowse 2004-09-03 18:32:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/sys linker.h Log: MFC: 1.39; add MODINFOMD_SHDR for passing section header tables from the loader to the kernel. Approved by: re Revision Changes Path 1.38.2.1 +1 -0 src/sys/sys/linker.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:38:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC9F616A4CE; Fri, 3 Sep 2004 18:38:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E312D43D1D; Fri, 3 Sep 2004 18:38:47 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83IclsL048699; Fri, 3 Sep 2004 18:38:47 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83IclmR048698; Fri, 3 Sep 2004 18:38:47 GMT (envelope-from iedowse) Message-Id: <200409031838.i83IclmR048698@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 18:38:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.sbin/kldxref Makefile ef.c ef.h ef_amd64.c ef_i386.c ef_nop.c ef_obj.c ef_sparc64.c kldxref.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:38:48 -0000 iedowse 2004-09-03 18:38:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/kldxref Makefile ef.c ef.h ef_nop.c ef_sparc64.c kldxref.c Added files: (Branch: RELENG_5) usr.sbin/kldxref ef_amd64.c ef_i386.c ef_obj.c Log: MFC: Add support for reading the ELF relocatable object format modules that are use on the amd64 platform. Approved by: re Revision Changes Path 1.6.6.1 +1 -1 src/usr.sbin/kldxref/Makefile 1.6.6.1 +162 -19 src/usr.sbin/kldxref/ef.c 1.3.6.1 +56 -37 src/usr.sbin/kldxref/ef.h 1.2.2.1 +117 -0 src/usr.sbin/kldxref/ef_amd64.c (new) 1.2.2.1 +96 -0 src/usr.sbin/kldxref/ef_i386.c (new) 1.1.6.1 +2 -1 src/usr.sbin/kldxref/ef_nop.c 1.3.2.1 +606 -0 src/usr.sbin/kldxref/ef_obj.c (new) 1.1.6.1 +14 -8 src/usr.sbin/kldxref/ef_sparc64.c 1.8.2.1 +22 -17 src/usr.sbin/kldxref/kldxref.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:55:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D156F16A4CE; Fri, 3 Sep 2004 18:55:00 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1FD243D31; Fri, 3 Sep 2004 18:55:00 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id AF9905C928; Fri, 3 Sep 2004 11:55:00 -0700 (PDT) Date: Fri, 3 Sep 2004 11:55:00 -0700 From: Alfred Perlstein To: Ruslan Ermilov Message-ID: <20040903185500.GE31434@elvis.mu.org> References: <200409031752.i83HqtLp047325@repoman.freebsd.org> <20040903180927.GB4385@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040903180927.GB4385@ip.net.ua> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man5 procfs.5 src/usr.bin/truss truss.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:55:01 -0000 * Ruslan Ermilov [040903 11:09] wrote: > On Fri, Sep 03, 2004 at 05:52:55PM +0000, Alfred Perlstein wrote: > > alfred 2004-09-03 17:52:55 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/man/man5 procfs.5 > > usr.bin/truss truss.1 > > Log: > > xref and give a hint as to what procctl can be used for. > > > > Revision Changes Path > > 1.31 +5 -0 src/share/man/man5/procfs.5 > > 1.16 +7 -1 src/usr.bin/truss/truss.1 > > > Do you know what happens when you forgot to bump the manpage's > document dates? :-) "tastes like burning..." :( Hmm, maybe a cvs script could be done? I'll fix it. -Alfred From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:56:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E428616A4CE; Fri, 3 Sep 2004 18:56:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C702C43D1F; Fri, 3 Sep 2004 18:56:59 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83IuxGo049530; Fri, 3 Sep 2004 18:56:59 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Iux0k049529; Fri, 3 Sep 2004 18:56:59 GMT (envelope-from alfred) Message-Id: <200409031856.i83Iux0k049529@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 3 Sep 2004 18:56:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss truss.1 src/share/man/man5 procfs.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:57:00 -0000 alfred 2004-09-03 18:56:59 UTC FreeBSD src repository Modified files: usr.bin/truss truss.1 share/man/man5 procfs.5 Log: Update doc dates. Pointed out by: ru Revision Changes Path 1.32 +1 -1 src/share/man/man5/procfs.5 1.17 +1 -1 src/usr.bin/truss/truss.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 18:57:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6FA716A4ED; Fri, 3 Sep 2004 18:57:47 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0BC943D2F; Fri, 3 Sep 2004 18:57:46 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i83IvgXv097288 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Sep 2004 21:57:43 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i83IvgGi004846; Fri, 3 Sep 2004 21:57:42 +0300 (EEST) (envelope-from ru) Date: Fri, 3 Sep 2004 21:57:42 +0300 From: Ruslan Ermilov To: Alfred Perlstein Message-ID: <20040903185742.GA4825@ip.net.ua> References: <200409031752.i83HqtLp047325@repoman.freebsd.org> <20040903180927.GB4385@ip.net.ua> <20040903185500.GE31434@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <20040903185500.GE31434@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man5 procfs.5 src/usr.bin/truss truss.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 18:57:47 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 03, 2004 at 11:55:00AM -0700, Alfred Perlstein wrote: > * Ruslan Ermilov [040903 11:09] wrote: > > On Fri, Sep 03, 2004 at 05:52:55PM +0000, Alfred Perlstein wrote: > > > alfred 2004-09-03 17:52:55 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > share/man/man5 procfs.5=20 > > > usr.bin/truss truss.1=20 > > > Log: > > > xref and give a hint as to what procctl can be used for. > > > =20 > > > Revision Changes Path > > > 1.31 +5 -0 src/share/man/man5/procfs.5 > > > 1.16 +7 -1 src/usr.bin/truss/truss.1 > > >=20 > > Do you know what happens when you forgot to bump the manpage's > > document dates? :-) >=20 > "tastes like burning..." :( >=20 > Hmm, maybe a cvs script could be done? >=20 No, because it shouldn't bumped every time, only for contents changes. > I'll fix it. >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBOL6mqRfpzJluFF4RAqKzAJ9q9q+yEkux6xWOZZIefHcZ+2HZZwCgkDnA bT705s4yEZ45we7ilTron/w= =F4Jj -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-cvs-src@FreeBSD.ORG Fri Sep 3 19:25:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8E1416A4CF; Fri, 3 Sep 2004 19:25:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCADC43D39; Fri, 3 Sep 2004 19:25:40 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83JPeqg050392; Fri, 3 Sep 2004 19:25:40 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83JPedH050391; Fri, 3 Sep 2004 19:25:40 GMT (envelope-from iedowse) Message-Id: <200409031925.i83JPedH050391@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 19:25:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/boot/common Makefile.inc bootstrap.h load_elf.c load_elf32_obj.c load_elf64_obj.c load_elf_obj.c misc.c reloc_elf.c reloc_elf32.c reloc_elf64.c src/sys/boot/i386/libi386 elf32_freebsd.c elf64_freebsd.c src/sys/boot/i386/loader conf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 19:25:41 -0000 iedowse 2004-09-03 19:25:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/boot/common Makefile.inc bootstrap.h load_elf.c misc.c sys/boot/i386/libi386 elf32_freebsd.c elf64_freebsd.c sys/boot/i386/loader conf.c Added files: (Branch: RELENG_5) sys/boot/common load_elf32_obj.c load_elf64_obj.c load_elf_obj.c reloc_elf.c reloc_elf32.c reloc_elf64.c Log: MFC: add loader(8) support for preloading ELF relocatable object format modules. Approved by: re Revision Changes Path 1.17.2.1 +4 -3 src/sys/boot/common/Makefile.inc 1.38.6.1 +15 -0 src/sys/boot/common/bootstrap.h 1.30.2.1 +81 -70 src/sys/boot/common/load_elf.c 1.1.2.1 +6 -0 src/sys/boot/common/load_elf32_obj.c (new) 1.1.2.1 +6 -0 src/sys/boot/common/load_elf64_obj.c (new) 1.1.2.1 +515 -0 src/sys/boot/common/load_elf_obj.c (new) 1.8.4.1 +68 -0 src/sys/boot/common/misc.c 1.1.2.1 +199 -0 src/sys/boot/common/reloc_elf.c (new) 1.1.2.1 +6 -0 src/sys/boot/common/reloc_elf32.c (new) 1.1.2.1 +6 -0 src/sys/boot/common/reloc_elf64.c (new) 1.13.4.1 +8 -0 src/sys/boot/i386/libi386/elf32_freebsd.c 1.14.4.1 +8 -0 src/sys/boot/i386/libi386/elf64_freebsd.c 1.24.4.1 +4 -0 src/sys/boot/i386/loader/conf.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 19:49:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A104D16A4CF; Fri, 3 Sep 2004 19:49:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8571A43D4C; Fri, 3 Sep 2004 19:49:25 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83JnPar051186; Fri, 3 Sep 2004 19:49:25 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83JnPNV051185; Fri, 3 Sep 2004 19:49:25 GMT (envelope-from iedowse) Message-Id: <200409031949.i83JnPNV051185@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 19:49:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern kern_linker.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 19:49:25 -0000 iedowse 2004-09-03 19:49:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern kern_linker.c Log: MFC: 1.114; fix the logic for trying each linker class in turn with a preloaded module. Approved by: re Revision Changes Path 1.113.2.1 +2 -3 src/sys/kern/kern_linker.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 19:58:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C9AC16A4CE; Fri, 3 Sep 2004 19:58:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F69743D2D; Fri, 3 Sep 2004 19:58:01 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Jw0eV051641; Fri, 3 Sep 2004 19:58:00 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Jw08L051640; Fri, 3 Sep 2004 19:58:00 GMT (envelope-from iedowse) Message-Id: <200409031958.i83Jw08L051640@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 19:58:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/vm vm_zeroidle.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 19:58:01 -0000 iedowse 2004-09-03 19:58:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/vm vm_zeroidle.c Log: MFC: 1.27; Prevent vm_page_zero_idle_wakeup() from attempting to wake up the page zeroing thread before it has been created. Approved by: re Revision Changes Path 1.26.2.1 +5 -2 src/sys/vm/vm_zeroidle.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 20:01:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EDBC16A4CE; Fri, 3 Sep 2004 20:01:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0238143D39; Fri, 3 Sep 2004 20:01:33 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83K1Wkb051771; Fri, 3 Sep 2004 20:01:32 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83K1WmS051770; Fri, 3 Sep 2004 20:01:32 GMT (envelope-from iedowse) Message-Id: <200409032001.i83K1WmS051770@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 20:01:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/usb usbdi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 20:01:33 -0000 iedowse 2004-09-03 20:01:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/usb usbdi.c Log: MFC: 1.87; fix two cases where a successful return from usbd_transfer() would be treated as an error and cause a transfer to be freed twice. Approved by: re Revision Changes Path 1.86.2.1 +2 -2 src/sys/dev/usb/usbdi.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 20:06:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E98A416A4CF; Fri, 3 Sep 2004 20:06:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C988B43D49; Fri, 3 Sep 2004 20:06:24 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83K6Ock052037; Fri, 3 Sep 2004 20:06:24 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83K6Od0052036; Fri, 3 Sep 2004 20:06:24 GMT (envelope-from iedowse) Message-Id: <200409032006.i83K6Od0052036@repoman.freebsd.org> From: Ian Dowse Date: Fri, 3 Sep 2004 20:06:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern link_elf_obj.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 20:06:25 -0000 iedowse 2004-09-03 20:06:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern link_elf_obj.c Log: MFC: 1.87; Add support for completing the installation of ELF relocatable object format modules that were read in by the loader. Approved by: re Revision Changes Path 1.86.2.1 +208 -3 src/sys/kern/link_elf_obj.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 22:41:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61A9A16A4CF; Fri, 3 Sep 2004 22:41:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4275F43D2D; Fri, 3 Sep 2004 22:41:37 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Mfbkh057434; Fri, 3 Sep 2004 22:41:37 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83MfbR2057433; Fri, 3 Sep 2004 22:41:37 GMT (envelope-from sanpei) Message-Id: <200409032241.i83MfbR2057433@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Fri, 3 Sep 2004 22:41:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uplcom.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 22:41:37 -0000 sanpei 2004-09-03 22:41:37 UTC FreeBSD src repository Modified files: sys/dev/usb uplcom.c usbdevs Log: add support ELECOM UC-SGT(minor change version) http://www2.elecom.co.jp/products/UC-SGT.html PR: [FreeBSD-users-jp 80725] Submitted by: NAKAMURA Kazushi MFC after: 1 week Revision Changes Path 1.21 +1 -0 src/sys/dev/usb/uplcom.c 1.198 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:13:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4139E16A4CE; Fri, 3 Sep 2004 23:13:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 227B443D39; Fri, 3 Sep 2004 23:13:55 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NDtkb058273; Fri, 3 Sep 2004 23:13:55 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NDtPD058272; Fri, 3 Sep 2004 23:13:55 GMT (envelope-from brueffer) Message-Id: <200409032313.i83NDtPD058272@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:13:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 wb.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:13:55 -0000 brueffer 2004-09-03 23:13:54 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 wb.4 Log: - move list of supported adapters into a HARDWARE section - properly capitalize (Fast) Ethernet - bump document date MFC after: 3 days Revision Changes Path 1.17 +15 -7 src/share/man/man4/wb.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:16:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FBF016A4CE; Fri, 3 Sep 2004 23:16:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E52243D5D; Fri, 3 Sep 2004 23:16:08 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NG7hJ058389; Fri, 3 Sep 2004 23:16:07 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NG72Y058388; Fri, 3 Sep 2004 23:16:07 GMT (envelope-from brueffer) Message-Id: <200409032316.i83NG72Y058388@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:16:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uplcom.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:16:08 -0000 brueffer 2004-09-03 23:16:07 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 uplcom.4 Log: - change layout of the hardware list to the one used by other manpages - fix spacing of one hardware entry - grammar fix MFC after: 3 days Revision Changes Path 1.8 +3 -3 src/share/man/man4/uplcom.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:17:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C41AB16A4CE; Fri, 3 Sep 2004 23:17:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A595F43D41; Fri, 3 Sep 2004 23:17:21 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NHLfF058432; Fri, 3 Sep 2004 23:17:21 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NHLZT058431; Fri, 3 Sep 2004 23:17:21 GMT (envelope-from brueffer) Message-Id: <200409032317.i83NHLZT058431@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:17:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uftdi.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:17:21 -0000 brueffer 2004-09-03 23:17:21 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 uftdi.4 Log: - change layout of the hardware list to the one used by other manpages - add a missing word MFC after: 3 days Revision Changes Path 1.4 +2 -2 src/share/man/man4/uftdi.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:18:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF6B116A4CE; Fri, 3 Sep 2004 23:18:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 913F743D45; Fri, 3 Sep 2004 23:18:16 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NIGOc058475; Fri, 3 Sep 2004 23:18:16 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NIGii058474; Fri, 3 Sep 2004 23:18:16 GMT (envelope-from brueffer) Message-Id: <200409032318.i83NIGii058474@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:18:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ubsa.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:18:16 -0000 brueffer 2004-09-03 23:18:16 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ubsa.4 Log: - change layout of the hardware list to the one used by other manpages - grammar fixes MFC after: 3 days Revision Changes Path 1.3 +3 -3 src/share/man/man4/ubsa.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:19:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3278016A4CE; Fri, 3 Sep 2004 23:19:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12FFD43D41; Fri, 3 Sep 2004 23:19:28 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NJRtu058535; Fri, 3 Sep 2004 23:19:27 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NJRY3058534; Fri, 3 Sep 2004 23:19:27 GMT (envelope-from sanpei) Message-Id: <200409032319.i83NJRY3058534@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Fri, 3 Sep 2004 23:19:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usb_quirks.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:19:28 -0000 sanpei 2004-09-03 23:19:27 UTC FreeBSD src repository Modified files: sys/dev/usb usb_quirks.c usbdevs Log: Add support Qualcomm CDMA modem PR: kern/71043 Submitted by: Tomas Krivanek MFC after: 1 week Revision Changes Path 1.40 +2 -0 src/sys/dev/usb/usb_quirks.c 1.199 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:21:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2841A16A4CE; Fri, 3 Sep 2004 23:21:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AF4B43D41; Fri, 3 Sep 2004 23:21:38 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NLbb6058673; Fri, 3 Sep 2004 23:21:37 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NLbtG058672; Fri, 3 Sep 2004 23:21:37 GMT (envelope-from brueffer) Message-Id: <200409032321.i83NLbtG058672@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:21:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:21:38 -0000 brueffer 2004-09-03 23:21:37 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: Add ubsa(4), uftdi(4), uplcom(4) and wb(4) MFC after: 3 days Revision Changes Path 1.19 +4 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:23:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3905716A4CE; Fri, 3 Sep 2004 23:23:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1986843D53; Fri, 3 Sep 2004 23:23:12 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NNBxe058724; Fri, 3 Sep 2004 23:23:11 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NNBrI058723; Fri, 3 Sep 2004 23:23:11 GMT (envelope-from brueffer) Message-Id: <200409032323.i83NNBrI058723@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:23:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:23:12 -0000 brueffer 2004-09-03 23:23:11 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Autogenerate device listing for wb(4) MFC after: 3 days Revision Changes Path 1.241 +1 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:23:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A725316A4CE; Fri, 3 Sep 2004 23:23:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 899D043D45; Fri, 3 Sep 2004 23:23:51 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NNpr5058758; Fri, 3 Sep 2004 23:23:51 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NNpOH058757; Fri, 3 Sep 2004 23:23:51 GMT (envelope-from scottl) Message-Id: <200409032323.i83NNpOH058757@repoman.freebsd.org> From: Scott Long Date: Fri, 3 Sep 2004 23:23:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:23:51 -0000 scottl 2004-09-03 23:23:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf newvers.sh Log: Update to 5.3-BETA3 Approved by: re Revision Changes Path 1.62.2.4 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:26:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F13716A4CE; Fri, 3 Sep 2004 23:26:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 601CF43D48; Fri, 3 Sep 2004 23:26:55 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NQtri058874; Fri, 3 Sep 2004 23:26:55 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NQt7U058873; Fri, 3 Sep 2004 23:26:55 GMT (envelope-from stefanf) Message-Id: <200409032326.i83NQt7U058873@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 3 Sep 2004 23:26:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:26:55 -0000 stefanf 2004-09-03 23:26:55 UTC FreeBSD src repository Modified files: include tgmath.h Log: Embarrassing typo: s/nextbyint/nearbyint/ Revision Changes Path 1.2 +1 -1 src/include/tgmath.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:29:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DE3F16A4CE; Fri, 3 Sep 2004 23:29:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DFD943D2D; Fri, 3 Sep 2004 23:29:01 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NT1jt058975; Fri, 3 Sep 2004 23:29:01 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NT1wH058974; Fri, 3 Sep 2004 23:29:01 GMT (envelope-from sanpei) Message-Id: <200409032329.i83NT1wH058974@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Fri, 3 Sep 2004 23:29:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uscanner.4 src/sys/dev/usb usbdevs uscanner.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:29:01 -0000 sanpei 2004-09-03 23:29:01 UTC FreeBSD src repository Modified files: share/man/man4 uscanner.4 sys/dev/usb usbdevs uscanner.c Log: Add support Nikon CoolScan LS40 ED PR: kern/71139 Submitted by: Pierre DAVID MFC after: 1 week Revision Changes Path 1.17 +2 -0 src/share/man/man4/uscanner.4 1.200 +1 -1 src/sys/dev/usb/usbdevs 1.58 +3 -0 src/sys/dev/usb/uscanner.c From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:31:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AF4416A4CE; Fri, 3 Sep 2004 23:31:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E180C43D41; Fri, 3 Sep 2004 23:31:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NVSnn059130; Fri, 3 Sep 2004 23:31:28 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NVSFu059129; Fri, 3 Sep 2004 23:31:28 GMT (envelope-from stefanf) Message-Id: <200409032331.i83NVSFu059129@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 3 Sep 2004 23:31:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:31:29 -0000 stefanf 2004-09-03 23:31:28 UTC FreeBSD src repository Modified files: include tgmath.h Log: Use the keyword '_Complex' rather than the macro 'complex' since applications are allowed to undefine the latter. Revision Changes Path 1.3 +4 -4 src/include/tgmath.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:44:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A584416A4CE; Fri, 3 Sep 2004 23:44:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86AF143D54; Fri, 3 Sep 2004 23:44:09 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Ni9Bx059468; Fri, 3 Sep 2004 23:44:09 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Ni9n7059467; Fri, 3 Sep 2004 23:44:09 GMT (envelope-from stefanf) Message-Id: <200409032344.i83Ni9n7059467@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 3 Sep 2004 23:44:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:44:09 -0000 stefanf 2004-09-03 23:44:09 UTC FreeBSD src repository Modified files: include tgmath.h Log: Add a workaround to recognise I/_Complex_I as complex arguments. Although the GCC manual claims that the expression 1.0fi has type float _Complex, __builtin_types_compatible_p(float _Complex, __typeof__(1.0fi))) yields 0. Revision Changes Path 1.4 +2 -1 src/include/tgmath.h From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:52:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D90FF16A4CE; Fri, 3 Sep 2004 23:52:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA26243D2D; Fri, 3 Sep 2004 23:52:26 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83NqQQQ059751; Fri, 3 Sep 2004 23:52:26 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83NqQgv059750; Fri, 3 Sep 2004 23:52:26 GMT (envelope-from brueffer) Message-Id: <200409032352.i83NqQgv059750@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:52:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 vr.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:52:27 -0000 brueffer 2004-09-03 23:52:26 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 vr.4 Log: Properly capitalize Ethernet MFC after: 3 days Revision Changes Path 1.23 +1 -1 src/share/man/man4/vr.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 3 23:53:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4783216A4CE; Fri, 3 Sep 2004 23:53:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2804B43D1D; Fri, 3 Sep 2004 23:53:03 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i83Nr39w059813; Fri, 3 Sep 2004 23:53:03 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i83Nr3u4059812; Fri, 3 Sep 2004 23:53:03 GMT (envelope-from brueffer) Message-Id: <200409032353.i83Nr3u4059812@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 3 Sep 2004 23:53:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 umodem.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2004 23:53:03 -0000 brueffer 2004-09-03 23:53:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 umodem.4 Log: Grammar fix MFC after: 3 days Revision Changes Path 1.5 +1 -1 src/share/man/man4/umodem.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:04:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D069D16A4CE; Sat, 4 Sep 2004 00:04:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1B5343D2D; Sat, 4 Sep 2004 00:04:58 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8404wAH061183; Sat, 4 Sep 2004 00:04:58 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8404wx8061182; Sat, 4 Sep 2004 00:04:58 GMT (envelope-from marcel) Message-Id: <200409040004.i8404wx8061182@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 4 Sep 2004 00:04:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/ia64/string memcpy.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 00:04:59 -0000 marcel 2004-09-04 00:04:58 UTC FreeBSD src repository Modified files: lib/libc/ia64/string memcpy.S Log: Unbreak memcpy(). memcpy() is defined to return the dst argument. By using r8 instead of r14 to do the swap, we put the dst argument in the return register. Since bcopy() doesn't clobber r8, we don't have to do anything else. This fixes ports/textproc/aspell. Revision Changes Path 1.3 +5 -6 src/lib/libc/ia64/string/memcpy.S From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:15:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E1FB16A4CE; Sat, 4 Sep 2004 00:15:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2AC43D39; Sat, 4 Sep 2004 00:15:48 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840FlQV061553; Sat, 4 Sep 2004 00:15:47 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840FlL0061552; Sat, 4 Sep 2004 00:15:47 GMT (envelope-from kensmith) Message-Id: <200409040015.i840FlL0061552@repoman.freebsd.org> From: Ken Smith Date: Sat, 4 Sep 2004 00:15:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 00:15:48 -0000 kensmith 2004-09-04 00:15:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf newvers.sh Log: Forced commit being done without an approval line to verify that the check is failing. Revision Changes Path 1.62.2.5 +0 -0 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:17:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57BA716A4CE; Sat, 4 Sep 2004 00:17:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36CA943D54; Sat, 4 Sep 2004 00:17:50 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840Hove061618; Sat, 4 Sep 2004 00:17:50 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840HoPi061617; Sat, 4 Sep 2004 00:17:50 GMT (envelope-from marcel) Message-Id: <200409040017.i840HoPi061617@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 4 Sep 2004 00:17:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libc/ia64/string memcpy.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 00:17:50 -0000 marcel 2004-09-04 00:17:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/ia64/string memcpy.S Log: MFC rev 1.3: return the dst argument. Approved by: re (blanket) Revision Changes Path 1.2.6.1 +5 -6 src/lib/libc/ia64/string/memcpy.S From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:22:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B418C16A4CE; Sat, 4 Sep 2004 00:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 937FF43D55; Sat, 4 Sep 2004 00:22:04 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840M49s061826; Sat, 4 Sep 2004 00:22:04 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840M4Ms061825; Sat, 4 Sep 2004 00:22:04 GMT (envelope-from kensmith) Message-Id: <200409040022.i840M4Ms061825@repoman.freebsd.org> From: Ken Smith Date: Sat, 4 Sep 2004 00:22:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT approvers X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 00:22:04 -0000 kensmith 2004-09-04 00:22:04 UTC FreeBSD src repository Modified files: . approvers Log: Add a trailing "/" to the regexp for RELENG_5 to see if that's why the approval checks aren't working quite right. Revision Changes Path 1.9 +1 -1 CVSROOT/approvers From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:23:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7759016A4CF; Sat, 4 Sep 2004 00:23:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F46A43D5C; Sat, 4 Sep 2004 00:23:10 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840NARJ061896; Sat, 4 Sep 2004 00:23:10 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840NATf061895; Sat, 4 Sep 2004 00:23:10 GMT (envelope-from kensmith) Message-Id: <200409040023.i840NATf061895@repoman.freebsd.org> From: Ken Smith Date: Sat, 4 Sep 2004 00:23:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 00:23:10 -0000 kensmith 2004-09-04 00:23:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf newvers.sh Log: Another forced commit with no approval line, hoping this time it fails. Revision Changes Path 1.62.2.6 +0 -0 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:23:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 017DA16A500; Sat, 4 Sep 2004 00:23:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D58BB43D53; Sat, 4 Sep 2004 00:23:15 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840NFtK061929; Sat, 4 Sep 2004 00:23:15 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840NFau061928; Sat, 4 Sep 2004 00:23:15 GMT (envelope-from marcel) Message-Id: <200409040023.i840NFau061928@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 4 Sep 2004 00:23:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/ia64/string memmove.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 00:23:16 -0000 marcel 2004-09-04 00:23:15 UTC FreeBSD src repository Modified files: lib/libc/ia64/string memmove.S Log: Unbreak memmove(). Return the dst argument. While here, fix the END macro to actually reference memmove, not memcpy. Revision Changes Path 1.3 +6 -7 src/lib/libc/ia64/string/memmove.S From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:25:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DE5416A4CE; Sat, 4 Sep 2004 00:25:18 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDB8243D49; Sat, 4 Sep 2004 00:25:17 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i840PHTH000093; Fri, 3 Sep 2004 20:25:17 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i840PH4v000092; Fri, 3 Sep 2004 20:25:17 -0400 (EDT) Date: Fri, 3 Sep 2004 20:25:17 -0400 From: Ken Smith To: Ken Smith Message-ID: <20040904002516.GC29470@electra.cse.Buffalo.EDU> References: <200409040023.i840NATf061895@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200409040023.i840NATf061895@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 00:25:18 -0000 On Sat, Sep 04, 2004 at 12:23:10AM +0000, Ken Smith wrote: > kensmith 2004-09-04 00:23:10 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > sys/conf newvers.sh > Log: > Another forced commit with no approval line, hoping this time it fails. > > Revision Changes Path > 1.62.2.6 +0 -0 src/sys/conf/newvers.sh Ok, the line for RELENG_5 looking different than the rest of the lines in the approvers file was my best guess at why the approval checks weren't working. Anyone else got any ideas? -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-src@FreeBSD.ORG Sat Sep 4 00:33:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A4BF16A4CE; Sat, 4 Sep 2004 00:33:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C0243D1D; Sat, 4 Sep 2004 00:33:06 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i840X6BM062265; Sat, 4 Sep 2004 00:33:06 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i840X6MQ062264; Sat, 4 Sep 2004 00:33:06 GMT (envelope-from marcel) Message-Id: <200409040033.i840X6MQ062264@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 4 Sep 2004 00:33:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libc/ia64/string memmove.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 00:33:06 -0000 marcel 2004-09-04 00:33:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/ia64/string memmove.S Log: MFC rev 1.3: return the dst argument. Approved by: re (blanket) Revision Changes Path 1.2.6.1 +6 -7 src/lib/libc/ia64/string/memmove.S From owner-cvs-src@FreeBSD.ORG Sat Sep 4 03:32:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EC9016A4EF; Sat, 4 Sep 2004 03:32:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1C9D43D41; Sat, 4 Sep 2004 03:32:15 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i843WFgk067784; Sat, 4 Sep 2004 03:32:15 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i843WFi6067783; Sat, 4 Sep 2004 03:32:15 GMT (envelope-from imp) Message-Id: <200409040332.i843WFi6067783@repoman.freebsd.org> From: Warner Losh Date: Sat, 4 Sep 2004 03:32:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/cs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 03:32:16 -0000 imp 2004-09-04 03:32:15 UTC FreeBSD src repository Modified files: sys/modules/cs Makefile Log: Sort files alphabetically Revision Changes Path 1.3 +1 -1 src/sys/modules/cs/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 4 05:14:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE8416A4CE; Sat, 4 Sep 2004 05:14:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BD7A43D2F; Sat, 4 Sep 2004 05:14:45 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i845EjLx070373; Sat, 4 Sep 2004 05:14:45 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i845EjfH070372; Sat, 4 Sep 2004 05:14:45 GMT (envelope-from bmah) Message-Id: <200409040514.i845EjfH070372@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 4 Sep 2004 05:14:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 05:14:45 -0000 bmah 2004-09-04 05:14:45 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Minor grammar and markup tweaks. In four cases, elements were replaced with new manpage entities. Revision Changes Path 1.764 +28 -26 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 4 05:51:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB67716A4D0; Sat, 4 Sep 2004 05:51:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B970C43D49; Sat, 4 Sep 2004 05:51:55 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i845ptUM071383; Sat, 4 Sep 2004 05:51:55 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i845ptF4071382; Sat, 4 Sep 2004 05:51:55 GMT (envelope-from alc) Message-Id: <200409040551.i845ptF4071382@repoman.freebsd.org> From: Alan Cox Date: Sat, 4 Sep 2004 05:51:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_meter.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 05:51:56 -0000 alc 2004-09-04 05:51:55 UTC FreeBSD src repository Modified files: sys/vm vm_meter.c Log: Enable debug.mpsafevm by default on amd64 and i386. This enables copy-on- write and zero-fill faults to run without holding Giant. It is still possible to disable Giant-free operation by setting debug.mpsafevm to 0 in loader.conf. Revision Changes Path 1.77 +4 -0 src/sys/vm/vm_meter.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 06:37:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B813416A4CE; Sat, 4 Sep 2004 06:37:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBFE43D45; Sat, 4 Sep 2004 06:37:58 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i846bwPi072717; Sat, 4 Sep 2004 06:37:58 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i846bwxs072716; Sat, 4 Sep 2004 06:37:58 GMT (envelope-from ru) Message-Id: <200409040637.i846bwxs072716@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 4 Sep 2004 06:37:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/fdc Makefile src/sys/modules/linprocfs Makefile src/sys/modules/msdosfs Makefile src/sys/modules/nfs4client Makefile src/sys/modules/nfsclient Makefile src/sys/modules/owi Makefile src/sys/modules/smbfs ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 06:37:58 -0000 ru 2004-09-04 06:37:58 UTC FreeBSD src repository Modified files: sys/modules/fdc Makefile sys/modules/linprocfs Makefile sys/modules/msdosfs Makefile sys/modules/nfs4client Makefile sys/modules/nfsclient Makefile sys/modules/owi Makefile sys/modules/smbfs Makefile Log: Let kmod.mk touch opt_*.h files as needed. Inspired by: imp's email Revision Changes Path 1.13 +0 -2 src/sys/modules/fdc/Makefile 1.13 +0 -3 src/sys/modules/linprocfs/Makefile 1.22 +0 -3 src/sys/modules/msdosfs/Makefile 1.4 +1 -2 src/sys/modules/nfs4client/Makefile 1.30 +1 -2 src/sys/modules/nfsclient/Makefile 1.3 +0 -3 src/sys/modules/owi/Makefile 1.8 +2 -4 src/sys/modules/smbfs/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 4 07:07:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF1A216A4CE; Sat, 4 Sep 2004 07:07:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE4AE43D1D; Sat, 4 Sep 2004 07:07:35 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8477Zp0073648; Sat, 4 Sep 2004 07:07:35 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8477ZGb073647; Sat, 4 Sep 2004 07:07:35 GMT (envelope-from sanpei) Message-Id: <200409040707.i8477ZGb073647@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sat, 4 Sep 2004 07:07:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 07:07:36 -0000 sanpei 2004-09-04 07:07:35 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Add support Western Digital External USB HDD ONSPEC entry are sorted PR: kern/71031 Submitted by: Johann Hugo MFC after: 1 week Revision Changes Path 1.113 +4 -0 src/sys/dev/usb/umass.c 1.201 +6 -1 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sat Sep 4 07:54:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5838116A4CF; Sat, 4 Sep 2004 07:54:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37C5143D46; Sat, 4 Sep 2004 07:54:06 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i847s65o074945; Sat, 4 Sep 2004 07:54:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i847s6j3074944; Sat, 4 Sep 2004 07:54:06 GMT (envelope-from ru) Message-Id: <200409040754.i847s6j3074944@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 4 Sep 2004 07:54:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/re if_re.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 07:54:06 -0000 ru 2004-09-04 07:54:05 UTC FreeBSD src repository Modified files: sys/dev/re if_re.c Log: Fixed build with DEVICE_POLLING defined. Revision Changes Path 1.31 +2 -2 src/sys/dev/re/if_re.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 08:47:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A615116A4CE; Sat, 4 Sep 2004 08:47:17 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id A847543D55; Sat, 4 Sep 2004 08:47:16 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i848l9al011933 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 4 Sep 2004 11:47:10 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.1/8.13.1) id i848l9Rs091418; Sat, 4 Sep 2004 11:47:09 +0300 (EEST) (envelope-from ru) Date: Sat, 4 Sep 2004 11:47:09 +0300 From: Ruslan Ermilov To: Ken Smith Message-ID: <20040904084709.GB91367@ip.net.ua> References: <200409040023.i840NATf061895@repoman.freebsd.org> <20040904002516.GC29470@electra.cse.Buffalo.EDU> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3lcZGd9BuhuYXNfi" Content-Disposition: inline In-Reply-To: <20040904002516.GC29470@electra.cse.Buffalo.EDU> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Ken Smith Subject: Re: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 08:47:17 -0000 --3lcZGd9BuhuYXNfi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 03, 2004 at 08:25:17PM -0400, Ken Smith wrote: > On Sat, Sep 04, 2004 at 12:23:10AM +0000, Ken Smith wrote: > > kensmith 2004-09-04 00:23:10 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: (Branch: RELENG_5) > > sys/conf newvers.sh=20 > > Log: > > Another forced commit with no approval line, hoping this time it fail= s. > > =20 > > Revision Changes Path > > 1.62.2.6 +0 -0 src/sys/conf/newvers.sh >=20 > Ok, the line for RELENG_5 looking different than the rest of the lines > in the approvers file was my best guess at why the approval checks > weren't working. Anyone else got any ideas? >=20 I played with this a bit, setting up a local repository with FreeBSD CVSROOT scripts, and I cannot reproduce it. Committing to RELENG_5 of newvers.sh (which was copied from the FreeBSD repo) results in the following: : cvs commit: Examining . : Use of uninitialized value in sprintf at /home/ru/XXX/CVSROOT/commitcheck= line 44. : 2508 Repos: src/sys/conf : 2508 =3D=3D=3D=3D src/sys/conf/newvers.sh : 2508 Tag: RELENG_5 : 2508 Avail: /home/ru/XXX/CVSROOT/avail : 2514: pgrp: 2504 : 2514: committer: ru : 2514: args: /home/ru/tmp/cvsSx1Z4U : 2514: log:=20 : 2514: files_file: tag=3DRELENG_5, file=3Dsrc/sys/conf/newvers.sh : 2514: Read /home/ru/XXX/CVSROOT/approvers : 2514: checking: ^src/, RELENG_5, re : 2514: file matched (src/sys/conf/newvers.sh, ^src/) : 2514: tag matched (RELENG_5, RELENG_5) : 2514: log not matched ( : , re) : **** You need "Approved by: re" line in your log entry. : cvs [commit aborted]: Message verification failed I think that CVSROOT/approvecheck needs to have some debugging until the problem is resolved. Perhaps it cannot read the $FILES_FILE for some reason, so the check is skipped, I don't know how to trigger it. Nothing looks suspicious at a glance. :-( Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --3lcZGd9BuhuYXNfi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBOYENqRfpzJluFF4RAg1WAKCbWTjxdiuHrhzhBb+QK+8NvNBXbgCdFA5t Fl4VNEfA7YDqzGARutwctio= =rPwr -----END PGP SIGNATURE----- --3lcZGd9BuhuYXNfi-- From owner-cvs-src@FreeBSD.ORG Sat Sep 4 09:54:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44E9416A4CE; Sat, 4 Sep 2004 09:54:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2114543D53; Sat, 4 Sep 2004 09:54:43 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i849shTV078023; Sat, 4 Sep 2004 09:54:43 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i849sgpM078022; Sat, 4 Sep 2004 09:54:42 GMT (envelope-from davidxu) Message-Id: <200409040954.i849sgpM078022@repoman.freebsd.org> From: David Xu Date: Sat, 4 Sep 2004 09:54:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/gnu/usr.bin/gdb/libgdb Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 09:54:43 -0000 davidxu 2004-09-04 09:54:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) gnu/usr.bin/gdb/libgdb Makefile Log: MFC: Only compile fbsd-thread.c on amd64 and i386. Approved by: re (scottl) Revision Changes Path 1.2.2.1 +5 -1 src/gnu/usr.bin/gdb/libgdb/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 4 09:56:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A881316A4CE; Sat, 4 Sep 2004 09:56:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 769B743D49; Sat, 4 Sep 2004 09:56:03 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i849u31t078131; Sat, 4 Sep 2004 09:56:03 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i849u3Cs078130; Sat, 4 Sep 2004 09:56:03 GMT (envelope-from davidxu) Message-Id: <200409040956.i849u3Cs078130@repoman.freebsd.org> From: David Xu Date: Sat, 4 Sep 2004 09:56:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/gnu/usr.bin/gdb/libgdb fbsd-threads.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 09:56:03 -0000 davidxu 2004-09-04 09:56:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: MFC: Add code to support statically linked binary and .core file of threaded program. Approved by: re (scottl) Revision Changes Path 1.4.2.1 +378 -198 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 10:05:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB52516A4CE; Sat, 4 Sep 2004 10:05:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C514443D54; Sat, 4 Sep 2004 10:05:26 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84A5HDT078338; Sat, 4 Sep 2004 10:05:17 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84A5HhU078337; Sat, 4 Sep 2004 10:05:17 GMT (envelope-from brueffer) Message-Id: <200409041005.i84A5HhU078337@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 10:05:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/etc make.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 10:05:27 -0000 brueffer 2004-09-04 10:05:17 UTC FreeBSD src repository (doc committer) Modified files: share/examples/etc make.conf Log: Document a couple of build knobs PR: misc/71032 (partly) Submitted by: Divacky Roman Reviewed by: ru MFC after: 3 days Revision Changes Path 1.231 +8 -0 src/share/examples/etc/make.conf From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:01:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2473D16A4CE; Sat, 4 Sep 2004 11:01:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1503B43D49; Sat, 4 Sep 2004 11:01:22 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84B1LOD079770; Sat, 4 Sep 2004 11:01:21 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84B1LsT079769; Sat, 4 Sep 2004 11:01:21 GMT (envelope-from hrs) Message-Id: <200409041101.i84B1LsT079769@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 4 Sep 2004 11:01:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 11:01:22 -0000 hrs 2004-09-04 11:01:21 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes (changes in August 2004): agp(4) AMD64 GART support, hw.pci.allow_unsupported_io_range removed, debug.kdb.stop_cpus sysctl, COMPAT_LINUX32 kernel option on amd64, mac_bsdextended_firstmatch_enabled sysctl, mac_bsdextended_logging sysctl, MP_WATCHDOG kernel option and debug.leak_schedlock sysctl, NET_WITH_GIANT kernel option and debug.mpsafenet loader tunable, debug.mpsafevm loader tunable, vm_map_findspace(9) now uses an O(log n) algorithm, new ipfw(4) rule "jail", IPFIREWALL_FORWARD kernel option, PFIL_HOOKS is now always complied into the kernel, autofs filesystem and libautofs(3) added, GEOM_RAID3 geom class and graid3(8) added, GEOM_UZIP geom class added, acpidump(8) SSDT tables support, dd(1) fillchar option, jail(8) -l option, OpenSSL VIA C3 PadLock ACE support imported, and FreeBSD's default X Window System is Xorg now. Update release notes: ADAPTIVE_GIANT enabled on i386 by default, hme(4) now MI, static linker TLS support, LIBPTHREAD_PROCESS_SCOPE, GNU sort updated to a coreutils snapshot as of 2004/08/12, ISC DHCP client updated to 3.0.1, lukemftpd updated to a snapshot as of 2004/08/09, and pf from OpenBSD 3.5-stable. Revision Changes Path 1.765 +150 -15 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:08:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6CB716A4CE; Sat, 4 Sep 2004 11:08:05 +0000 (GMT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [222.146.51.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DC7443D4C; Sat, 4 Sep 2004 11:08:05 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from delta.allbsd.org (p41145-adsao12honb4-acca.tokyo.ocn.ne.jp [219.161.230.145]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 29E2D302E; Sat, 4 Sep 2004 20:08:04 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) by delta.allbsd.org (8.12.9p2/8.12.9) with ESMTP id i84B7kbT010170; Sat, 4 Sep 2004 20:07:46 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sat, 04 Sep 2004 20:07:31 +0900 (JST) Message-Id: <20040904.200731.122624979.hrs@eos.ocn.ne.jp> To: bmah@FreeBSD.org From: Hiroki Sato In-Reply-To: <200409040514.i845EjfH070372@repoman.freebsd.org> References: <200409040514.i845EjfH070372@repoman.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 4.0.68 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Sat_Sep__4_20_07_31_2004_162)--" Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 11:08:05 -0000 ----Security_Multipart(Sat_Sep__4_20_07_31_2004_162)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit "Bruce A. Mah" wrote in <200409040514.i845EjfH070372@repoman.freebsd.org>: bmah> bmah 2004-09-04 05:14:45 UTC bmah> bmah> FreeBSD src repository bmah> bmah> Modified files: bmah> release/doc/en_US.ISO8859-1/relnotes/common new.sgml bmah> Log: bmah> Minor grammar and markup tweaks. In four cases, bmah> elements were replaced with new manpage entities. Thanks! -- | Hiroki SATO ----Security_Multipart(Sat_Sep__4_20_07_31_2004_162)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBOaH1TyzT2CeTzy0RAtvzAJ491yUV89XuZDrq8hxOyAz85JN9JwCfaE2y RPvFaE4VNgIRcn49E4NIbsI= =+Q9z -----END PGP SIGNATURE----- ----Security_Multipart(Sat_Sep__4_20_07_31_2004_162)---- From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:12:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6779016A4CE; Sat, 4 Sep 2004 11:12:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4349243D46; Sat, 4 Sep 2004 11:12:04 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84BC424080110; Sat, 4 Sep 2004 11:12:04 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84BC44Y080109; Sat, 4 Sep 2004 11:12:04 GMT (envelope-from brueffer) Message-Id: <200409041112.i84BC44Y080109@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 11:12:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 bge.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 11:12:04 -0000 brueffer 2004-09-04 11:12:04 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 bge.4 Log: Properly capitalize Gigabit Ethernet MFC after: 3 days Revision Changes Path 1.14 +5 -5 src/share/man/man4/bge.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:13:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41E0016A4CE; Sat, 4 Sep 2004 11:13:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EA3C43D2F; Sat, 4 Sep 2004 11:13:33 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84BDXY6080156; Sat, 4 Sep 2004 11:13:33 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84BDWHB080155; Sat, 4 Sep 2004 11:13:32 GMT (envelope-from brueffer) Message-Id: <200409041113.i84BDWHB080155@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 11:13:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 snc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 11:13:33 -0000 brueffer 2004-09-04 11:13:32 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 snc.4 Log: - move list of supported adapters into a HARDWARE section - sort the device list - some minor fixes MFC after: 3 days Revision Changes Path 1.3 +13 -10 src/share/man/man4/man4.i386/snc.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:15:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7799216A4CF; Sat, 4 Sep 2004 11:15:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540F643D5A; Sat, 4 Sep 2004 11:15:13 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84BFDb7080239; Sat, 4 Sep 2004 11:15:13 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84BFDDd080238; Sat, 4 Sep 2004 11:15:13 GMT (envelope-from brueffer) Message-Id: <200409041115.i84BFDDd080238@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 11:15:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 11:15:13 -0000 brueffer 2004-09-04 11:15:13 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: Add snc(4) MFC after: 3 days Revision Changes Path 1.20 +1 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Sat Sep 4 11:34:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF8AA16A4CE; Sat, 4 Sep 2004 11:34:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AE5B43D3F; Sat, 4 Sep 2004 11:34:53 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84BYrSM080708; Sat, 4 Sep 2004 11:34:53 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84BYrFj080707; Sat, 4 Sep 2004 11:34:53 GMT (envelope-from stefanf) Message-Id: <200409041134.i84BYrFj080707@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 4 Sep 2004 11:34:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/include/tgmath Makefile tgmath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 11:34:53 -0000 stefanf 2004-09-04 11:34:53 UTC FreeBSD src repository Added files: tools/regression/include/tgmath Makefile tgmath.c Log: Add a regression test for . Revision Changes Path 1.1 +7 -0 src/tools/regression/include/tgmath/Makefile (new) 1.1 +617 -0 src/tools/regression/include/tgmath/tgmath.c (new) From owner-cvs-src@FreeBSD.ORG Sat Sep 4 12:57:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CD5D16A4CE; Sat, 4 Sep 2004 12:57:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 393DB43D2F; Sat, 4 Sep 2004 12:57:26 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84CvQDT083035; Sat, 4 Sep 2004 12:57:26 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84CvQNv083034; Sat, 4 Sep 2004 12:57:26 GMT (envelope-from hrs) Message-Id: <200409041257.i84CvQNv083034@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 4 Sep 2004 12:57:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 12:57:26 -0000 hrs 2004-09-04 12:57:26 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Update release notes: GNOME 2.6.2 and KDE 3.3.0. Revision Changes Path 1.766 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 4 13:57:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD28116A4CE; Sat, 4 Sep 2004 13:57:58 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58F8C43D2D; Sat, 4 Sep 2004 13:57:58 +0000 (GMT) (envelope-from des@des.no) Received: from dwp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 6A5B014D8; Sat, 4 Sep 2004 15:58:36 +0200 (MEST) Received: by dwp.des.no (Postfix, from userid 2602) id 101A4B86D; Sat, 4 Sep 2004 15:57:57 +0200 (CEST) To: Ruslan Ermilov References: <200409040023.i840NATf061895@repoman.freebsd.org> <20040904002516.GC29470@electra.cse.Buffalo.EDU> <20040904084709.GB91367@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Sat, 04 Sep 2004 15:57:56 +0200 In-Reply-To: <20040904084709.GB91367@ip.net.ua> (Ruslan Ermilov's message of "Sat, 4 Sep 2004 11:47:09 +0300") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@freebsd.org cc: Ken Smith cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Ken Smith Subject: Re: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 13:57:59 -0000 Ruslan Ermilov writes: > I think that CVSROOT/approvecheck needs to have some debugging > until the problem is resolved. Perhaps it cannot read the > $FILES_FILE for some reason, so the check is skipped, I don't > know how to trigger it. > > Nothing looks suspicious at a glance. :-( just a shot in the dark: could the login name be related somehow? it works fine for you and me, and we both have short login names; it doesn't work for sheldonh and kensmith, who both have 8-character login names. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sat Sep 4 14:19:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61CD16A4CE; Sat, 4 Sep 2004 14:19:34 +0000 (GMT) Received: from bgezal.rise.tuwien.ac.at (bgezal.rise.tuwien.ac.at [128.130.59.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47CB743D2F; Sat, 4 Sep 2004 14:19:34 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from fafoe.narf.at (unknown [212.186.3.235]) by bgezal.rise.tuwien.ac.at (Postfix) with ESMTP id CECCB21A9; Sat, 4 Sep 2004 16:19:31 +0200 (CEST) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.1.42]) by fafoe.narf.at (Postfix) with ESMTP id BAEAA3FA8; Sat, 4 Sep 2004 16:19:08 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 475C3C0; Sat, 4 Sep 2004 16:19:01 +0200 (CEST) Date: Sat, 4 Sep 2004 16:18:55 +0200 From: Stefan Farfeleder To: David Schultz Message-ID: <20040904141855.GE72545@wombat.fafoe.narf.at> References: <200408082005.i78K5lDQ023077@repoman.freebsd.org> <20040820022731.GA2314@VARK.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040820022731.GA2314@VARK.homeunix.com> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 14:19:35 -0000 On Thu, Aug 19, 2004 at 07:27:31PM -0700, David Schultz wrote: > Nice! Some regression tests might be nice, too, so people can > easily verify that their changes to math.h don't break tgmath.h. Finally committed. Stefan From owner-cvs-src@FreeBSD.ORG Sat Sep 4 14:54:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00B6016A4CE; Sat, 4 Sep 2004 14:54:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B77DC43D2F; Sat, 4 Sep 2004 14:54:01 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84Es11k085821; Sat, 4 Sep 2004 14:54:01 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84Es1aQ085820; Sat, 4 Sep 2004 14:54:01 GMT (envelope-from iedowse) Message-Id: <200409041454.i84Es1aQ085820@repoman.freebsd.org> From: Ian Dowse Date: Sat, 4 Sep 2004 14:54:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libstand ufs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 14:54:02 -0000 iedowse 2004-09-04 14:54:01 UTC FreeBSD src repository Modified files: lib/libstand ufs.c Log: Reset the seek pointer to 0 when a file is successfully opened, since otherwise the initial seek offset will contain the directory offset of the filesystem block that contained its directory entry. This bug was mostly harmless because typically the directory is less than one filesystem block in size so the offset would be zero. It did however generally break loading a kernel from the (large) kernel compile directory. Also reset the seek pointer when a new inode is opened in read_inode(), though this is not actually necessary now because all callers set it afterwards. Revision Changes Path 1.15 +2 -0 src/lib/libstand/ufs.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 15:00:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87E7116A4CE; Sat, 4 Sep 2004 15:00:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A6843D39; Sat, 4 Sep 2004 15:00:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84F0ngt086001; Sat, 4 Sep 2004 15:00:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84F0nnU086000; Sat, 4 Sep 2004 15:00:49 GMT (envelope-from ru) Message-Id: <200409041500.i84F0nnU086000@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 4 Sep 2004 15:00:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 15:00:49 -0000 ru 2004-09-04 15:00:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf newvers.sh Log: See if it also works for me. Revision Changes Path 1.62.2.7 +0 -0 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 4 18:09:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7A5616A4CE; Sat, 4 Sep 2004 18:09:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8AB743D39; Sat, 4 Sep 2004 18:09:47 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84I9lmi090681; Sat, 4 Sep 2004 18:09:47 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84I9l96090680; Sat, 4 Sep 2004 18:09:47 GMT (envelope-from alfred) Message-Id: <200409041809.i84I9l96090680@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 4 Sep 2004 18:09:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs autofs.h autofs_util.c autofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 18:09:47 -0000 alfred 2004-09-04 18:09:47 UTC FreeBSD src repository Modified files: sys/fs/autofs autofs.h autofs_util.c autofs_vnops.c Log: Use timespec instead of timeval. Snarled at by: phk Revision Changes Path 1.2 +6 -6 src/sys/fs/autofs/autofs.h 1.3 +2 -2 src/sys/fs/autofs/autofs_util.c 1.5 +13 -13 src/sys/fs/autofs/autofs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 18:10:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72C2716A4CE; Sat, 4 Sep 2004 18:10:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5613743D1D; Sat, 4 Sep 2004 18:10:56 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84IAuBZ090804; Sat, 4 Sep 2004 18:10:56 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84IAuEB090803; Sat, 4 Sep 2004 18:10:56 GMT (envelope-from alfred) Message-Id: <200409041810.i84IAuEB090803@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 4 Sep 2004 18:10:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/autofs autofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 18:10:56 -0000 alfred 2004-09-04 18:10:56 UTC FreeBSD src repository Modified files: sys/fs/autofs autofs_vnops.c Log: Set birthtime in getattr. Revision Changes Path 1.6 +2 -0 src/sys/fs/autofs/autofs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:04:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7805016A4CE; Sat, 4 Sep 2004 19:04:24 +0000 (GMT) Received: from VARK.homeunix.com (SYDNEYPACIFIC-SIX-EIGHTY-SIX.MIT.EDU [18.95.7.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23DA343D49; Sat, 4 Sep 2004 19:04:24 +0000 (GMT) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.13.1/8.12.10) with ESMTP id i84J4A7A025280; Sat, 4 Sep 2004 12:04:10 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.13.1/8.12.10/Submit) id i84J4AWL025279; Sat, 4 Sep 2004 15:04:10 -0400 (EDT) (envelope-from das@FreeBSD.ORG) Date: Sat, 4 Sep 2004 15:04:10 -0400 From: David Schultz To: "Tim J. Robbins" Message-ID: <20040904190410.GA94950@VARK.homeunix.com> Mail-Followup-To: "Tim J. Robbins" , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200408241300.i7OD0tZq020856@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408241300.i7OD0tZq020856@repoman.freebsd.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/include ftw.h src/lib/libc/gen Makefile.inc ftw.c nftw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 19:04:24 -0000 On Tue, Aug 24, 2004, Tim J. Robbins wrote: > tjr 2004-08-24 13:00:55 UTC > > FreeBSD src repository > > Modified files: > include ftw.h > lib/libc/gen Makefile.inc ftw.c > Added files: > lib/libc/gen nftw.c > Log: > Replace the current implementations of ftw() and nftw() with the OpenBSD > implementations written by Todd C. Miller. These are cleaner, less buggy > and actively maintained. Thanks. From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:15:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A317416A4CE; Sat, 4 Sep 2004 19:15:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84A3A43D2D; Sat, 4 Sep 2004 19:15:00 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JF0Z9092386; Sat, 4 Sep 2004 19:15:00 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JF0k4092385; Sat, 4 Sep 2004 19:15:00 GMT (envelope-from simon) Message-Id: <200409041915.i84JF0k4092385@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 19:15:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 19:15:00 -0000 simon 2004-09-04 19:15:00 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release/doc/share/misc man2hwnotes.pl Log: MFC 1.5-1.8: - Support column lists, by only extracting the first column. - s/_/./g for an entity name. - For column lists: ignore first item when it is likely to be a header. - Clean up and improve handling of trailing punctuation characters. - Handle the Pa macro. - Give a warning when ignoring unimplemented mdoc commands. - Improve handling of trailing punctuation characters for the Xr macro. Approved by: re (blanket) Revision Changes Path 1.4.2.1 +76 -21 src/release/doc/share/misc/man2hwnotes.pl From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:21:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAB1B16A4CE; Sat, 4 Sep 2004 19:21:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEA4D43D45; Sat, 4 Sep 2004 19:21:56 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JLuV4092651; Sat, 4 Sep 2004 19:21:56 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JLu0o092650; Sat, 4 Sep 2004 19:21:56 GMT (envelope-from simon) Message-Id: <200409041921.i84JLu0o092650@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 19:21:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 19:21:57 -0000 simon 2004-09-04 19:21:56 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release/doc/share/misc dev.archlist.txt Log: MFC 1.14: - Auto generate device listing for ath(4). Approved by: re (blanket) Revision Changes Path 1.5.2.3 +1 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:23:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FB3416A4CF; Sat, 4 Sep 2004 19:23:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3390A43D1F; Sat, 4 Sep 2004 19:23:55 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JNtN6092702; Sat, 4 Sep 2004 19:23:55 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JNtt8092701; Sat, 4 Sep 2004 19:23:55 GMT (envelope-from des) Message-Id: <200409041923.i84JNtt8092701@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 4 Sep 2004 19:23:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/bfe if_bfereg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 19:23:55 -0000 des 2004-09-04 19:23:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/bfe if_bfereg.h Log: MFC: (1.4) add PCI ID for the BCM4401-B0 Approved by: re (scottl) Revision Changes Path 1.3.2.1 +1 -0 src/sys/dev/bfe/if_bfereg.h From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:24:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF4F316A4D0; Sat, 4 Sep 2004 19:24:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B24BF43D41; Sat, 4 Sep 2004 19:24:17 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JOH04092740; Sat, 4 Sep 2004 19:24:17 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JOH4a092739; Sat, 4 Sep 2004 19:24:17 GMT (envelope-from des) Message-Id: <200409041924.i84JOH4a092739@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 4 Sep 2004 19:24:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/dev/bfe if_bfe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 19:24:18 -0000 des 2004-09-04 19:24:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/bfe if_bfe.c Log: MFC: (1.16) add PCI ID for the BCM4401-B0 Approved by: re (scottl) Revision Changes Path 1.15.2.1 +2 -0 src/sys/dev/bfe/if_bfe.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:26:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E5D116A4CE; Sat, 4 Sep 2004 19:26:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80F0D43D39; Sat, 4 Sep 2004 19:26:08 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JQ8s3092851; Sat, 4 Sep 2004 19:26:08 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JQ8Mf092850; Sat, 4 Sep 2004 19:26:08 GMT (envelope-from simon) Message-Id: <200409041926.i84JQ8Mf092850@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 19:26:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 ath.4 ath_hal.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 19:26:08 -0000 simon 2004-09-04 19:26:08 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) share/man/man4 ath.4 ath_hal.4 Log: MFC: - Add a HARDWARE section which lists supported devices. - Mark up each item in the device list with .It, as per mdoc(7) and to make it simpler for auto generated Hardware Notes to parse the manual page. - Bump document date. Approved by: re (blanket) Revision Changes Path 1.19.2.1 +40 -40 src/share/man/man4/ath.4 1.8.2.1 +39 -38 src/share/man/man4/ath_hal.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 19:34:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85F7316A4CE; Sat, 4 Sep 2004 19:34:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68B6743D4C; Sat, 4 Sep 2004 19:34:26 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84JYQoP093150; Sat, 4 Sep 2004 19:34:26 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84JYQBi093149; Sat, 4 Sep 2004 19:34:26 GMT (envelope-from simon) Message-Id: <200409041934.i84JYQBi093149@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 19:34:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 19:34:26 -0000 simon 2004-09-04 19:34:26 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MFC 1.236+1.238: - Auto generate device listing for ath(4). - Remove the listing for the Seagate ST01/02 and the Future Domain 8xx/950 SCSI controllers. Approved by: re (blanket) Revision Changes Path 1.227.2.3 +1 -10 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 4 20:09:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F37DA16A4ED; Sat, 4 Sep 2004 20:09:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D579843D53; Sat, 4 Sep 2004 20:09:11 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84K9BdE094043; Sat, 4 Sep 2004 20:09:11 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84K9Bir094042; Sat, 4 Sep 2004 20:09:11 GMT (envelope-from simon) Message-Id: <200409042009.i84K9Bir094042@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 20:09:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 ex.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 20:09:12 -0000 simon 2004-09-04 20:09:11 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 ex.4 Log: - Add a HARDWARE section which lists supported devices. MFC after: 3 days Revision Changes Path 1.20 +16 -4 src/share/man/man4/man4.i386/ex.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 20:38:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47D6A16A4CE; Sat, 4 Sep 2004 20:38:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2455D43D1D; Sat, 4 Sep 2004 20:38:00 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84Kc0mU094738; Sat, 4 Sep 2004 20:38:00 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84Kc03X094737; Sat, 4 Sep 2004 20:38:00 GMT (envelope-from simon) Message-Id: <200409042038.i84Kc03X094737@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 20:38:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 ie.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 20:38:00 -0000 simon 2004-09-04 20:38:00 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 ie.4 Log: - Properly capitalize Ethernet. - Add a HARDWARE section which lists supported devices. MFC after: 3 days Revision Changes Path 1.19 +24 -12 src/share/man/man4/man4.i386/ie.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 20:40:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4758E16A4CE; Sat, 4 Sep 2004 20:40:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2869443D3F; Sat, 4 Sep 2004 20:40:16 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84KeFcZ094802; Sat, 4 Sep 2004 20:40:15 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84KeFE2094801; Sat, 4 Sep 2004 20:40:15 GMT (envelope-from simon) Message-Id: <200409042040.i84KeFE2094801@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 20:40:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 20:40:16 -0000 simon 2004-09-04 20:40:15 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc man2hwnotes.pl Log: Make sure ampersand is encoded as & since jade seems to be confused when it is encoded as & inside an entity. MFC after: 3 days Revision Changes Path 1.9 +3 -0 src/release/doc/share/misc/man2hwnotes.pl From owner-cvs-src@FreeBSD.ORG Sat Sep 4 20:53:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B76D16A4CE; Sat, 4 Sep 2004 20:53:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD3943D49; Sat, 4 Sep 2004 20:53:26 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84KrPnJ095235; Sat, 4 Sep 2004 20:53:25 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84KrPSA095234; Sat, 4 Sep 2004 20:53:25 GMT (envelope-from hrs) Message-Id: <200409042053.i84KrPSA095234@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 4 Sep 2004 20:53:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 20:53:26 -0000 hrs 2004-09-04 20:53:25 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix some wording to make the explanation clear. Pointed out and reviewed by: ru Revision Changes Path 1.767 +4 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 4 20:55:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 929CE16A4CE; Sat, 4 Sep 2004 20:55:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7303D43D5F; Sat, 4 Sep 2004 20:55:36 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84KtaTm095352; Sat, 4 Sep 2004 20:55:36 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84KtalU095351; Sat, 4 Sep 2004 20:55:36 GMT (envelope-from simon) Message-Id: <200409042055.i84KtalU095351@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 20:55:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 20:55:36 -0000 simon 2004-09-04 20:55:36 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: - Auto generate device listings for the ex and ie drivers. MFC after: 3 days Revision Changes Path 1.242 +2 -4 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.21 +2 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Sat Sep 4 21:03:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABCF016A4CE; Sat, 4 Sep 2004 21:03:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE9D43D39; Sat, 4 Sep 2004 21:03:10 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84L3AqL095545; Sat, 4 Sep 2004 21:03:10 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84L3AwC095544; Sat, 4 Sep 2004 21:03:10 GMT (envelope-from imp) Message-Id: <200409042103.i84L3AwC095544@repoman.freebsd.org> From: Warner Losh Date: Sat, 4 Sep 2004 21:03:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 21:03:10 -0000 imp 2004-09-04 21:03:10 UTC FreeBSD src repository Modified files: . UPDATING Log: Expand the 4.x -> current updating section. Update to show how to use make kernel. Update the compatibility slice section. Note about updating devices in the kernel config file. MAKEOBJDIRPREFIX changes and mention the port alternative to COMPAT4X=yes. Fix copyright. This should be MFC'd. Revision Changes Path 1.355 +22 -12 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Sep 4 21:15:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95FBF16A4CE; Sat, 4 Sep 2004 21:15:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 791E043D48; Sat, 4 Sep 2004 21:15:37 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84LFbav095894; Sat, 4 Sep 2004 21:15:37 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84LFbap095893; Sat, 4 Sep 2004 21:15:37 GMT (envelope-from simon) Message-Id: <200409042115.i84LFbap095893@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 4 Sep 2004 21:15:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 ie.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 21:15:37 -0000 simon 2004-09-04 21:15:37 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 ie.4 Log: Add a standard 2 clause BSD license. Approved by: wilko MFC after: 3 days Revision Changes Path 1.20 +21 -0 src/share/man/man4/man4.i386/ie.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 21:49:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B82916A4CE; Sat, 4 Sep 2004 21:49:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92A0743D39; Sat, 4 Sep 2004 21:49:42 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84LngUN096670; Sat, 4 Sep 2004 21:49:42 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84LngeY096669; Sat, 4 Sep 2004 21:49:42 GMT (envelope-from kientzle) Message-Id: <200409042149.i84LngeY096669@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 4 Sep 2004 21:49:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_read_support_format_tar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 04 Sep 2004 21:49:42 -0000 kientzle 2004-09-04 21:49:42 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c Log: Some old tar archives rely on "regular-file-plus-trailing-slash" to denote a directory. Unfortunately, in the presence of GNU or POSIX extensions, this code was checking the truncated filename stored in the regular header rather than the full filename stored in the extended attribute. As a result, long filenames with '/' in just the right position would trigger this check and be erroneously marked as directories. Move the check so it only considers the full filename. Note: the check can't simply be disabled for archives that contain these extensions because there are some very broken archivers out there. Thanks to: Will Froning MFC after: 3 days Revision Changes Path 1.27 +22 -12 src/lib/libarchive/archive_read_support_format_tar.c From owner-cvs-src@FreeBSD.ORG Sat Sep 4 22:32:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA4A116A4CE; Sat, 4 Sep 2004 22:32:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C92C543D49; Sat, 4 Sep 2004 22:32:34 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84MWYbv098167; Sat, 4 Sep 2004 22:32:34 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84MWYwl098166; Sat, 4 Sep 2004 22:32:34 GMT (envelope-from sanpei) Message-Id: <200409042232.i84MWYwl098166@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sat, 4 Sep 2004 22:32:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/share/man/man4 re.4 src/sys/dev/re if_re.c src/sys/pci if_rlreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 22:32:35 -0000 sanpei 2004-09-04 22:32:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man4 re.4 sys/dev/re if_re.c sys/pci if_rlreg.h Log: MFC if_re.c 1.29, if_rlreg.h 1.45, re.4 1.7: Add support Corega CG-LAPCIGT Gigabit Ethernet(8169S) Approved by: re (scott) Revision Changes Path 1.6.2.1 +2 -0 src/share/man/man4/re.4 1.28.2.1 +2 -0 src/sys/dev/re/if_re.c 1.44.2.1 +5 -0 src/sys/pci/if_rlreg.h From owner-cvs-src@FreeBSD.ORG Sat Sep 4 23:07:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E79F916A4CE; Sat, 4 Sep 2004 23:07:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C925743D41; Sat, 4 Sep 2004 23:07:28 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84N7SCR099061; Sat, 4 Sep 2004 23:07:28 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84N7SxX099060; Sat, 4 Sep 2004 23:07:28 GMT (envelope-from brueffer) Message-Id: <200409042307.i84N7SxX099060@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 23:07:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 snc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 23:07:29 -0000 brueffer 2004-09-04 23:07:28 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 snc.4 Log: - the NEC PC-9801N-25 is supported as well - really sort the device list this time MFC after: 3 days Revision Changes Path 1.4 +4 -2 src/share/man/man4/man4.i386/snc.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 23:54:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1723116A4CE; Sat, 4 Sep 2004 23:54:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4DA143D45; Sat, 4 Sep 2004 23:54:41 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84Nsf9t004452; Sat, 4 Sep 2004 23:54:41 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84Nsf2Y004451; Sat, 4 Sep 2004 23:54:41 GMT (envelope-from brueffer) Message-Id: <200409042354.i84Nsf2Y004451@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 23:54:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 re.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 23:54:42 -0000 brueffer 2004-09-04 23:54:41 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 re.4 Log: - move list of supported devices into a HARDWARE section - fix spacing in the Corega entry - bump document date MFC after: 3 days Revision Changes Path 1.8 +22 -18 src/share/man/man4/re.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 4 23:56:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7D8616A4CE; Sat, 4 Sep 2004 23:56:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9793443D41; Sat, 4 Sep 2004 23:56:56 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i84NuuqV004565; Sat, 4 Sep 2004 23:56:56 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i84NuuFU004564; Sat, 4 Sep 2004 23:56:56 GMT (envelope-from brueffer) Message-Id: <200409042356.i84NuuFU004564@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 4 Sep 2004 23:56:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 sis.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 23:56:56 -0000 brueffer 2004-09-04 23:56:56 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 sis.4 Log: - move list of supported devices into a HARDWARE section - mention which chip the devices use (where known) - bump document date MFC after: 3 days Revision Changes Path 1.17 +23 -19 src/share/man/man4/sis.4