From owner-cvs-src@FreeBSD.ORG Sun Jul 11 00: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 2E07916A4CE; Sun, 11 Jul 2004 00:19:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25ECC43D1D; Sun, 11 Jul 2004 00:19:31 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B0JVXc048151; Sun, 11 Jul 2004 00:19:31 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B0JVvo048150; Sun, 11 Jul 2004 00:19:31 GMT (envelope-from wpaul) Message-Id: <200407110019.i6B0JVvo048150@repoman.freebsd.org> From: Bill Paul Date: Sun, 11 Jul 2004 00: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/compat/ndis kern_ndis.c ndis_var.h subr_ndis.c src/sys/dev/if_ndis if_ndis_pccard.c if_ndis_pci.c if_ndisvar.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, 11 Jul 2004 00:19:31 -0000 wpaul 2004-07-11 00:19:31 UTC FreeBSD src repository Modified files: sys/compat/ndis kern_ndis.c ndis_var.h subr_ndis.c sys/dev/if_ndis if_ndis_pccard.c if_ndis_pci.c if_ndisvar.h Log: Make NdisReadPcmciaAttributeMemory() and NdisWritePcmciaAttributeMemory() actually work. Make the PCI and PCCARD attachments provide a bus_get_resource_list() method so that resource listing for PCCARD works. PCCARD does not have a bus_get_resource_list() method (yet), so I faked up the resource list management in if_ndis_pccard.c, and added bus_get_resource_list() methods to both if_ndis_pccard.c and if_ndis_pci.c. The one in the PCI attechment just hands off to the PCI bus code. The difference is transparent to the NDIS resource handler code. Fixed ndis_open_file() so that opening files which live on NFS filesystems work: pass an actual ucred structure to VOP_GETATTR() (NFS explodes if the ucred structure is NOCRED). Make NdisMMapIoSpace() handle mapping of PCMCIA attribute memory resources correctly. Turn subr_ndis.c:my_strcasecmp() into ndis_strcasecmp() and export it so that if_ndis_pccard.c can use it, and junk the other copy of my_strcasecmp() from if_ndis_pccard.c. Revision Changes Path 1.57 +2 -1 src/sys/compat/ndis/kern_ndis.c 1.27 +2 -0 src/sys/compat/ndis/ndis_var.h 1.62 +12 -8 src/sys/compat/ndis/subr_ndis.c 1.6 +57 -22 src/sys/dev/if_ndis/if_ndis_pccard.c 1.7 +16 -0 src/sys/dev/if_ndis/if_ndis_pci.c 1.15 +2 -0 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:11: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 1AA5016A4CE; Sun, 11 Jul 2004 01:11:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F110543D2D; Sun, 11 Jul 2004 01:11:12 +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 i6B1BCqs050232; Sun, 11 Jul 2004 01:11:12 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1BCM3050231; Sun, 11 Jul 2004 01:11:12 GMT (envelope-from tjr) Message-Id: <200407110111.i6B1BCM3050231@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 01:11:12 +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/hexdump conv.c display.c hexdump.h od.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: Sun, 11 Jul 2004 01:11:13 -0000 tjr 2004-07-11 01:11:12 UTC FreeBSD src repository Modified files: usr.bin/hexdump conv.c display.c hexdump.h od.1 Log: Add POSIX-style support for multibyte characters to od(1): the 'c' conversion interprets input bytes as multibyte sequences and displays printable characters in the area corresponding to their first byte. The remaining bytes are shown as "**". Revision Changes Path 1.7 +63 -4 src/usr.bin/hexdump/conv.c 1.19 +31 -1 src/usr.bin/hexdump/display.c 1.9 +6 -1 src/usr.bin/hexdump/hexdump.h 1.17 +14 -5 src/usr.bin/hexdump/od.1 From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:22: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 1FFDA16A4CE; Sun, 11 Jul 2004 01:22:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE4CA43D1D; Sun, 11 Jul 2004 01:22: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 i6B1MeQw050571; Sun, 11 Jul 2004 01:22:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1MeSF050570; Sun, 11 Jul 2004 01:22:40 GMT (envelope-from rwatson) Message-Id: <200407110122.i6B1MeSF050570@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 01:22: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/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: Sun, 11 Jul 2004 01:22:41 -0000 rwatson 2004-07-11 01:22:40 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Assign pointers values of NULL rather than 0 in soreceive(). Revision Changes Path 1.196 +2 -2 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:34: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 1B94B16A4CE; Sun, 11 Jul 2004 01:34:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0BD243D2D; Sun, 11 Jul 2004 01:34:34 +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 i6B1YYHd050973; Sun, 11 Jul 2004 01:34:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1YYV6050972; Sun, 11 Jul 2004 01:34:34 GMT (envelope-from rwatson) Message-Id: <200407110134.i6B1YYV6050972@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 01:34: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/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: Sun, 11 Jul 2004 01:34:35 -0000 rwatson 2004-07-11 01:34:34 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Break out non-inline out-of-band data receive code from soreceive() and put it in its own helper function soreceive_rcvoob(). Revision Changes Path 1.197 +63 -38 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:38: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 4EEB616A4CE; Sun, 11 Jul 2004 01:38:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F95343D2D; Sun, 11 Jul 2004 01:38:26 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B1cQZN051175; Sun, 11 Jul 2004 01:38:26 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1cQcG051174; Sun, 11 Jul 2004 01:38:26 GMT (envelope-from grehan) Message-Id: <200407110138.i6B1cQcG051174@repoman.freebsd.org> From: Peter Grehan Date: Sun, 11 Jul 2004 01:38: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/conf files.powerpc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 01:38:26 -0000 grehan 2004-07-11 01:38:26 UTC FreeBSD src repository Modified files: sys/conf files.powerpc Log: Fix build for non-WITNESS case spotted by: Suleiman Souhlal Revision Changes Path 1.38 +1 -0 src/sys/conf/files.powerpc From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:44: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 A7BB316A4CE; Sun, 11 Jul 2004 01:44:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A054243D4C; Sun, 11 Jul 2004 01:44: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 i6B1i7uE051386; Sun, 11 Jul 2004 01:44:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1i7FN051385; Sun, 11 Jul 2004 01:44:07 GMT (envelope-from marcel) Message-Id: <200407110144.i6B1i7FN051385@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 01:44: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/conf NOTES options X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 01:44:07 -0000 marcel 2004-07-11 01:44:07 UTC FreeBSD src repository Modified files: sys/conf NOTES options Log: Update for the KDB framework: o Rename WITNESS_DDB to WITNESS_KDB. In the new world order KDB is the acronym to use for debugging related code. The DDB option is used to enable the DDB debugger backend only. o Likewise, rename DDB_TRACE to KDB_TRACE, rename DDB_UNATTENDED to KDB_UNATTENDED and rename SC_HISTORY_DDBKEY to SC_HISTORY_KDBKEY. o Remove DDB_NOKLDSYM. The new DDB backend supports pre-linker symbol lookups as well as KLD symbol lookups at the same time. o Remove GDB_REMOTE_CHAT. The GDB protocol hacks to allow this are FreeBSD specific. At the same time, the GDB protocol has packets for console output. Revision Changes Path 1.1244 +18 -25 src/sys/conf/NOTES 1.464 +11 -18 src/sys/conf/options From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:44: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 6D28616A4ED; Sun, 11 Jul 2004 01:44:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1256F43D3F; Sun, 11 Jul 2004 01:44: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 i6B1iCch051419; Sun, 11 Jul 2004 01:44:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1iCb5051418; Sun, 11 Jul 2004 01:44:12 GMT (envelope-from rwatson) Message-Id: <200407110144.i6B1iCb5051418@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 01:44:12 +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 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: Sun, 11 Jul 2004 01:44:16 -0000 rwatson 2004-07-11 01:44:12 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: In the 'dontblock' section of soreceive(), assert that the mbuf on hand ('m') is in fact the first mbuf in the receive socket buffer. Revision Changes Path 1.198 +1 -0 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:47: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 52D8916A4CE; Sun, 11 Jul 2004 01:47:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3491C43D1D; Sun, 11 Jul 2004 01:47: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 i6B1lQSr051632; Sun, 11 Jul 2004 01:47:26 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1lQj8051631; Sun, 11 Jul 2004 01:47:26 GMT (envelope-from marcel) Message-Id: <200407110147.i6B1lQj8051631@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 01:47: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/alpha/alpha alpha-gdbstub.c src/sys/amd64/amd64 amd64-gdbstub.c src/sys/i386/i386 i386-gdbstub.c src/sys/ia64/ia64 ia64-gdbstub.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, 11 Jul 2004 01:47:26 -0000 marcel 2004-07-11 01:47:26 UTC FreeBSD src repository Removed files: sys/alpha/alpha alpha-gdbstub.c sys/amd64/amd64 amd64-gdbstub.c sys/i386/i386 i386-gdbstub.c sys/ia64/ia64 ia64-gdbstub.c Log: Remove the now unused GDB stubs. See src/sys/gdb/* for the new KDB backend. Revision Changes Path 1.16 +0 -746 src/sys/alpha/alpha/alpha-gdbstub.c (dead) 1.27 +0 -614 src/sys/amd64/amd64/amd64-gdbstub.c (dead) 1.26 +0 -612 src/sys/i386/i386/i386-gdbstub.c (dead) 1.5 +0 -580 src/sys/ia64/ia64/ia64-gdbstub.c (dead) From owner-cvs-src@FreeBSD.ORG Sun Jul 11 01:50: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 3003416A4CE; Sun, 11 Jul 2004 01:50:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 060D043D2D; Sun, 11 Jul 2004 01:50:10 +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 i6B1o9J4051706; Sun, 11 Jul 2004 01:50:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1o9Qb051705; Sun, 11 Jul 2004 01:50:09 GMT (envelope-from marcel) Message-Id: <200407110150.i6B1o9Qb051705@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 01:50: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/ddb db_elf.c db_kld.c db_sysctl.c db_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: Sun, 11 Jul 2004 01:50:12 -0000 marcel 2004-07-11 01:50:09 UTC FreeBSD src repository Removed files: sys/ddb db_elf.c db_kld.c db_sysctl.c db_trap.c Log: Remove now unused files: db_elf.c, db_kld.c: The new KDB backend supports both at the same time. db_sysctl.c: The functionality has been moved to sys/kern/subr_kdb.c. db_trap.c: The DDB entry point has been moved to sys/ddb/db_main.c. Revision Changes Path 1.19 +0 -421 src/sys/ddb/db_elf.c (dead) 1.12 +0 -133 src/sys/ddb/db_kld.c (dead) 1.5 +0 -77 src/sys/ddb/db_sysctl.c (dead) 1.17 +0 -77 src/sys/ddb/db_trap.c (dead) From owner-cvs-src@FreeBSD.ORG Sun Jul 11 02:17: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 03F0B16A4CE; Sun, 11 Jul 2004 02:17:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE96D43D48; Sun, 11 Jul 2004 02:17:57 +0000 (GMT) (envelope-from mp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B2HvJV052483; Sun, 11 Jul 2004 02:17:57 GMT (envelope-from mp@repoman.freebsd.org) Received: (from mp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B2Hv9B052482; Sun, 11 Jul 2004 02:17:57 GMT (envelope-from mp) Message-Id: <200407110217.i6B2Hv9B052482@repoman.freebsd.org> From: Mark Peek Date: Sun, 11 Jul 2004 02:17:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: ZOULAS Subject: cvs commit: src/contrib/tcsh - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 02:17:58 -0000 mp 2004-07-11 02:17:57 UTC FreeBSD src repository src/contrib/tcsh - Imported sources Update of /home/ncvs/src/contrib/tcsh In directory repoman.freebsd.org:/tmp/cvs-serv52466 Log Message: Import of tcsh-6.13.00 Status: Vendor Tag: ZOULAS Release Tags: tcsh_6_13 U src/contrib/tcsh/FAQ U src/contrib/tcsh/Fixes U src/contrib/tcsh/Imakefile U src/contrib/tcsh/MAKEDIFFS U src/contrib/tcsh/MAKESHAR U src/contrib/tcsh/Makefile.in U src/contrib/tcsh/Makefile.std U src/contrib/tcsh/Makefile.vms U src/contrib/tcsh/NewThings U src/contrib/tcsh/Ported U src/contrib/tcsh/README U src/contrib/tcsh/README.imake U src/contrib/tcsh/WishList U src/contrib/tcsh/Y2K U src/contrib/tcsh/complete.tcsh U src/contrib/tcsh/config.guess U src/contrib/tcsh/config.h.in U src/contrib/tcsh/config.sub U src/contrib/tcsh/config_f.h U src/contrib/tcsh/configure U src/contrib/tcsh/configure.in U src/contrib/tcsh/csh-mode.el U src/contrib/tcsh/ed.chared.c U src/contrib/tcsh/ed.decls.h U src/contrib/tcsh/ed.defns.c U src/contrib/tcsh/ed.h U src/contrib/tcsh/ed.init.c U src/contrib/tcsh/ed.inputl.c U src/contrib/tcsh/ed.screen.c U src/contrib/tcsh/ed.refresh.c U src/contrib/tcsh/ed.term.c U src/contrib/tcsh/ed.term.h U src/contrib/tcsh/ed.xmap.c U src/contrib/tcsh/eight-bit.me U src/contrib/tcsh/gethost.c U src/contrib/tcsh/glob.3 U src/contrib/tcsh/glob.c U src/contrib/tcsh/glob.h U src/contrib/tcsh/host.defs U src/contrib/tcsh/imake.config U src/contrib/tcsh/install-sh U src/contrib/tcsh/ma.setp.c U src/contrib/tcsh/mi.termios.c U src/contrib/tcsh/mi.varargs.h U src/contrib/tcsh/mi.wait.h U src/contrib/tcsh/patchlevel.h U src/contrib/tcsh/pathnames.h U src/contrib/tcsh/sh.c U src/contrib/tcsh/sh.char.c U src/contrib/tcsh/sh.char.h U src/contrib/tcsh/sh.decls.h U src/contrib/tcsh/sh.dir.c U src/contrib/tcsh/sh.dir.h U src/contrib/tcsh/sh.dol.c U src/contrib/tcsh/sh.err.c U src/contrib/tcsh/sh.exec.c U src/contrib/tcsh/sh.exp.c U src/contrib/tcsh/sh.file.c U src/contrib/tcsh/sh.func.c U src/contrib/tcsh/sh.glob.c U src/contrib/tcsh/sh.h U src/contrib/tcsh/sh.hist.c U src/contrib/tcsh/sh.init.c U src/contrib/tcsh/sh.lex.c U src/contrib/tcsh/sh.misc.c U src/contrib/tcsh/sh.parse.c U src/contrib/tcsh/sh.print.c U src/contrib/tcsh/sh.proc.c U src/contrib/tcsh/sh.proc.h U src/contrib/tcsh/sh.sem.c U src/contrib/tcsh/sh.set.c U src/contrib/tcsh/sh.time.c U src/contrib/tcsh/sh.types.h U src/contrib/tcsh/snames.h U src/contrib/tcsh/tc.h U src/contrib/tcsh/src.desc U src/contrib/tcsh/tc.alloc.c U src/contrib/tcsh/tc.bind.c U src/contrib/tcsh/tc.const.c U src/contrib/tcsh/tc.decls.h U src/contrib/tcsh/tc.disc.c U src/contrib/tcsh/tc.func.c U src/contrib/tcsh/tc.os.c U src/contrib/tcsh/tc.os.h U src/contrib/tcsh/tc.printf.c U src/contrib/tcsh/tc.prompt.c U src/contrib/tcsh/tc.sched.c U src/contrib/tcsh/tc.sig.c U src/contrib/tcsh/tc.sig.h U src/contrib/tcsh/tc.str.c U src/contrib/tcsh/tc.vers.c U src/contrib/tcsh/tc.wait.h U src/contrib/tcsh/tc.who.c U src/contrib/tcsh/tcsh.man U src/contrib/tcsh/tcsh.man2html U src/contrib/tcsh/termcap.vms U src/contrib/tcsh/tw.color.c U src/contrib/tcsh/tw.comp.c U src/contrib/tcsh/tw.decls.h U src/contrib/tcsh/tw.h U src/contrib/tcsh/tw.help.c U src/contrib/tcsh/tw.init.c U src/contrib/tcsh/tw.parse.c U src/contrib/tcsh/tw.spell.c U src/contrib/tcsh/vms.termcap.c U src/contrib/tcsh/nls/Makefile U src/contrib/tcsh/nls/C/set1 U src/contrib/tcsh/nls/C/set10 U src/contrib/tcsh/nls/C/set11 U src/contrib/tcsh/nls/C/set12 U src/contrib/tcsh/nls/C/set13 U src/contrib/tcsh/nls/C/set14 U src/contrib/tcsh/nls/C/set15 U src/contrib/tcsh/nls/C/set16 U src/contrib/tcsh/nls/C/set17 U src/contrib/tcsh/nls/C/set18 U src/contrib/tcsh/nls/C/set19 U src/contrib/tcsh/nls/C/set2 U src/contrib/tcsh/nls/C/set20 U src/contrib/tcsh/nls/C/set21 U src/contrib/tcsh/nls/C/set22 U src/contrib/tcsh/nls/C/set23 U src/contrib/tcsh/nls/C/set24 U src/contrib/tcsh/nls/C/set25 U src/contrib/tcsh/nls/C/set26 U src/contrib/tcsh/nls/C/set27 U src/contrib/tcsh/nls/C/set29 U src/contrib/tcsh/nls/C/set3 U src/contrib/tcsh/nls/C/set30 U src/contrib/tcsh/nls/C/set31 U src/contrib/tcsh/nls/C/set4 U src/contrib/tcsh/nls/C/set5 U src/contrib/tcsh/nls/C/set6 U src/contrib/tcsh/nls/C/set7 U src/contrib/tcsh/nls/C/set8 U src/contrib/tcsh/nls/C/set9 U src/contrib/tcsh/nls/et/set1 U src/contrib/tcsh/nls/et/set10 U src/contrib/tcsh/nls/et/set11 U src/contrib/tcsh/nls/et/set12 U src/contrib/tcsh/nls/et/set13 U src/contrib/tcsh/nls/et/set14 U src/contrib/tcsh/nls/et/set15 U src/contrib/tcsh/nls/et/set16 U src/contrib/tcsh/nls/et/set17 U src/contrib/tcsh/nls/et/set18 U src/contrib/tcsh/nls/et/set19 U src/contrib/tcsh/nls/et/set2 U src/contrib/tcsh/nls/et/set20 U src/contrib/tcsh/nls/et/set21 U src/contrib/tcsh/nls/et/set22 U src/contrib/tcsh/nls/et/set23 U src/contrib/tcsh/nls/et/set24 U src/contrib/tcsh/nls/et/set25 U src/contrib/tcsh/nls/et/set26 U src/contrib/tcsh/nls/et/set27 U src/contrib/tcsh/nls/et/set29 U src/contrib/tcsh/nls/et/set3 U src/contrib/tcsh/nls/et/set30 U src/contrib/tcsh/nls/et/set31 U src/contrib/tcsh/nls/et/set4 U src/contrib/tcsh/nls/et/set5 U src/contrib/tcsh/nls/et/set6 U src/contrib/tcsh/nls/et/set7 U src/contrib/tcsh/nls/et/set8 U src/contrib/tcsh/nls/et/set9 U src/contrib/tcsh/nls/finnish/set1 U src/contrib/tcsh/nls/finnish/set10 U src/contrib/tcsh/nls/finnish/set11 U src/contrib/tcsh/nls/finnish/set12 U src/contrib/tcsh/nls/finnish/set13 U src/contrib/tcsh/nls/finnish/set14 U src/contrib/tcsh/nls/finnish/set15 U src/contrib/tcsh/nls/finnish/set16 U src/contrib/tcsh/nls/finnish/set17 U src/contrib/tcsh/nls/finnish/set18 U src/contrib/tcsh/nls/finnish/set19 U src/contrib/tcsh/nls/finnish/set2 U src/contrib/tcsh/nls/finnish/set20 U src/contrib/tcsh/nls/finnish/set21 U src/contrib/tcsh/nls/finnish/set22 U src/contrib/tcsh/nls/finnish/set23 U src/contrib/tcsh/nls/finnish/set24 U src/contrib/tcsh/nls/finnish/set25 U src/contrib/tcsh/nls/finnish/set26 U src/contrib/tcsh/nls/finnish/set27 U src/contrib/tcsh/nls/finnish/set29 U src/contrib/tcsh/nls/finnish/set3 U src/contrib/tcsh/nls/finnish/set30 U src/contrib/tcsh/nls/finnish/set31 U src/contrib/tcsh/nls/finnish/set4 U src/contrib/tcsh/nls/finnish/set5 U src/contrib/tcsh/nls/finnish/set6 U src/contrib/tcsh/nls/finnish/set7 U src/contrib/tcsh/nls/finnish/set8 U src/contrib/tcsh/nls/finnish/set9 U src/contrib/tcsh/nls/french/set1 U src/contrib/tcsh/nls/french/set10 U src/contrib/tcsh/nls/french/set11 U src/contrib/tcsh/nls/french/set12 U src/contrib/tcsh/nls/french/set13 U src/contrib/tcsh/nls/french/set14 U src/contrib/tcsh/nls/french/set15 U src/contrib/tcsh/nls/french/set16 U src/contrib/tcsh/nls/french/set17 U src/contrib/tcsh/nls/french/set18 U src/contrib/tcsh/nls/french/set19 U src/contrib/tcsh/nls/french/set2 U src/contrib/tcsh/nls/french/set20 U src/contrib/tcsh/nls/french/set21 U src/contrib/tcsh/nls/french/set22 U src/contrib/tcsh/nls/french/set23 U src/contrib/tcsh/nls/french/set24 U src/contrib/tcsh/nls/french/set25 U src/contrib/tcsh/nls/french/set26 U src/contrib/tcsh/nls/french/set27 U src/contrib/tcsh/nls/french/set29 U src/contrib/tcsh/nls/french/set3 U src/contrib/tcsh/nls/french/set30 U src/contrib/tcsh/nls/french/set31 U src/contrib/tcsh/nls/french/set4 U src/contrib/tcsh/nls/french/set5 U src/contrib/tcsh/nls/french/set6 U src/contrib/tcsh/nls/french/set7 U src/contrib/tcsh/nls/french/set8 U src/contrib/tcsh/nls/french/set9 U src/contrib/tcsh/nls/german/set1 U src/contrib/tcsh/nls/german/set10 U src/contrib/tcsh/nls/german/set11 U src/contrib/tcsh/nls/german/set12 U src/contrib/tcsh/nls/german/set13 U src/contrib/tcsh/nls/german/set14 U src/contrib/tcsh/nls/german/set15 U src/contrib/tcsh/nls/german/set16 U src/contrib/tcsh/nls/german/set17 U src/contrib/tcsh/nls/german/set18 U src/contrib/tcsh/nls/german/set19 U src/contrib/tcsh/nls/german/set2 U src/contrib/tcsh/nls/german/set20 U src/contrib/tcsh/nls/german/set21 U src/contrib/tcsh/nls/german/set22 U src/contrib/tcsh/nls/german/set23 U src/contrib/tcsh/nls/german/set24 U src/contrib/tcsh/nls/german/set25 U src/contrib/tcsh/nls/german/set26 U src/contrib/tcsh/nls/german/set27 U src/contrib/tcsh/nls/german/set29 U src/contrib/tcsh/nls/german/set3 U src/contrib/tcsh/nls/german/set30 U src/contrib/tcsh/nls/german/set31 U src/contrib/tcsh/nls/german/set4 U src/contrib/tcsh/nls/german/set5 U src/contrib/tcsh/nls/german/set6 U src/contrib/tcsh/nls/german/set7 U src/contrib/tcsh/nls/german/set8 U src/contrib/tcsh/nls/german/set9 U src/contrib/tcsh/nls/greek/set1 U src/contrib/tcsh/nls/greek/set10 U src/contrib/tcsh/nls/greek/set11 U src/contrib/tcsh/nls/greek/set12 U src/contrib/tcsh/nls/greek/set13 U src/contrib/tcsh/nls/greek/set14 U src/contrib/tcsh/nls/greek/set15 U src/contrib/tcsh/nls/greek/set16 U src/contrib/tcsh/nls/greek/set17 U src/contrib/tcsh/nls/greek/set18 U src/contrib/tcsh/nls/greek/set19 U src/contrib/tcsh/nls/greek/set2 U src/contrib/tcsh/nls/greek/set20 U src/contrib/tcsh/nls/greek/set21 U src/contrib/tcsh/nls/greek/set22 U src/contrib/tcsh/nls/greek/set23 U src/contrib/tcsh/nls/greek/set24 U src/contrib/tcsh/nls/greek/set25 U src/contrib/tcsh/nls/greek/set26 U src/contrib/tcsh/nls/greek/set27 U src/contrib/tcsh/nls/greek/set29 U src/contrib/tcsh/nls/greek/set3 U src/contrib/tcsh/nls/greek/set30 U src/contrib/tcsh/nls/greek/set31 U src/contrib/tcsh/nls/greek/set4 U src/contrib/tcsh/nls/greek/set5 U src/contrib/tcsh/nls/greek/set6 U src/contrib/tcsh/nls/greek/set7 U src/contrib/tcsh/nls/greek/set8 U src/contrib/tcsh/nls/greek/set9 U src/contrib/tcsh/nls/italian/set1 U src/contrib/tcsh/nls/italian/set10 U src/contrib/tcsh/nls/italian/set11 U src/contrib/tcsh/nls/italian/set12 U src/contrib/tcsh/nls/italian/set13 U src/contrib/tcsh/nls/italian/set14 U src/contrib/tcsh/nls/italian/set15 U src/contrib/tcsh/nls/italian/set16 U src/contrib/tcsh/nls/italian/set17 U src/contrib/tcsh/nls/italian/set18 U src/contrib/tcsh/nls/italian/set19 U src/contrib/tcsh/nls/italian/set2 U src/contrib/tcsh/nls/italian/set20 U src/contrib/tcsh/nls/italian/set21 U src/contrib/tcsh/nls/italian/set22 U src/contrib/tcsh/nls/italian/set23 U src/contrib/tcsh/nls/italian/set24 U src/contrib/tcsh/nls/italian/set25 U src/contrib/tcsh/nls/italian/set26 U src/contrib/tcsh/nls/italian/set27 U src/contrib/tcsh/nls/italian/set29 U src/contrib/tcsh/nls/italian/set3 U src/contrib/tcsh/nls/italian/set30 U src/contrib/tcsh/nls/italian/set31 U src/contrib/tcsh/nls/italian/set4 U src/contrib/tcsh/nls/italian/set5 U src/contrib/tcsh/nls/italian/set6 U src/contrib/tcsh/nls/italian/set7 U src/contrib/tcsh/nls/italian/set8 U src/contrib/tcsh/nls/italian/set9 U src/contrib/tcsh/nls/ja/set1 U src/contrib/tcsh/nls/ja/set10 U src/contrib/tcsh/nls/ja/set11 U src/contrib/tcsh/nls/ja/set12 U src/contrib/tcsh/nls/ja/set13 U src/contrib/tcsh/nls/ja/set15 U src/contrib/tcsh/nls/ja/set16 U src/contrib/tcsh/nls/ja/set17 U src/contrib/tcsh/nls/ja/set18 U src/contrib/tcsh/nls/ja/set2 U src/contrib/tcsh/nls/ja/set21 U src/contrib/tcsh/nls/ja/set24 U src/contrib/tcsh/nls/ja/set29 U src/contrib/tcsh/nls/ja/set30 U src/contrib/tcsh/nls/ja/set5 U src/contrib/tcsh/nls/ja/set6 U src/contrib/tcsh/nls/ja/set8 U src/contrib/tcsh/nls/pl/README U src/contrib/tcsh/nls/pl/set1 U src/contrib/tcsh/nls/pl/set10 U src/contrib/tcsh/nls/pl/set11 U src/contrib/tcsh/nls/pl/set12 U src/contrib/tcsh/nls/pl/set13 U src/contrib/tcsh/nls/pl/set14 U src/contrib/tcsh/nls/pl/set15 U src/contrib/tcsh/nls/pl/set16 U src/contrib/tcsh/nls/pl/set17 U src/contrib/tcsh/nls/pl/set18 U src/contrib/tcsh/nls/pl/set19 U src/contrib/tcsh/nls/pl/set2 U src/contrib/tcsh/nls/pl/set20 U src/contrib/tcsh/nls/pl/set21 U src/contrib/tcsh/nls/pl/set22 U src/contrib/tcsh/nls/pl/set23 U src/contrib/tcsh/nls/pl/set24 U src/contrib/tcsh/nls/pl/set25 U src/contrib/tcsh/nls/pl/set26 U src/contrib/tcsh/nls/pl/set27 U src/contrib/tcsh/nls/pl/set29 U src/contrib/tcsh/nls/pl/set3 U src/contrib/tcsh/nls/pl/set30 U src/contrib/tcsh/nls/pl/set31 U src/contrib/tcsh/nls/pl/set4 U src/contrib/tcsh/nls/pl/set5 U src/contrib/tcsh/nls/pl/set6 U src/contrib/tcsh/nls/pl/set7 U src/contrib/tcsh/nls/pl/set8 U src/contrib/tcsh/nls/pl/set9 U src/contrib/tcsh/nls/russian/set1 U src/contrib/tcsh/nls/russian/set10 U src/contrib/tcsh/nls/russian/set11 U src/contrib/tcsh/nls/russian/set12 U src/contrib/tcsh/nls/russian/set13 U src/contrib/tcsh/nls/russian/set14 U src/contrib/tcsh/nls/russian/set15 U src/contrib/tcsh/nls/russian/set16 U src/contrib/tcsh/nls/russian/set17 U src/contrib/tcsh/nls/russian/set18 U src/contrib/tcsh/nls/russian/set19 U src/contrib/tcsh/nls/russian/set2 U src/contrib/tcsh/nls/russian/set20 U src/contrib/tcsh/nls/russian/set21 U src/contrib/tcsh/nls/russian/set22 U src/contrib/tcsh/nls/russian/set23 U src/contrib/tcsh/nls/russian/set24 U src/contrib/tcsh/nls/russian/set25 U src/contrib/tcsh/nls/russian/set26 U src/contrib/tcsh/nls/russian/set27 U src/contrib/tcsh/nls/russian/set29 U src/contrib/tcsh/nls/russian/set3 U src/contrib/tcsh/nls/russian/set30 U src/contrib/tcsh/nls/russian/set31 U src/contrib/tcsh/nls/russian/set4 U src/contrib/tcsh/nls/russian/set5 U src/contrib/tcsh/nls/russian/set6 U src/contrib/tcsh/nls/russian/set7 U src/contrib/tcsh/nls/russian/set8 U src/contrib/tcsh/nls/russian/set9 U src/contrib/tcsh/nls/spanish/set1 U src/contrib/tcsh/nls/spanish/set10 U src/contrib/tcsh/nls/spanish/set11 U src/contrib/tcsh/nls/spanish/set12 U src/contrib/tcsh/nls/spanish/set13 U src/contrib/tcsh/nls/spanish/set14 U src/contrib/tcsh/nls/spanish/set15 U src/contrib/tcsh/nls/spanish/set16 U src/contrib/tcsh/nls/spanish/set17 U src/contrib/tcsh/nls/spanish/set18 U src/contrib/tcsh/nls/spanish/set19 U src/contrib/tcsh/nls/spanish/set2 U src/contrib/tcsh/nls/spanish/set20 U src/contrib/tcsh/nls/spanish/set21 U src/contrib/tcsh/nls/spanish/set22 U src/contrib/tcsh/nls/spanish/set23 U src/contrib/tcsh/nls/spanish/set24 U src/contrib/tcsh/nls/spanish/set25 U src/contrib/tcsh/nls/spanish/set26 U src/contrib/tcsh/nls/spanish/set27 U src/contrib/tcsh/nls/spanish/set29 U src/contrib/tcsh/nls/spanish/set3 U src/contrib/tcsh/nls/spanish/set30 U src/contrib/tcsh/nls/spanish/set31 U src/contrib/tcsh/nls/spanish/set4 U src/contrib/tcsh/nls/spanish/set5 U src/contrib/tcsh/nls/spanish/set6 U src/contrib/tcsh/nls/spanish/set7 U src/contrib/tcsh/nls/spanish/set8 U src/contrib/tcsh/nls/spanish/set9 U src/contrib/tcsh/nls/ukrainian/set1 U src/contrib/tcsh/nls/ukrainian/set10 U src/contrib/tcsh/nls/ukrainian/set11 U src/contrib/tcsh/nls/ukrainian/set12 U src/contrib/tcsh/nls/ukrainian/set13 U src/contrib/tcsh/nls/ukrainian/set14 U src/contrib/tcsh/nls/ukrainian/set15 U src/contrib/tcsh/nls/ukrainian/set16 U src/contrib/tcsh/nls/ukrainian/set17 U src/contrib/tcsh/nls/ukrainian/set18 U src/contrib/tcsh/nls/ukrainian/set19 U src/contrib/tcsh/nls/ukrainian/set2 U src/contrib/tcsh/nls/ukrainian/set20 U src/contrib/tcsh/nls/ukrainian/set21 U src/contrib/tcsh/nls/ukrainian/set22 U src/contrib/tcsh/nls/ukrainian/set23 U src/contrib/tcsh/nls/ukrainian/set24 U src/contrib/tcsh/nls/ukrainian/set25 U src/contrib/tcsh/nls/ukrainian/set26 U src/contrib/tcsh/nls/ukrainian/set27 U src/contrib/tcsh/nls/ukrainian/set29 U src/contrib/tcsh/nls/ukrainian/set3 U src/contrib/tcsh/nls/ukrainian/set30 U src/contrib/tcsh/nls/ukrainian/set31 U src/contrib/tcsh/nls/ukrainian/set4 U src/contrib/tcsh/nls/ukrainian/set5 U src/contrib/tcsh/nls/ukrainian/set6 U src/contrib/tcsh/nls/ukrainian/set7 U src/contrib/tcsh/nls/ukrainian/set8 U src/contrib/tcsh/nls/ukrainian/set9 U src/contrib/tcsh/config/bsd4.4 No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Sun Jul 11 02:20: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 3CF5916A4CE; Sun, 11 Jul 2004 02:20:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 206BD43D2F; Sun, 11 Jul 2004 02:20:53 +0000 (GMT) (envelope-from mp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B2Krog052613; Sun, 11 Jul 2004 02:20:53 GMT (envelope-from mp@repoman.freebsd.org) Received: (from mp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B2KrOw052612; Sun, 11 Jul 2004 02:20:53 GMT (envelope-from mp) Message-Id: <200407110220.i6B2KrOw052612@repoman.freebsd.org> From: Mark Peek Date: Sun, 11 Jul 2004 02:20: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/contrib/tcsh FREEBSD-Xlist X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 02:20:53 -0000 mp 2004-07-11 02:20:52 UTC FreeBSD src repository Modified files: contrib/tcsh FREEBSD-Xlist Log: Add the nls/*/charset files to the exclude list. These files are not needed and only provide comments in the text NLS files. Revision Changes Path 1.2 +1 -0 src/contrib/tcsh/FREEBSD-Xlist From owner-cvs-src@FreeBSD.ORG Sun Jul 11 02: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 563C516A4CE; Sun, 11 Jul 2004 02:23:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38F1443D3F; Sun, 11 Jul 2004 02:23:38 +0000 (GMT) (envelope-from mp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B2Nc5D052678; Sun, 11 Jul 2004 02:23:38 GMT (envelope-from mp@repoman.freebsd.org) Received: (from mp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B2Nc1G052677; Sun, 11 Jul 2004 02:23:38 GMT (envelope-from mp) Message-Id: <200407110223.i6B2Nc1G052677@repoman.freebsd.org> From: Mark Peek Date: Sun, 11 Jul 2004 02:23: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/bin/csh config.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, 11 Jul 2004 02:23:38 -0000 mp 2004-07-11 02:23:38 UTC FreeBSD src repository Modified files: bin/csh config.h Log: KANJI and DSPMBYTE are now "on" by default in the tcsh 6.13.00 distribution. Revision Changes Path 1.8 +18 -13 src/bin/csh/config.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:03: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 C39F516A4CE; Sun, 11 Jul 2004 03:03:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A61D543D3F; Sun, 11 Jul 2004 03:03: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 i6B33mwZ054100; Sun, 11 Jul 2004 03:03:48 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B33mrq054099; Sun, 11 Jul 2004 03:03:48 GMT (envelope-from marcel) Message-Id: <200407110303.i6B33mrq054099@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:03: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/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: Sun, 11 Jul 2004 03:03:49 -0000 marcel 2004-07-11 03:03:48 UTC FreeBSD src repository Modified files: sys/alpha/conf GENERIC Log: Add options KDB and GDB. KDB takes on the function of what DDB used to be. Both DDB and GDB specify which KDB backends to include. Revision Changes Path 1.171 +3 -1 src/sys/alpha/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03: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 E281B16A4CE; Sun, 11 Jul 2004 03:07:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5AA543D48; Sun, 11 Jul 2004 03:07:28 +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 i6B37SRD054289; Sun, 11 Jul 2004 03:07:28 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B37S7p054288; Sun, 11 Jul 2004 03:07:28 GMT (envelope-from marcel) Message-Id: <200407110307.i6B37S7p054288@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03: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/sys/alpha/conf GENERIC.hints X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 03:07:29 -0000 marcel 2004-07-11 03:07:28 UTC FreeBSD src repository Modified files: sys/alpha/conf GENERIC.hints Log: Now that the console setup is identical to that on other platforms, we also need to have the right sio(4) flags: sio0: flags=0x10 so that it will be console. sio1: flags=0x80 so that it can be used as debug port. Revision Changes Path 1.8 +2 -0 src/sys/alpha/conf/GENERIC.hints From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:09: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 380AA16A4CE; Sun, 11 Jul 2004 03:09:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A98B43D31; Sun, 11 Jul 2004 03:09:54 +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 i6B39rOc054342; Sun, 11 Jul 2004 03:09:54 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B39rgX054341; Sun, 11 Jul 2004 03:09:53 GMT (envelope-from marcel) Message-Id: <200407110309.i6B39rgX054341@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:09: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/amd64/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: Sun, 11 Jul 2004 03:09:54 -0000 marcel 2004-07-11 03:09:53 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC Log: Add options KDB and GDB. KDB takes on the function of what DDB used to be. Both DDB and GDB specify which KDB backends to include. Revision Changes Path 1.412 +3 -1 src/sys/amd64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:12: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 E7ECD16A4CE; Sun, 11 Jul 2004 03:12:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C93F643D31; Sun, 11 Jul 2004 03:12:00 +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 i6B3C0bT054493; Sun, 11 Jul 2004 03:12:00 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B3C0rl054492; Sun, 11 Jul 2004 03:12:00 GMT (envelope-from marcel) Message-Id: <200407110312.i6B3C0rl054492@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:12: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/i386/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: Sun, 11 Jul 2004 03:12:01 -0000 marcel 2004-07-11 03:12:00 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Log: Add options KDB and GDB. KDB takes on the function of what DDB used to be. Both DDB and GDB specify which KDB backends to include. Revision Changes Path 1.406 +3 -1 src/sys/i386/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:16: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 8726E16A4CE; Sun, 11 Jul 2004 03:16:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68B4543D48; Sun, 11 Jul 2004 03:16: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 i6B3Ggrs054645; Sun, 11 Jul 2004 03:16:42 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B3Gg6Q054644; Sun, 11 Jul 2004 03:16:42 GMT (envelope-from marcel) Message-Id: <200407110316.i6B3Gg6Q054644@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:16: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/ia64/conf GENERIC SKI X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 03:16:42 -0000 marcel 2004-07-11 03:16:42 UTC FreeBSD src repository Modified files: sys/ia64/conf GENERIC SKI Log: Add options KDB and GDB. KDB takes on the function of what DDB used to be. Both DDB and GDB specify which KDB backends to include. Revision Changes Path 1.63 +3 -1 src/sys/ia64/conf/GENERIC 1.17 +3 -1 src/sys/ia64/conf/SKI From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:20: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 2EA0416A4CF; Sun, 11 Jul 2004 03:20:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A8F43D31; Sun, 11 Jul 2004 03:20:10 +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 i6B3K9Yl054714; Sun, 11 Jul 2004 03:20:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B3K9wU054713; Sun, 11 Jul 2004 03:20:09 GMT (envelope-from marcel) Message-Id: <200407110320.i6B3K9wU054713@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:20: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/sparc64/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: Sun, 11 Jul 2004 03:20:10 -0000 marcel 2004-07-11 03:20:09 UTC FreeBSD src repository Modified files: sys/sparc64/conf GENERIC Log: Add options KDB and GDB. KDB takes on the function of what DDB used to be. Both DDB and GDB specify which KDB backends to include. Revision Changes Path 1.74 +3 -1 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Sun Jul 11 03:21: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 D62FF16A4CE; Sun, 11 Jul 2004 03:21:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B911943D49; Sun, 11 Jul 2004 03:21:24 +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 i6B3LOvP054848; Sun, 11 Jul 2004 03:21:24 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B3LOWx054847; Sun, 11 Jul 2004 03:21:24 GMT (envelope-from marcel) Message-Id: <200407110321.i6B3LOWx054847@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 03:21: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/sparc64/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, 11 Jul 2004 03:21:25 -0000 marcel 2004-07-11 03:21:24 UTC FreeBSD src repository Modified files: sys/sparc64/conf NOTES Log: The SC_DISABLE_DDBKEY options has been renamed to SC_DISABLE_KDBKEY. Revision Changes Path 1.8 +1 -1 src/sys/sparc64/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Jul 11 04: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 6EB6016A4CF; Sun, 11 Jul 2004 04:05:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51E2E43D3F; Sun, 11 Jul 2004 04:05:44 +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 i6B45icX056179; Sun, 11 Jul 2004 04:05:44 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B45iJO056178; Sun, 11 Jul 2004 04:05:44 GMT (envelope-from marcel) Message-Id: <200407110405.i6B45iJO056178@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 04: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/sys 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: Sun, 11 Jul 2004 04:05:44 -0000 marcel 2004-07-11 04:05:44 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for the following (weak) reasons: o Sources that are shared between kernel and userland and that may contain references to DDB or any of its functions may need to know this. o Userland tools may include from now on. Think kernel debugger... o The kernel core file now contains the TID of the kernel thread that made the dump. Revision Changes Path 1.202 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 04:38: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 DAABD16A4CF; Sun, 11 Jul 2004 04:38:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCD3E43D39; Sun, 11 Jul 2004 04:38:39 +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 i6B4cdPZ056956; Sun, 11 Jul 2004 04:38:39 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B4cdWQ056955; Sun, 11 Jul 2004 04:38:39 GMT (envelope-from marcel) Message-Id: <200407110438.i6B4cdWQ056955@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 04:38: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 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: Sun, 11 Jul 2004 04:38:40 -0000 marcel 2004-07-11 04:38:39 UTC FreeBSD src repository Modified files: . UPDATING Log: Add 3 new entries: o __FreeBSD_version bumped to 502122 o Alpha console initialization requires the same sio(4) hints as on other platforms. Options NO_SIO and DEV_SC removed. o KDB framework: Added KDB and GDB; Renamed WITNESS_DDB, DDB_TRACE DDB_UNATTENDED. Removed GDB_REMOTE_CHAT and DDB_NOKLDSYM. Revision Changes Path 1.324 +30 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sun Jul 11 05: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 911D516A4CE; Sun, 11 Jul 2004 05:58:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7540C43D2D; Sun, 11 Jul 2004 05:58:31 +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 i6B5wV5w059058; Sun, 11 Jul 2004 05:58:31 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B5wVrj059057; Sun, 11 Jul 2004 05:58:31 GMT (envelope-from tjr) Message-Id: <200407110558.i6B5wVrj059057@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 05:58: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/lib/libc/regex regcomp.c regex2.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, 11 Jul 2004 05:58:31 -0000 tjr 2004-07-11 05:58:31 UTC FreeBSD src repository Modified files: lib/libc/regex regcomp.c regex2.h Log: Remove incomplete support for multi-character collating elements. Remove unused character category calculations. Revision Changes Path 1.31 +8 -245 src/lib/libc/regex/regcomp.c 1.7 +0 -17 src/lib/libc/regex/regex2.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 07:11: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 11ADE16A4CE; Sun, 11 Jul 2004 07:11:19 +0000 (GMT) Received: from tora.nunu.org (YahooBB219003182029.bbtec.net [219.3.182.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58B4C43D2D; Sun, 11 Jul 2004 07:11:18 +0000 (GMT) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from tora.nunu.org (unknown [192.168.1.2]) by tora.nunu.org (Postfix) with ESMTP id 0952F4DB44; Sun, 11 Jul 2004 16:11:16 +0900 (JST) Date: Sun, 11 Jul 2004 16:11:16 +0900 Message-ID: <87llhrqaqz.wl@tora.nunu.org> From: Hidetoshi Shimokawa To: Marcel Moolenaar In-Reply-To: <200407102102.i6AL2HhI040011@repoman.freebsd.org> References: <200407102102.i6AL2HhI040011@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 14) (Reasonable Discussion) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/dcons dcons.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, 11 Jul 2004 07:11:19 -0000 I'd like to re-support remote debugging by dcons(4). Do you have any pointer for "new GDB debug port interface"? /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html At Sat, 10 Jul 2004 21:02:17 +0000 (UTC), Marcel Moolenaar wrote: > > marcel 2004-07-10 21:02:17 UTC > > FreeBSD src repository > > Modified files: > sys/dev/dcons dcons.c > Log: > Update for the KDB framework: > o Use kdb_alt_break() to handle the alternate break sequence instead > of handcoding it here. > o Remove GDB kluges to make this driver work with the pre-KDB remote > GDB code. > o Call kdb_enter() instead of Debugger(). > > Note that with this commit the dcons(4) driver cannot be used for > remote debugging anymore. This driver has to use the new GDB debug > port interface instead. Such has not been done yet. > > Revision Changes Path > 1.13 +4 -49 src/sys/dev/dcons/dcons.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 07:25: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 120CA16A4CE; Sun, 11 Jul 2004 07:25:43 +0000 (GMT) Received: from liberty.onthenet.com.au (liberty.OntheNet.com.au [203.22.124.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D69443D41; Sun, 11 Jul 2004 07:25:42 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from freebsd.org (CPE-31-247.dsl.onthenet.net [203.144.31.247]) i6B7Peu9029967; Sun, 11 Jul 2004 17:25:41 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <40F0ED11.5070107@freebsd.org> Date: Sun, 11 Jul 2004 17:32:33 +1000 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200407082235.i68MZaBH030076@repoman.freebsd.org> <200407091114.44971.jhb@FreeBSD.org> In-Reply-To: <200407091114.44971.jhb@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Brian Somers cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha autoconf.c src/sys/amd64/amd64 loader.confsrc/sys/ia64/ia64 autoconf.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, 11 Jul 2004 07:25:43 -0000 >> Change the following environment variables to kernel options: >> >> bootp -> BOOTP >> bootp.nfsroot -> BOOTP_NFSROOT >> bootp.nfsv3 -> BOOTP_NFSV3 >> bootp.compat -> BOOTP_COMPAT >> bootp.wired_to -> BOOTP_WIRED_TO ... > What about netbooting on other architectures? I used these settings early on in PPC development, but in hindsight that was a mistake: I should have gotten the loader to work first, since loader features such as tunables would have reduced dev time considerably. later, Peter. From owner-cvs-src@FreeBSD.ORG Sun Jul 11 07:49: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 E3FC216A4CE; Sun, 11 Jul 2004 07:49:02 +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 8509F43D3F; Sun, 11 Jul 2004 07:49:02 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i6B7n2Ha079816; Sun, 11 Jul 2004 00:49:02 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) i6B7n2O9055253; Sun, 11 Jul 2004 00:49:02 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.12.11/8.12.11/Submit) id i6B7n2mi055252; Sun, 11 Jul 2004 00:49:02 -0700 (PDT) (envelope-from marcel) Date: Sun, 11 Jul 2004 00:49:01 -0700 From: Marcel Moolenaar To: Hidetoshi Shimokawa Message-ID: <20040711074901.GA55185@dhcp50.pn.xcllnt.net> References: <200407102102.i6AL2HhI040011@repoman.freebsd.org> <87llhrqaqz.wl@tora.nunu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87llhrqaqz.wl@tora.nunu.org> 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/sys/dev/dcons dcons.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, 11 Jul 2004 07:49:03 -0000 On Sun, Jul 11, 2004 at 04:11:16PM +0900, Hidetoshi Shimokawa wrote: > I'd like to re-support remote debugging by dcons(4). > Do you have any pointer for "new GDB debug port interface"? The interface is defined in src/sys/gdb/gdb.h. A good example can be found in src/sys/dev/uart/uart_dbg.c. First GDB calls the probe function. The probe function is supposed to return a priority (>=0). A negative priority means that the debug port is dead or unusable. The uart(4) driver returns 0. So does the sio(4) driver. If you want to give dcons priority over a serial port, have the probe function return 1 or more. After all the probe functions have been called, one debug port is seleced as the current port. The init function for that port is called so that it can initialize itself. After that, the GDB backend will call the getc and putc functions to send and receive packets. The interface is mostly character oriented now, even though the GDB protocol is based on packets. If this doesn't work as efficiently for firewire (or ethernet for that matter) and have ideas to make it more friendly for you, let me know. I welcome improvements and enhancements. Thanks, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Sun Jul 11 08:06: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 1636C16A4CE; Sun, 11 Jul 2004 08:06:07 +0000 (GMT) Received: from tora.nunu.org (YahooBB219003182029.bbtec.net [219.3.182.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F1D43D31; Sun, 11 Jul 2004 08:06:06 +0000 (GMT) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from tora.nunu.org (unknown [192.168.1.2]) by tora.nunu.org (Postfix) with ESMTP id AE3B54AD59; Sun, 11 Jul 2004 17:06:05 +0900 (JST) Date: Sun, 11 Jul 2004 17:06:05 +0900 Message-ID: <87iscvq87m.wl@tora.nunu.org> From: Hidetoshi Shimokawa To: Marcel Moolenaar In-Reply-To: <20040711074901.GA55185@dhcp50.pn.xcllnt.net> References: <200407102102.i6AL2HhI040011@repoman.freebsd.org> <87llhrqaqz.wl@tora.nunu.org> <20040711074901.GA55185@dhcp50.pn.xcllnt.net> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 14) (Reasonable Discussion) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/dcons dcons.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, 11 Jul 2004 08:06:07 -0000 Thank you for your explanation. I found that the interface is very similar to the low level console interface. dcons(4) is actually character oriented and the current interface seems sufficient. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html At Sun, 11 Jul 2004 00:49:01 -0700, Marcel Moolenaar wrote: > > On Sun, Jul 11, 2004 at 04:11:16PM +0900, Hidetoshi Shimokawa wrote: > > I'd like to re-support remote debugging by dcons(4). > > Do you have any pointer for "new GDB debug port interface"? > > The interface is defined in src/sys/gdb/gdb.h. A good example can > be found in src/sys/dev/uart/uart_dbg.c. > > First GDB calls the probe function. The probe function is supposed > to return a priority (>=0). A negative priority means that the > debug port is dead or unusable. The uart(4) driver returns 0. So > does the sio(4) driver. If you want to give dcons priority over a > serial port, have the probe function return 1 or more. > > After all the probe functions have been called, one debug port is > seleced as the current port. The init function for that port is > called so that it can initialize itself. > > After that, the GDB backend will call the getc and putc functions > to send and receive packets. The interface is mostly character > oriented now, even though the GDB protocol is based on packets. If > this doesn't work as efficiently for firewire (or ethernet for that > matter) and have ideas to make it more friendly for you, let me > know. I welcome improvements and enhancements. > > Thanks, > > -- > Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Sun Jul 11 10:13: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 4BE7B16A4CE; Sun, 11 Jul 2004 10:13:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAAA43D3F; Sun, 11 Jul 2004 10:13:06 +0000 (GMT) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BAD6jS066374; Sun, 11 Jul 2004 10:13:06 GMT (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BAD6Re066373; Sun, 11 Jul 2004 10:13:06 GMT (envelope-from darrenr) Message-Id: <200407111013.i6BAD6Re066373@repoman.freebsd.org> From: Darren Reed Date: Sun, 11 Jul 2004 10:13: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/contrib/ipfilter/netinet ip_fil.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, 11 Jul 2004 10:13:06 -0000 darrenr 2004-07-11 10:13:06 UTC FreeBSD src repository Modified files: sys/contrib/ipfilter/netinet ip_fil.c Log: Clean up a bunch of white-space difference with IPFilter source as well as remove some superfluous assignments for .d_version/.d_flags in a cdevsw structure initialisation that never sees the light of day in FreeBSD. Revision Changes Path 1.47 +8 -9 src/sys/contrib/ipfilter/netinet/ip_fil.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 10:35: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 9C7A816A4CE; Sun, 11 Jul 2004 10:35:50 +0000 (GMT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5734D43D39; Sun, 11 Jul 2004 10:35:50 +0000 (GMT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.32) id 1BjblX-0000Sl-S1; Sun, 11 Jul 2004 17:41:04 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i6BAbO9k073643; Sun, 11 Jul 2004 17:37:24 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i6BAbO9r073632; Sun, 11 Jul 2004 17:37:24 +0700 (NOVST) (envelope-from danfe) Date: Sun, 11 Jul 2004 17:37:24 +0700 From: Alexey Dokuchaev To: Maxim Konovalov Message-ID: <20040711103724.GA42847@regency.nsu.ru> References: <200407101755.i6AHtEJO033987@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407101755.i6AHtEJO033987@repoman.freebsd.org> 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/man4 tcp.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, 11 Jul 2004 10:35:50 -0000 On Sat, Jul 10, 2004 at 05:55:13PM +0000, Maxim Konovalov wrote: > maxim 2004-07-10 17:55:13 UTC > > FreeBSD src repository > > Modified files: > share/man/man4 tcp.4 > Log: > o Document net.inet.sack.enable sysctl. net.inet.sack.sackhole_limit > is not documented yet, it is not used at the moment and is the subject > of the future work. > > Improved by: ru > Not objected: ps, jayanth Hmm, is renaming of ``net.inet.tcp.sack.sackhole_limit'' to ``net.inet.tcp.sack.maxholes'' is still considered by interested parties as was proposed by Dag-Erling back at June 24th? ./danfe P.S. There seem to be vast inconsistencies with ``*limit'' sysctl names WRT using underscore, i.e.: net.inet.tcp.syncache.bucketlimit net.inet.tcp.syncache.cachelimit net.inet.tcp.syncache.rexmtlimit but net.inet.sack.sackhole_limit kern.ps_arg_cache_limit Should we come to some agreement on this issue? From owner-cvs-src@FreeBSD.ORG Sun Jul 11 13:26: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 B673316A4CE; Sun, 11 Jul 2004 13:26:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98A7243D55; Sun, 11 Jul 2004 13:26:44 +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 i6BDQiK3072353; Sun, 11 Jul 2004 13:26:44 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BDQid2072352; Sun, 11 Jul 2004 13:26:44 GMT (envelope-from simon) Message-Id: <200407111326.i6BDQid2072352@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 11 Jul 2004 13:26: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 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: Sun, 11 Jul 2004 13:26:44 -0000 simon 2004-07-11 13:26:44 UTC FreeBSD src repository (doc committer) Modified files: . UPDATING Log: Fix typo in 20040702 entry. Noticed by: Andre Guibert de Bruet Revision Changes Path 1.325 +1 -1 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sun Jul 11 13:45: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 8B10E16A4CE; Sun, 11 Jul 2004 13:45:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E4AA43D53; Sun, 11 Jul 2004 13:45:39 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BDjdlS072956; Sun, 11 Jul 2004 13:45:39 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BDjdHv072955; Sun, 11 Jul 2004 13:45:39 GMT (envelope-from nyan) Message-Id: <200407111345.i6BDjdHv072955@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 11 Jul 2004 13:45: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/pc98/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: Sun, 11 Jul 2004 13:45:39 -0000 nyan 2004-07-11 13:45:39 UTC FreeBSD src repository Modified files: sys/pc98/conf GENERIC Log: MFi386: revision 1.406 Revision Changes Path 1.249 +3 -1 src/sys/pc98/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Sun Jul 11 13:46: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 620B716A4CE; Sun, 11 Jul 2004 13:46:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4402743D39; Sun, 11 Jul 2004 13:46:10 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BDkAgT072997; Sun, 11 Jul 2004 13:46:10 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BDkAKH072996; Sun, 11 Jul 2004 13:46:10 GMT (envelope-from nyan) Message-Id: <200407111346.i6BDkAKH072996@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 11 Jul 2004 13:46: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/pc98/pc98 clock.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, 11 Jul 2004 13:46:10 -0000 nyan 2004-07-11 13:46:10 UTC FreeBSD src repository Modified files: sys/pc98/pc98 clock.c Log: MFi386: revision 1.212. Revision Changes Path 1.139 +11 -13 src/sys/pc98/pc98/clock.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 14:44: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 AEC9416A4CE; Sun, 11 Jul 2004 14:44:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B77C43D48; Sun, 11 Jul 2004 14:44:23 +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 i6BEiNBG074626; Sun, 11 Jul 2004 14:44:23 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BEiN1f074625; Sun, 11 Jul 2004 14:44:23 GMT (envelope-from tjr) Message-Id: <200407111444.i6BEiN1f074625@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 14: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/usr.bin/split split.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, 11 Jul 2004 14:44:23 -0000 tjr 2004-07-11 14:44:23 UTC FreeBSD src repository Modified files: usr.bin/split split.c Log: Respect locale settings from the environment. Revision Changes Path 1.15 +3 -0 src/usr.bin/split/split.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 14:47: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 9064E16A4CE; Sun, 11 Jul 2004 14:47:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73DD943D3F; Sun, 11 Jul 2004 14:47:32 +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 i6BElWfe074746; Sun, 11 Jul 2004 14:47:32 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BElWkM074745; Sun, 11 Jul 2004 14:47:32 GMT (envelope-from tjr) Message-Id: <200407111447.i6BElWkM074745@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 14:47: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/usr.bin/split split.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: Sun, 11 Jul 2004 14:47:32 -0000 tjr 2004-07-11 14:47:32 UTC FreeBSD src repository Modified files: usr.bin/split split.1 Log: Add fairly standard ENVIRONMENT and DIAGNOSTICS sections. Revision Changes Path 1.13 +12 -1 src/usr.bin/split/split.1 From owner-cvs-src@FreeBSD.ORG Sun Jul 11 15: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 516FA16A4CE; Sun, 11 Jul 2004 15:04:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 349C843D1F; Sun, 11 Jul 2004 15:04:17 +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 i6BF4HOq075163; Sun, 11 Jul 2004 15:04:17 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BF4Hwu075162; Sun, 11 Jul 2004 15:04:17 GMT (envelope-from tjr) Message-Id: <200407111504.i6BF4Hwu075162@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 15:04: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/usr.bin/split split.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: Sun, 11 Jul 2004 15:04:17 -0000 tjr 2004-07-11 15:04:17 UTC FreeBSD src repository Modified files: usr.bin/split split.1 Log: Fix document year. Noticed by: simon Revision Changes Path 1.14 +1 -1 src/usr.bin/split/split.1 From owner-cvs-src@FreeBSD.ORG Sun Jul 11 15:18: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 7B09216A4CE; Sun, 11 Jul 2004 15:18:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B3343D49; Sun, 11 Jul 2004 15:18:39 +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 i6BFIdAx075777; Sun, 11 Jul 2004 15:18:39 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BFIdrj075776; Sun, 11 Jul 2004 15:18:39 GMT (envelope-from phk) Message-Id: <200407111518.i6BFIdrj075776@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 11 Jul 2004 15:18: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/dev/cx if_cx.c src/sys/dev/cy cy.c src/sys/dev/digi digi.c digi.h src/sys/dev/rc rc.c src/sys/dev/rp rp.c rpvar.h src/sys/dev/si si.c si.h src/sys/dev/sio sio.c src/sys/dev/sx sx.c sx.h src/sys/kern tty.c src/sys/pc98/pc98 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 15:18:39 -0000 phk 2004-07-11 15:18:39 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/cy cy.c sys/dev/digi digi.c digi.h sys/dev/rc rc.c sys/dev/rp rp.c rpvar.h sys/dev/si si.c si.h sys/dev/sio sio.c sys/dev/sx sx.c sx.h sys/kern tty.c sys/pc98/pc98 sio.c sys/sys tty.h Log: Introduce ttygone() which indicates that the hardware is detached. Move dtrwait logic to the generic TTY level. Revision Changes Path 1.26 +5 -60 src/sys/dev/cx/if_cx.c 1.158 +4 -37 src/sys/dev/cy/cy.c 1.52 +4 -17 src/sys/dev/digi/digi.c 1.17 +0 -1 src/sys/dev/digi/digi.h 1.96 +6 -72 src/sys/dev/rc/rc.c 1.63 +4 -16 src/sys/dev/rp/rp.c 1.6 +0 -1 src/sys/dev/rp/rpvar.h 1.130 +4 -40 src/sys/dev/si/si.c 1.18 +0 -2 src/sys/dev/si/si.h 1.448 +5 -38 src/sys/dev/sio/sio.c 1.11 +4 -14 src/sys/dev/sx/sx.c 1.3 +0 -1 src/sys/dev/sx/sx.h 1.226 +64 -0 src/sys/kern/tty.c 1.225 +5 -38 src/sys/pc98/pc98/sio.c 1.88 +7 -0 src/sys/sys/tty.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 15:22: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 B32B616A4CE; Sun, 11 Jul 2004 15:22:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94EC343D2F; Sun, 11 Jul 2004 15:22:43 +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 i6BFMhHM075953; Sun, 11 Jul 2004 15:22:43 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BFMhVG075952; Sun, 11 Jul 2004 15:22:43 GMT (envelope-from marcel) Message-Id: <200407111522.i6BFMhVG075952@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 15:22: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_kdb.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, 11 Jul 2004 15:22:43 -0000 marcel 2004-07-11 15:22:43 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c Log: Fix braino: Make sure there is a current backend before we return its name in the debug.kdb.current sysctl. All other dereferences are properly guarded, but this one was overlooked. Reported by: Morten Rodal (morten at rodal dot no) Revision Changes Path 1.2 +5 -2 src/sys/kern/subr_kdb.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:01: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 1EA2C16A4CE; Sun, 11 Jul 2004 16:01:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0126443D58; Sun, 11 Jul 2004 16:01:26 +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 i6BG1PFR077212; Sun, 11 Jul 2004 16:01:25 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BG1Pl6077211; Sun, 11 Jul 2004 16:01:25 GMT (envelope-from imp) Message-Id: <200407111601.i6BG1Pl6077211@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Jul 2004 16:01: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/dev/fdc fdc_pccard.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, 11 Jul 2004 16:01:26 -0000 imp 2004-07-11 16:01:25 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_pccard.c Log: Until I'm ready to commit the better pccard probe/attach routines, effectively comment them out. Revision Changes Path 1.2 +2 -0 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:07: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 7CDE416A4CE; Sun, 11 Jul 2004 16:07:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E28943D41; Sun, 11 Jul 2004 16:07:07 +0000 (GMT) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BG774x077406; Sun, 11 Jul 2004 16:07:07 GMT (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BG77wH077405; Sun, 11 Jul 2004 16:07:07 GMT (envelope-from darrenr) Message-Id: <200407111607.i6BG77wH077405@repoman.freebsd.org> From: Darren Reed Date: Sun, 11 Jul 2004 16:07: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 sx.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, 11 Jul 2004 16:07:07 -0000 darrenr 2004-07-11 16:07:07 UTC FreeBSD src repository Modified files: sys/sys sx.h Log: Add sx_unlock() macro as a frontend to both sx_sunlock() and sx_xunlock(), using sx_cnt to determine what state the lock is in and call the respective function appropriately. Revision Changes Path 1.20 +7 -0 src/sys/sys/sx.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:08: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 CF0CD16A4CE; Sun, 11 Jul 2004 16:08:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0DD143D2F; Sun, 11 Jul 2004 16:08:25 +0000 (GMT) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BG8PLM077452; Sun, 11 Jul 2004 16:08:25 GMT (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BG8PQW077451; Sun, 11 Jul 2004 16:08:25 GMT (envelope-from darrenr) Message-Id: <200407111608.i6BG8PQW077451@repoman.freebsd.org> From: Darren Reed Date: Sun, 11 Jul 2004 16:08: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/share/man/man9 sx.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: Sun, 11 Jul 2004 16:08:25 -0000 darrenr 2004-07-11 16:08:25 UTC FreeBSD src repository Modified files: share/man/man9 sx.9 Log: Document that sx_unlock() exists as a macro. Remove redundant include file, , and clean up the function list at the top with the addition of a "Sx utility macro" section. Revision Changes Path 1.29 +23 -6 src/share/man/man9/sx.9 From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:13: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 8C09516A4CE; Sun, 11 Jul 2004 16:13:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EE6B43D39; Sun, 11 Jul 2004 16:13:57 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BGDvEE077649; Sun, 11 Jul 2004 16:13:57 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BGDvfh077648; Sun, 11 Jul 2004 16:13:57 GMT (envelope-from dfr) Message-Id: <200407111613.i6BGDvfh077648@repoman.freebsd.org> From: Doug Rabson Date: Sun, 11 Jul 2004 16:13: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/doc Doxyfile 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, 11 Jul 2004 16:13:57 -0000 dfr 2004-07-11 16:13:57 UTC FreeBSD src repository Added files: sys/doc Doxyfile Makefile Log: Experimental support for using doxygen to generate kernel documentation. Revision Changes Path 1.1 +211 -0 src/sys/doc/Doxyfile (new) 1.1 +30 -0 src/sys/doc/Makefile (new) From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:14: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 8CB3616A4CE; Sun, 11 Jul 2004 16:14:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F05E43D39; Sun, 11 Jul 2004 16:14:24 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BGEOVK077691; Sun, 11 Jul 2004 16:14:24 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BGEOOS077690; Sun, 11 Jul 2004 16:14:24 GMT (envelope-from dfr) Message-Id: <200407111614.i6BGEOOS077690@repoman.freebsd.org> From: Doug Rabson Date: Sun, 11 Jul 2004 16:14: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/tools makeobjops.awk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 16:14:24 -0000 dfr 2004-07-11 16:14:24 UTC FreeBSD src repository Modified files: sys/tools makeobjops.awk Log: Pass doxygen doc comments through to the output. Revision Changes Path 1.5 +33 -8 src/sys/tools/makeobjops.awk From owner-cvs-src@FreeBSD.ORG Sun Jul 11 16:17: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 A6FD616A4CE; Sun, 11 Jul 2004 16:17:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89ABC43D1D; Sun, 11 Jul 2004 16:17:42 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BGHglY077833; Sun, 11 Jul 2004 16:17:42 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BGHg9X077832; Sun, 11 Jul 2004 16:17:42 GMT (envelope-from dfr) Message-Id: <200407111617.i6BGHg9X077832@repoman.freebsd.org> From: Doug Rabson Date: Sun, 11 Jul 2004 16:17: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 device_if.m X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 16:17:42 -0000 dfr 2004-07-11 16:17:42 UTC FreeBSD src repository Modified files: sys/kern device_if.m Log: Expand and rewrite documentation using doxygen markup so that we can generate funky web pages from it. Revision Changes Path 1.9 +207 -50 src/sys/kern/device_if.m From owner-cvs-src@FreeBSD.ORG Sun Jul 11 17:26: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 7CB9216A4CE; Sun, 11 Jul 2004 17:26:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E74E43D5F; Sun, 11 Jul 2004 17:26:18 +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 i6BHQIdM079844; Sun, 11 Jul 2004 17:26:18 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BHQIF6079843; Sun, 11 Jul 2004 17:26:18 GMT (envelope-from stefanf) Message-Id: <200407111726.i6BHQIF6079843@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 11 Jul 2004 17:26: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/games/bcd Makefile bcd.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, 11 Jul 2004 17:26:18 -0000 stefanf 2004-07-11 17:26:18 UTC FreeBSD src repository Modified files: games/bcd Makefile bcd.c Log: Resolve a couple of warnings and bump WARNS to 6. Revision Changes Path 1.6 +2 -1 src/games/bcd/Makefile 1.9 +11 -10 src/games/bcd/bcd.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 17:37: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 C7F8916A4CE; Sun, 11 Jul 2004 17:37:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C029043D48; Sun, 11 Jul 2004 17:37:33 +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 i6BHbXQA080269; Sun, 11 Jul 2004 17:37:33 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BHbXpr080268; Sun, 11 Jul 2004 17:37:33 GMT (envelope-from stefanf) Message-Id: <200407111737.i6BHbXpr080268@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 11 Jul 2004 17:37: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/libexec/atrun atrun.c src/usr.bin/gprof gprof.c src/usr.bin/nfsstat nfsstat.c src/usr.sbin/mrouted main.c src/usr.sbin/sliplogin sliplogin.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, 11 Jul 2004 17:37:33 -0000 stefanf 2004-07-11 17:37:33 UTC FreeBSD src repository Modified files: libexec/atrun atrun.c usr.bin/gprof gprof.c usr.bin/nfsstat nfsstat.c usr.sbin/mrouted main.c usr.sbin/sliplogin sliplogin.c Log: Fix a few cases that relied on 'implicit int' (constraint violation in C99). Revision Changes Path 1.18 +1 -1 src/libexec/atrun/atrun.c 1.24 +1 -1 src/usr.bin/gprof/gprof.c 1.21 +1 -0 src/usr.bin/nfsstat/nfsstat.c 1.21 +1 -1 src/usr.sbin/mrouted/main.c 1.14 +1 -0 src/usr.sbin/sliplogin/sliplogin.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 17:51: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 4A2B116A4CE; Sun, 11 Jul 2004 17:51:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E5743D1D; Sun, 11 Jul 2004 17:51:00 +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 i6BHp0qB080668; Sun, 11 Jul 2004 17:51:00 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BHp0Mo080667; Sun, 11 Jul 2004 17:51:00 GMT (envelope-from marcel) Message-Id: <200407111751.i6BHp0Mo080667@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 17:51: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/i386/isa clock.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, 11 Jul 2004 17:51:00 -0000 marcel 2004-07-11 17:51:00 UTC FreeBSD src repository Modified files: sys/i386/isa clock.c Log: Partially revert previous commit. Calling getit() unconditionally fixed a problem that could also be fixed differently without reverting previous attempts to fix DELAY while the debugger is active (rev 1.204). The bug was that the i8254 implements a countdown timer, while for (k)db_active a countup timer was implemented. This resulted in premature termination and consequently the breakage of DELAY. The fix (relative to rev 1.211) is to implement a countdown timer for the kdb_active case. As such the ability to step clock initialization is preserved and DELAY does what is expected of it. Blushed: bde :-) Submitted by: bde Revision Changes Path 1.213 +22 -11 src/sys/i386/isa/clock.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 18:07: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 A6EFE16A4CE; Sun, 11 Jul 2004 18:07:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88FF143D1F; Sun, 11 Jul 2004 18:07:55 +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 i6BI7teV081142; Sun, 11 Jul 2004 18:07:55 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BI7tdU081141; Sun, 11 Jul 2004 18:07:55 GMT (envelope-from marcel) Message-Id: <200407111807.i6BI7tdU081141@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Jul 2004 18:07: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/amd64/isa clock.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, 11 Jul 2004 18:07:55 -0000 marcel 2004-07-11 18:07:55 UTC FreeBSD src repository Modified files: sys/amd64/isa clock.c Log: MFi386: rev 1.213 -- fix DELAY while the debugger is active. This also fixes the (runtime) breakage introduced in the previous commit that was the result of a botched merge. This hasn't even been compile-tested... Revision Changes Path 1.213 +23 -12 src/sys/amd64/isa/clock.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 18:29: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 818D716A4CE; Sun, 11 Jul 2004 18:29:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61D5743D45; Sun, 11 Jul 2004 18:29:47 +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 i6BITlvB081756; Sun, 11 Jul 2004 18:29:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BITlS8081755; Sun, 11 Jul 2004 18:29:47 GMT (envelope-from rwatson) Message-Id: <200407111829.i6BITlS8081755@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 18:29: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/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: Sun, 11 Jul 2004 18:29:47 -0000 rwatson 2004-07-11 18:29:47 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Add additional annotations to soreceive(), documenting the effects of locking on 'nextrecord' and concerns regarding potentially inconsistent or stale use of socket buffer or stack fields if they aren't carefully synchronized whenever the socket buffer mutex is released. Document that the high-level sblock() prevents races against other readers on the socket. Also document the 'type' logic as to how soreceive() guarantees that it will only return one of normal data or inline out-of-band data. Revision Changes Path 1.199 +35 -1 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 19:20: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 6117916A4CE; Sun, 11 Jul 2004 19:20:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4287F43D2F; Sun, 11 Jul 2004 19:20:47 +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 i6BJKl6A083458; Sun, 11 Jul 2004 19:20:47 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BJKlUf083457; Sun, 11 Jul 2004 19:20:47 GMT (envelope-from cperciva) Message-Id: <200407111920.i6BJKlUf083457@repoman.freebsd.org> From: Colin Percival Date: Sun, 11 Jul 2004 19:20: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/etc services X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Jul 2004 19:20:47 -0000 cperciva 2004-07-11 19:20:47 UTC FreeBSD src repository Modified files: etc services Log: Whitespace cleanup. This will simplify a future merge from IANA's official list of port assignments. Revision Changes Path 1.101 +161 -166 src/etc/services From owner-cvs-src@FreeBSD.ORG Sun Jul 11 19:24: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 8D2DB16A4CE; Sun, 11 Jul 2004 19:24:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85B4943D1F; Sun, 11 Jul 2004 19:24:14 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6BJOEOS083552; Sun, 11 Jul 2004 19:24:14 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BJOEOS083551; Sun, 11 Jul 2004 19:24:14 GMT (envelope-from schweikh) Message-Id: <200407111924.i6BJOEOS083551@repoman.freebsd.org> From: Jens Schweikhardt Date: Sun, 11 Jul 2004 19:24:14 +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/usr.bin/indent README args.c indent.1 indent.c indent.h indent_globs.h io.c lexi.c parse.c pr_comment.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, 11 Jul 2004 19:24:14 -0000 schweikh 2004-07-11 19:24:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/indent README args.c indent.1 indent.c indent.h indent_globs.h io.c lexi.c parse.c pr_comment.c Log: Catch up with -current. Revision Changes Path 1.1.1.1.14.1 +5 -2 src/usr.bin/indent/README 1.3.2.4 +39 -16 src/usr.bin/indent/args.c 1.8.2.7 +147 -75 src/usr.bin/indent/indent.1 1.5.2.7 +97 -40 src/usr.bin/indent/indent.c 1.1.2.2 +4 -4 src/usr.bin/indent/indent.h 1.2.2.3 +21 -8 src/usr.bin/indent/indent_globs.h 1.5.2.4 +43 -39 src/usr.bin/indent/io.c 1.3.6.4 +26 -34 src/usr.bin/indent/lexi.c 1.3.2.4 +6 -4 src/usr.bin/indent/parse.c 1.1.1.1.14.4 +7 -3 src/usr.bin/indent/pr_comment.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 19:26: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 522FC16A4CE; Sun, 11 Jul 2004 19:26:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33B9043D2F; Sun, 11 Jul 2004 19:26:43 +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 i6BJQhkr083665; Sun, 11 Jul 2004 19:26:43 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BJQh7p083664; Sun, 11 Jul 2004 19:26:43 GMT (envelope-from phk) Message-Id: <200407111926.i6BJQh7p083664@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 11 Jul 2004 19:26: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 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: Sun, 11 Jul 2004 19:26:43 -0000 phk 2004-07-11 19:26:43 UTC FreeBSD src repository Modified files: sys/kern kern_conf.c Log: Better descriptions of the cdev malloc class and mutex. Revision Changes Path 1.154 +2 -2 src/sys/kern/kern_conf.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 22:59: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 A3D7916A4CE; Sun, 11 Jul 2004 22:59:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83E5C43D1F; Sun, 11 Jul 2004 22:59:32 +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 i6BMxW1F089848; Sun, 11 Jul 2004 22:59:32 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BMxWrI089847; Sun, 11 Jul 2004 22:59:32 GMT (envelope-from rwatson) Message-Id: <200407112259.i6BMxWrI089847@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 22:59: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/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: Sun, 11 Jul 2004 22:59:32 -0000 rwatson 2004-07-11 22:59:32 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Add sockbuf_pushsync(), an inline function that, following a change to the head of the mbuf chains in a socket buffer, re-synchronizes the cache pointers used to optimize socket buffer appends. This will be used by soreceive() before dropping socket buffer mutexes to make sure a consistent version of the socket buffer is visible to other threads. While here, update copyright to account for substantial rewrite of much socket code required for fine-grained locking. Revision Changes Path 1.200 +38 -0 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sun Jul 11 23:03: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 38CFB16A4CE; Sun, 11 Jul 2004 23:03:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D2243D1F; Sun, 11 Jul 2004 23:03:38 +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 i6BN3b6x090038; Sun, 11 Jul 2004 23:03:37 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BN3bjR090037; Sun, 11 Jul 2004 23:03:37 GMT (envelope-from phk) Message-Id: <200407112303.i6BN3bjR090037@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 11 Jul 2004 23:03: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/sys conf.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, 11 Jul 2004 23:03:38 -0000 phk 2004-07-11 23:03:37 UTC FreeBSD src repository Modified files: sys/sys conf.h Log: Remove the last bits of SPECHASH. Revision Changes Path 1.190 +0 -6 src/sys/sys/conf.h From owner-cvs-src@FreeBSD.ORG Sun Jul 11 23:13: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 BB37216A4CE; Sun, 11 Jul 2004 23:13:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2BB443D2D; Sun, 11 Jul 2004 23:13: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 i6BNDE8W090407; Sun, 11 Jul 2004 23:13:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6BNDEaw090406; Sun, 11 Jul 2004 23:13:14 GMT (envelope-from rwatson) Message-Id: <200407112313.i6BNDEaw090406@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Jul 2004 23:13: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 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: Sun, 11 Jul 2004 23:13:14 -0000 rwatson 2004-07-11 23:13:14 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Use sockbuf_pushsync() to synchronize stack and socket buffer state in soreceive() after removing an MT_SONAME mbuf from the head of the socket buffer. When processing MT_CONTROL mbufs in soreceive(), first remove all of the MT_CONTROL mbufs from the head of the socket buffer to a local mbuf chain, then feed them into dom_externalize() as a set, which both avoids thrashing the socket buffer lock when handling multiple control mbufs, and also avoids races with other threads acting on the socket buffer when the socket buffer mutex is released to enter the externalize code. Existing races that might occur if the protocol externalize method blocked during processing have also been closed. Now that we synchronize socket buffer and stack state following modifications to the socket buffer, turn the manual synchronization that previously followed control mbuf processing with a set of assertions. This can eventually be removed. The soreceive() code is now substantially more MPSAFE. Revision Changes Path 1.201 +47 -34 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 00:45: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 757A316A4CE; Mon, 12 Jul 2004 00:45:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56EFA43D31; Mon, 12 Jul 2004 00:45:25 +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 i6C0jPll093203; Mon, 12 Jul 2004 00:45:25 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C0jP51093202; Mon, 12 Jul 2004 00:45:25 GMT (envelope-from keramida) Message-Id: <200407120045.i6C0jP51093202@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 12 Jul 2004 00:45: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/share/man/man4/man4.i386 fe.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, 12 Jul 2004 00:45:25 -0000 keramida 2004-07-12 00:45:25 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4/man4.i386 fe.4 Log: Fix a typo that slipped in during my last commit to this file. Submitted by: fox@vader.aacc.cc.md.us Revision Changes Path 1.29 +1 -1 src/share/man/man4/man4.i386/fe.4 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 01: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 732E516A4CE; Mon, 12 Jul 2004 01:15:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5492943D39; Mon, 12 Jul 2004 01:15:55 +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 i6C1Ft6X094070; Mon, 12 Jul 2004 01:15:55 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C1Ft3Y094069; Mon, 12 Jul 2004 01:15:55 GMT (envelope-from marcel) Message-Id: <200407120115.i6C1Ft3Y094069@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 12 Jul 2004 01:15: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/kern subr_kdb.c src/sys/sys kdb.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, 12 Jul 2004 01:15:55 -0000 marcel 2004-07-12 01:15:55 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c sys/sys kdb.h Log: Make kdb_dbbe_select() available as an interface function. This allows changing the backend from outside the KDB frontend. For example from within a backend. Rewrite kdb_sysctl_current to make use of this function as well. Revision Changes Path 1.3 +20 -9 src/sys/kern/subr_kdb.c 1.2 +1 -0 src/sys/sys/kdb.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 01:38: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 8FE4616A4CE; Mon, 12 Jul 2004 01:38:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72A3243D39; Mon, 12 Jul 2004 01:38: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 i6C1c7HM094643; Mon, 12 Jul 2004 01:38:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C1c79x094642; Mon, 12 Jul 2004 01:38:07 GMT (envelope-from marcel) Message-Id: <200407120138.i6C1c79x094642@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 12 Jul 2004 01:38: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/ddb db_command.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, 12 Jul 2004 01:38:07 -0000 marcel 2004-07-12 01:38:07 UTC FreeBSD src repository Modified files: sys/ddb db_command.c Log: Re-add the gdb command. It was removed to be replaced by something more generic, but that didn't actually happen. Since the feature to switch backends (and historically this means from DDB to GDB) is important, make sure people can do just that until such the generic mechanism actually sees the light of day. Suggested by: rwatson@ Revision Changes Path 1.55 +12 -0 src/sys/ddb/db_command.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 01:54: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 8E60C16A4CF; Mon, 12 Jul 2004 01:54:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FB4243D4C; Mon, 12 Jul 2004 01:54:37 +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 i6C1sbxw095148; Mon, 12 Jul 2004 01:54:37 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C1sbB6095147; Mon, 12 Jul 2004 01:54:37 GMT (envelope-from kientzle) Message-Id: <200407120154.i6C1sbB6095147@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 12 Jul 2004 01:54: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/lib/libarchive 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: Mon, 12 Jul 2004 01:54:37 -0000 kientzle 2004-07-12 01:54:37 UTC FreeBSD src repository Modified files: lib/libarchive README Log: Update the README notes to include the current list of supported formats and remove some outdated comments about library limitations. Revision Changes Path 1.2 +50 -52 src/lib/libarchive/README From owner-cvs-src@FreeBSD.ORG Mon Jul 12 02:48: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 283BB16A4CE; Mon, 12 Jul 2004 02:48:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AE1C43D48; Mon, 12 Jul 2004 02:48:41 +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 i6C2meK0096700; Mon, 12 Jul 2004 02:48:40 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C2mef4096699; Mon, 12 Jul 2004 02:48:40 GMT (envelope-from tjr) Message-Id: <200407120248.i6C2mef4096699@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 02:48: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/usr.bin/m4 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: Mon, 12 Jul 2004 02:48:41 -0000 tjr 2004-07-12 02:48:40 UTC FreeBSD src repository Modified files: usr.bin/m4 main.c Log: Respect locale settings from the environment. Revision Changes Path 1.25 +3 -0 src/usr.bin/m4/main.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 02: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 45D6816A4CE; Mon, 12 Jul 2004 02:55:58 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30C443D39; Mon, 12 Jul 2004 02:55:57 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6C2tmnL093313; Sun, 11 Jul 2004 22:55:48 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6C2tlaI093310; Sun, 11 Jul 2004 22:55:48 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Sun, 11 Jul 2004 22:55:47 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Marcel Moolenaar In-Reply-To: <200407120138.i6C1c79x094642@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ddb db_command.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Jul 2004 02:55:58 -0000 On Mon, 12 Jul 2004, Marcel Moolenaar wrote: > Re-add the gdb command. It was removed to be replaced by something > more generic, but that didn't actually happen. Since the feature to > switch backends (and historically this means from DDB to GDB) is > important, make sure people can do just that until such the generic > mechanism actually sees the light of day. > > Suggested by: rwatson@ Thanks! Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Mon Jul 12 03: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 0FC1016A4CE; Mon, 12 Jul 2004 03:00:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E693C43D49; Mon, 12 Jul 2004 03:00:50 +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 i6C30ojp097118; Mon, 12 Jul 2004 03:00:50 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C30oVK097117; Mon, 12 Jul 2004 03:00:50 GMT (envelope-from alfred) Message-Id: <200407120300.i6C30oVK097117@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 03:00: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/contrib/top commands.c top.X top.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, 12 Jul 2004 03:00:51 -0000 alfred 2004-07-12 03:00:50 UTC FreeBSD src repository Modified files: contrib/top commands.c top.X top.c Log: Make 'S' in interactive mode toggle display of system processes. Revision Changes Path 1.8 +1 -0 src/contrib/top/commands.c 1.11 +3 -0 src/contrib/top/top.X 1.14 +7 -3 src/contrib/top/top.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:09: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 41B3A16A4CE; Mon, 12 Jul 2004 04:09:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244E143D1D; Mon, 12 Jul 2004 04:09:40 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6C49eEW099317; Mon, 12 Jul 2004 04:09:40 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C49e4r099316; Mon, 12 Jul 2004 04:09:40 GMT (envelope-from murray) Message-Id: <200407120409.i6C49e4r099316@repoman.freebsd.org> From: Murray Stokely Date: Mon, 12 Jul 2004 04:09: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 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, 12 Jul 2004 04:09:40 -0000 murray 2004-07-12 04:09:40 UTC FreeBSD src repository Modified files: release Makefile.inc.docports Log: Chase the docproj ports required to build a release with NOPORTS but without NODOCS. PR: ports/68153 Submitted by: Dmitry Morozovsky Revision Changes Path 1.23 +6 -1 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:13: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 AD6B916A4CE; Mon, 12 Jul 2004 04:13:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F84A43D1D; Mon, 12 Jul 2004 04:13:38 +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 i6C4Dc1Q099470; Mon, 12 Jul 2004 04:13:38 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4DcfT099469; Mon, 12 Jul 2004 04:13:38 GMT (envelope-from alfred) Message-Id: <200407120413.i6C4DcfT099469@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 04:13: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/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, 12 Jul 2004 04:13:38 -0000 alfred 2004-07-12 04:13:38 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Dump the actual bad values when this assertion is tripped. Revision Changes Path 1.509 +3 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:18: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 2F5D216A4CE; Mon, 12 Jul 2004 04:18:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1322343D1D; Mon, 12 Jul 2004 04:18:45 +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 i6C4IiEU099624; Mon, 12 Jul 2004 04:18:44 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4IipM099623; Mon, 12 Jul 2004 04:18:44 GMT (envelope-from tjr) Message-Id: <200407120418.i6C4IipM099623@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 04:18: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/usr.bin/xargs xargs.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, 12 Jul 2004 04:18:45 -0000 tjr 2004-07-12 04:18:44 UTC FreeBSD src repository Modified files: usr.bin/xargs xargs.c Log: Call setlocale() with category LC_ALL instead of LC_MESSAGES. We need LC_CTYPE and LC_COLLATE to correctly interpret regular expressions returned by nl_langinfo(YESEXPR), and it doesn't hurt to include the rest. Revision Changes Path 1.55 +1 -1 src/usr.bin/xargs/xargs.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:33: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 32F7D16A4CE; Mon, 12 Jul 2004 04:33:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1680543D39; Mon, 12 Jul 2004 04:33:59 +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 i6C4Xwax099982; Mon, 12 Jul 2004 04:33:58 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4Xwi6099981; Mon, 12 Jul 2004 04:33:58 GMT (envelope-from rwatson) Message-Id: <200407120433.i6C4Xwi6099981@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 04:33: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/netatalk at_control.c ddp_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, 12 Jul 2004 04:33:59 -0000 rwatson 2004-07-12 04:33:58 UTC FreeBSD src repository Modified files: sys/netatalk at_control.c ddp_usrreq.c Log: Remove spl's from netatalk in preparation to merge locking. Revision Changes Path 1.40 +1 -7 src/sys/netatalk/at_control.c 1.41 +0 -23 src/sys/netatalk/ddp_usrreq.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:35: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 CED5D16A4CE; Mon, 12 Jul 2004 04:35:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B167D43D53; Mon, 12 Jul 2004 04:35:42 +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 i6C4Zga9000248; Mon, 12 Jul 2004 04:35:42 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4ZgGk000247; Mon, 12 Jul 2004 04:35:42 GMT (envelope-from rwatson) Message-Id: <200407120435.i6C4ZgGk000247@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 04:35: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/netgraph ng_frame_relay.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, 12 Jul 2004 04:35:43 -0000 rwatson 2004-07-12 04:35:42 UTC FreeBSD src repository Modified files: sys/netgraph ng_frame_relay.c Log: Mark 'makeup' in ng_frame_relay as const, as its values are immutable. Revision Changes Path 1.23 +1 -1 src/sys/netgraph/ng_frame_relay.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:40: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 4573F16A4CE; Mon, 12 Jul 2004 04:40:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26F0443D55; Mon, 12 Jul 2004 04:40:27 +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 i6C4eRP9000412; Mon, 12 Jul 2004 04:40:27 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4eRrL000411; Mon, 12 Jul 2004 04:40:27 GMT (envelope-from alc) Message-Id: <200407120440.i6C4eRrL000411@repoman.freebsd.org> From: Alan Cox Date: Mon, 12 Jul 2004 04:40: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/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, 12 Jul 2004 04:40:27 -0000 alc 2004-07-12 04:40:27 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc pmap.c Log: pmap_remove_pages() must not remove wired mappings. Since pmap_remove_pages() is an optimization, its implementation is optional. Discussed with: grehan Revision Changes Path 1.79 +0 -4 src/sys/powerpc/powerpc/pmap.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:43: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 3EBA116A4CE; Mon, 12 Jul 2004 04:43:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23BD143D1D; Mon, 12 Jul 2004 04:43:59 +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 i6C4hxgX000517; Mon, 12 Jul 2004 04:43:59 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4hxJA000516; Mon, 12 Jul 2004 04:43:59 GMT (envelope-from marcel) Message-Id: <200407120443.i6C4hxJA000516@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 12 Jul 2004 04:43: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/lib/libc/sys ptrace.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: Mon, 12 Jul 2004 04:43:59 -0000 marcel 2004-07-12 04:43:59 UTC FreeBSD src repository Modified files: lib/libc/sys ptrace.2 Log: Document the new PT_LWPINFO request. In fact, the request is so new it hasn't even been implemented yet. I just wanted to be the first to try a new approach to development ;-) Revision Changes Path 1.36 +19 -0 src/lib/libc/sys/ptrace.2 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:45: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 520E616A4CE; Mon, 12 Jul 2004 04:45:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34B1643D1F; Mon, 12 Jul 2004 04:45:46 +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 i6C4jkSI000621; Mon, 12 Jul 2004 04:45:46 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4jkhU000620; Mon, 12 Jul 2004 04:45:46 GMT (envelope-from rwatson) Message-Id: <200407120445.i6C4jkhU000620@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 04:45: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/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, 12 Jul 2004 04:45:46 -0000 rwatson 2004-07-12 04:45:46 UTC FreeBSD src repository Modified files: sys/netgraph ng_socket.c Log: Introduce a global mtx 'ngsocketlist_mtx' to protect the global ng_socket list during insert/delete. Revision Changes Path 1.51 +8 -0 src/sys/netgraph/ng_socket.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:53: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 27F4616A4CE; Mon, 12 Jul 2004 04:53:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AEFA43D2D; Mon, 12 Jul 2004 04:53: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 i6C4rXuh000859; Mon, 12 Jul 2004 04:53:33 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4rXU4000858; Mon, 12 Jul 2004 04:53:33 GMT (envelope-from alfred) Message-Id: <200407120453.i6C4rXU4000858@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 04:53: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/sys user.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, 12 Jul 2004 04:53:34 -0000 alfred 2004-07-12 04:53:33 UTC FreeBSD src repository Modified files: sys/sys user.h Log: Reserve a pointer "ki_udata" in kinfo_proc as a convenience for userland. Revision Changes Path 1.61 +4 -3 src/sys/sys/user.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 04:55: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 DC1D416A4CE; Mon, 12 Jul 2004 04:55:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C051843D1F; Mon, 12 Jul 2004 04:55:07 +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 i6C4t7mI000946; Mon, 12 Jul 2004 04:55:07 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C4t7L2000945; Mon, 12 Jul 2004 04:55:07 GMT (envelope-from alfred) Message-Id: <200407120455.i6C4t7L2000945@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 04:55: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/usr.bin/top machine.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, 12 Jul 2004 04:55:08 -0000 alfred 2004-07-12 04:55:07 UTC FreeBSD src repository Modified files: usr.bin/top machine.c Log: Cache a pointer to the old proc (as well as negative cache) to make computing the io statistics over and over not as expensive. This is a bit of a cop out, as I should just allocate a struct with the computed values, but this will do for now. Revision Changes Path 1.65 +13 -2 src/usr.bin/top/machine.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 05: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 A8A5416A4CE; Mon, 12 Jul 2004 05:06:55 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A04C943D48; Mon, 12 Jul 2004 05:06:55 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 9812B5C894; Sun, 11 Jul 2004 22:06:55 -0700 (PDT) Date: Sun, 11 Jul 2004 22:06:55 -0700 From: Alfred Perlstein To: Marcel Moolenaar Message-ID: <20040712050655.GZ95729@elvis.mu.org> References: <200407120443.i6C4hxJA000516@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407120443.i6C4hxJA000516@repoman.freebsd.org> 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/libc/sys ptrace.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: Mon, 12 Jul 2004 05:06:55 -0000 * Marcel Moolenaar [040711 21:44] wrote: > marcel 2004-07-12 04:43:59 UTC > > FreeBSD src repository > > Modified files: > lib/libc/sys ptrace.2 > Log: > Document the new PT_LWPINFO request. In fact, the request is so new > it hasn't even been implemented yet. I just wanted to be the first > to try a new approach to development ;-) Oh please... MAP_INHERIT, MAP_HASSEMAPHORE, etc.. :D -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Mon Jul 12 05:07: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 B00A616A4CE; Mon, 12 Jul 2004 05:07:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA9C143D55; Mon, 12 Jul 2004 05:07: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 i6C57om5001346; Mon, 12 Jul 2004 05:07:50 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C57ooG001345; Mon, 12 Jul 2004 05:07:50 GMT (envelope-from marcel) Message-Id: <200407120507.i6C57ooG001345@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 12 Jul 2004 05:07: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/sys/kern kern_exit.c kern_sig.c sys_process.c src/sys/sys proc.h ptrace.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, 12 Jul 2004 05:07:50 -0000 marcel 2004-07-12 05:07:50 UTC FreeBSD src repository Modified files: sys/kern kern_exit.c kern_sig.c sys_process.c sys/sys proc.h ptrace.h Log: Implement the PT_LWPINFO request. This request can be used by the tracing process to obtain information about the LWP that caused the traced process to stop. Debuggers can use this information to select the thread currently running on the LWP as the current thread. The request has been made compatible with NetBSD for as much as possible. This implementation differs from NetBSD in the following ways: 1. The data argument is allowed to be smaller than the size of the ptrace_lwpinfo structure known to the kernel, but not 0. This is opposite to what NetBSD allows. The reason for this is that we can extend the structure without affecting older binaries. 2. On NetBSD the tracing process is to set the pl_lwpid field to the Id of the LWP it wants information of. We don't do that. Our ptrace interface allows passing the LWP Id instead of the PID. The tracing process is to set the PID to the LWP Id it wants information of. 3. When the PID is actually the PID of the tracing process, this request returns the information about the LWP that caused the process to stop. This was the whole purpose of the request in the first place. When the traced process has exited, this request will return the LWP Id 0, indicating that the process state is not the result of an event specific to a LWP. Revision Changes Path 1.239 +1 -0 src/sys/kern/kern_exit.c 1.283 +3 -0 src/sys/kern/kern_sig.c 1.122 +19 -0 src/sys/kern/sys_process.c 1.385 +1 -0 src/sys/sys/proc.h 1.23 +9 -0 src/sys/sys/ptrace.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 06:07: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 1CA1C16A4CE; Mon, 12 Jul 2004 06:07:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF15243D2F; Mon, 12 Jul 2004 06:07:26 +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 i6C67Qiu003091; Mon, 12 Jul 2004 06:07:26 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C67Qf6003090; Mon, 12 Jul 2004 06:07:26 GMT (envelope-from tjr) Message-Id: <200407120607.i6C67Qf6003090@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 06:07: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/include regex.h src/lib/libc/regex regerror.c regex.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: Mon, 12 Jul 2004 06:07:27 -0000 tjr 2004-07-12 06:07:26 UTC FreeBSD src repository Modified files: include regex.h lib/libc/regex regerror.c regex.3 Log: Add a new error code, REG_ILLSEQ, to indicate that a regular expression contains an illegal multibyte character sequence. Revision Changes Path 1.11 +1 -0 src/include/regex.h 1.9 +2 -0 src/lib/libc/regex/regerror.c 1.16 +3 -1 src/lib/libc/regex/regex.3 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 06: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 EF8D216A4CE; Mon, 12 Jul 2004 06:22:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D29D243D39; Mon, 12 Jul 2004 06:22:42 +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 i6C6Mg3q003552; Mon, 12 Jul 2004 06:22:42 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C6MgfL003551; Mon, 12 Jul 2004 06:22:42 GMT (envelope-from alfred) Message-Id: <200407120622.i6C6MgfL003551@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 06: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/kern uipc_socket.c src/sys/nfsclient nfs_socket.c src/sys/sys socketvar.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, 12 Jul 2004 06:22:43 -0000 alfred 2004-07-12 06:22:42 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c sys/nfsclient nfs_socket.c sys/sys socketvar.h Log: Use SO_REUSEADDR and SO_REUSEPORT when reconnecting NFS mounts. Tune the timeout from 5 seconds to 12 seconds. Provide a sysctl to show how many reconnects the NFS client has done. Seems to fix IPv6 from: kuriyama Revision Changes Path 1.202 +19 -0 src/sys/kern/uipc_socket.c 1.112 +10 -2 src/sys/nfsclient/nfs_socket.c 1.132 +2 -0 src/sys/sys/socketvar.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 07:35: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 AB52B16A4CE; Mon, 12 Jul 2004 07:35:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6DBD43D1F; Mon, 12 Jul 2004 07:35:59 +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 i6C7Zxbv005904; Mon, 12 Jul 2004 07:35:59 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C7Zx2f005903; Mon, 12 Jul 2004 07:35:59 GMT (envelope-from tjr) Message-Id: <200407120735.i6C7Zx2f005903@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 07: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/lib/libc/regex engine.c regcomp.c regex2.h regexec.c regfree.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, 12 Jul 2004 07:35:59 -0000 tjr 2004-07-12 07:35:59 UTC FreeBSD src repository Modified files: lib/libc/regex engine.c regcomp.c regex2.h regexec.c regfree.c Log: Make regular expression matching aware of multibyte characters. The general idea is that we perform multibyte->wide character conversion while parsing and compiling, then convert byte sequences to wide characters when they're needed for comparison and stepping through the string during execution. As with tr(1), the main complication is to efficiently represent sets of characters in bracket expressions. The old bitmap representation is replaced by a bitmap for the first 256 characters combined with a vector of individual wide characters, a vector of character ranges (for [A-Z] etc.), and a vector of character classes (for [[:alpha:]] etc.). One other point of interest is that although the Boyer-Moore algorithm had to be disabled in the general multibyte case, it is still enabled for UTF-8 because of its self-synchronizing nature. This greatly speeds up matching by reducing the number of multibyte conversions that need to be done. Revision Changes Path 1.14 +92 -40 src/lib/libc/regex/engine.c 1.32 +253 -259 src/lib/libc/regex/regcomp.c 1.8 +57 -17 src/lib/libc/regex/regex2.h 1.6 +64 -3 src/lib/libc/regex/regexec.c 1.6 +10 -3 src/lib/libc/regex/regfree.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 07:39: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 7417216A4CE; Mon, 12 Jul 2004 07:39:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F0F243D58; Mon, 12 Jul 2004 07:39:20 +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 i6C7dKvY006027; Mon, 12 Jul 2004 07:39:20 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C7dKTJ006026; Mon, 12 Jul 2004 07:39:20 GMT (envelope-from davidxu) Message-Id: <200407120739.i6C7dKTJ006026@repoman.freebsd.org> From: David Xu Date: Mon, 12 Jul 2004 07:39: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 init_sysent.c kern_kse.c syscalls.c syscalls.master src/sys/sys kse.h syscall.h syscall.mk sysproto.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, 12 Jul 2004 07:39:20 -0000 davidxu 2004-07-12 07:39:20 UTC FreeBSD src repository Modified files: sys/kern init_sysent.c kern_kse.c syscalls.c syscalls.master sys/sys kse.h syscall.h syscall.mk sysproto.h Log: Change kse_switchin to accept kse_thr_mailbox pointer, the syscall will be used heavily in debugging KSE threads. This breaks libpthread on IA64, but because libpthread was not in 5.2.1 release, I would like to change it so we needn't to introduce another syscall. Revision Changes Path 1.174 +0 -0 src/sys/kern/init_sysent.c 1.183 +20 -9 src/sys/kern/kern_kse.c 1.160 +0 -0 src/sys/kern/syscalls.c 1.175 +2 -2 src/sys/kern/syscalls.master 1.22 +4 -1 src/sys/sys/kse.h 1.158 +0 -0 src/sys/sys/syscall.h 1.113 +0 -0 src/sys/sys/syscall.mk 1.157 +2 -3 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 07:41: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 AECB216A4CF; Mon, 12 Jul 2004 07:41:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 932B843D39; Mon, 12 Jul 2004 07:41:01 +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 i6C7f1eb006219; Mon, 12 Jul 2004 07:41:01 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C7f183006218; Mon, 12 Jul 2004 07:41:01 GMT (envelope-from davidxu) Message-Id: <200407120741.i6C7f183006218@repoman.freebsd.org> From: David Xu Date: Mon, 12 Jul 2004 07:41: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/libpthread/arch/ia64/include pthread_md.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, 12 Jul 2004 07:41:02 -0000 davidxu 2004-07-12 07:41:01 UTC FreeBSD src repository Modified files: lib/libpthread/arch/ia64/include pthread_md.h Log: kse_switchin ABI was changed in kernel. Revision Changes Path 1.13 +2 -3 src/lib/libpthread/arch/ia64/include/pthread_md.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 07:59: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 5045316A4CE; Mon, 12 Jul 2004 07:59:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BBFD43D1F; Mon, 12 Jul 2004 07:59:25 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6C7xPka006785; Mon, 12 Jul 2004 07:59:25 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C7xPxZ006784; Mon, 12 Jul 2004 07:59:25 GMT (envelope-from kris) Message-Id: <200407120759.i6C7xPxZ006784@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Jul 2004 07:59: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/alpha mkisoimages.sh src/release/amd64 mkisoimages.sh src/release/i386 mkisoimages.sh src/release/ia64 mkisoimages.sh src/release/sparc64 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, 12 Jul 2004 07:59:25 -0000 kris 2004-07-12 07:59:25 UTC FreeBSD src repository Modified files: release/alpha mkisoimages.sh release/amd64 mkisoimages.sh release/i386 mkisoimages.sh release/ia64 mkisoimages.sh release/sparc64 mkisoimages.sh Log: Set BATCH=yes to avoid bumping into interactivity in the port builds. XXX /usr/ports is still hardcoded, should be ${PORTSDIR} Revision Changes Path 1.9 +2 -2 src/release/alpha/mkisoimages.sh 1.9 +1 -1 src/release/amd64/mkisoimages.sh 1.10 +1 -1 src/release/i386/mkisoimages.sh 1.7 +1 -1 src/release/ia64/mkisoimages.sh 1.5 +1 -1 src/release/sparc64/mkisoimages.sh From owner-cvs-src@FreeBSD.ORG Mon Jul 12 08:05: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 8F00316A4CE; Mon, 12 Jul 2004 08:05:30 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428D143D1D; Mon, 12 Jul 2004 08:05:30 +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 i6C8AiJ3021706; Mon, 12 Jul 2004 02:10:44 -0600 (MDT) (envelope-from scottl@freebsd.org) Received: from localhost (scottl@localhost)i6C8AiM2021703; Mon, 12 Jul 2004 02:10:44 -0600 (MDT) (envelope-from scottl@freebsd.org) X-Authentication-Warning: pooker.samsco.org: scottl owned process doing -bs Date: Mon, 12 Jul 2004 02:10:43 -0600 (MDT) From: Scott Long Sender: scottl@pooker.samsco.org To: Kris Kennaway In-Reply-To: <200407120759.i6C7xPxZ006784@repoman.freebsd.org> Message-ID: <20040712020734.C97786@pooker.samsco.org> References: <200407120759.i6C7xPxZ006784@repoman.freebsd.org> 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 Subject: Re: cvs commit: src/release/alpha mkisoimages.sh src/release/amd64 mkisoimages.sh src/release/i386 mkisoimages.sh src/release/ia64 mkisoimages.sh src/release/sparc64 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, 12 Jul 2004 08:05:30 -0000 On Mon, 12 Jul 2004, Kris Kennaway wrote: > kris 2004-07-12 07:59:25 UTC > > FreeBSD src repository > > Modified files: > release/alpha mkisoimages.sh > release/amd64 mkisoimages.sh > release/i386 mkisoimages.sh > release/ia64 mkisoimages.sh > release/sparc64 mkisoimages.sh > Log: > Set BATCH=yes to avoid bumping into interactivity in the port builds. > > XXX /usr/ports is still hardcoded, should be ${PORTSDIR} /usr/ports is a hard-coded path within the release chroot. If you want to use the PORTSDIR variable then you'll need to do something similar to what is done for building DOCPORTS. Scott From owner-cvs-src@FreeBSD.ORG Mon Jul 12 08:14: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 4F2CE16A4CE; Mon, 12 Jul 2004 08:14:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35F5143D49; Mon, 12 Jul 2004 08:14:10 +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 i6C8EAIW007920; Mon, 12 Jul 2004 08:14:10 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C8EA9d007919; Mon, 12 Jul 2004 08:14:10 GMT (envelope-from alfred) Message-Id: <200407120814.i6C8EA9d007919@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 08: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/coda coda_vfsops.c src/sys/fs/devfs devfs_vfsops.c src/sys/fs/fdescfs fdesc.h fdesc_vfsops.c src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/nullfs null_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: Mon, 12 Jul 2004 08:14:10 -0000 alfred 2004-07-12 08:14:10 UTC FreeBSD src repository Modified files: sys/coda coda_vfsops.c sys/fs/devfs devfs_vfsops.c sys/fs/fdescfs fdesc.h fdesc_vfsops.c sys/fs/hpfs hpfs_vfsops.c sys/fs/msdosfs msdosfs_vfsops.c sys/fs/ntfs ntfs_vfsops.c sys/fs/nullfs null_vfsops.c sys/fs/nwfs nwfs_vfsops.c sys/fs/portalfs portal_vfsops.c sys/fs/pseudofs pseudofs.c pseudofs.h sys/fs/smbfs smbfs_vfsops.c sys/fs/udf udf_vfsops.c sys/fs/umapfs umap_vfsops.c sys/fs/unionfs union_vfsops.c union_vnops.c sys/gnu/ext2fs ext2_vfsops.c sys/isofs/cd9660 cd9660_vfsops.c sys/kern init_main.c vfs_default.c vfs_export.c vfs_lookup.c vfs_mount.c vfs_subr.c vfs_syscalls.c sys/nfs4client nfs4_vfsops.c sys/nfsclient nfs_vfsops.c sys/sys mount.h vnode.h sys/ufs/ffs ffs_vfsops.c sys/ufs/ufs ufs_extattr.c ufs_vfsops.c Log: Make VFS_ROOT() and vflush() take a thread argument. This is to allow filesystems to decide based on the passed thread which vnode to return. Several filesystems used curthread, they now use the passed thread. Revision Changes Path 1.49 +3 -2 src/sys/coda/coda_vfsops.c 1.32 +4 -5 src/sys/fs/devfs/devfs_vfsops.c 1.18 +2 -2 src/sys/fs/fdescfs/fdesc.h 1.44 +3 -2 src/sys/fs/fdescfs/fdesc_vfsops.c 1.37 +4 -3 src/sys/fs/hpfs/hpfs_vfsops.c 1.123 +10 -7 src/sys/fs/msdosfs/msdosfs_vfsops.c 1.59 +5 -4 src/sys/fs/ntfs/ntfs_vfsops.c 1.62 +3 -3 src/sys/fs/nullfs/null_vfsops.c 1.33 +3 -4 src/sys/fs/nwfs/nwfs_vfsops.c 1.49 +3 -2 src/sys/fs/portalfs/portal_vfsops.c 1.20 +2 -2 src/sys/fs/pseudofs/pseudofs.c 1.27 +2 -1 src/sys/fs/pseudofs/pseudofs.h 1.24 +3 -3 src/sys/fs/smbfs/smbfs_vfsops.c 1.19 +2 -2 src/sys/fs/udf/udf_vfsops.c 1.57 +3 -2 src/sys/fs/umapfs/umap_vfsops.c 1.66 +3 -2 src/sys/fs/unionfs/union_vfsops.c 1.108 +1 -1 src/sys/fs/unionfs/union_vnops.c 1.124 +3 -2 src/sys/gnu/ext2fs/ext2_vfsops.c 1.119 +3 -2 src/sys/isofs/cd9660/cd9660_vfsops.c 1.244 +1 -1 src/sys/kern/init_main.c 1.97 +2 -1 src/sys/kern/vfs_default.c 1.327 +1 -1 src/sys/kern/vfs_export.c 1.63 +1 -1 src/sys/kern/vfs_lookup.c 1.135 +4 -4 src/sys/kern/vfs_mount.c 1.510 +4 -4 src/sys/kern/vfs_subr.c 1.355 +1 -1 src/sys/kern/vfs_syscalls.c 1.10 +3 -3 src/sys/nfs4client/nfs4_vfsops.c 1.156 +2 -2 src/sys/nfsclient/nfs_vfsops.c 1.170 +2 -2 src/sys/sys/mount.h 1.241 +1 -1 src/sys/sys/vnode.h 1.236 +3 -3 src/sys/ufs/ffs/ffs_vfsops.c 1.73 +1 -1 src/sys/ufs/ufs/ufs_extattr.c 1.39 +2 -1 src/sys/ufs/ufs/ufs_vfsops.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 08:22: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 BBADA16A4CE; Mon, 12 Jul 2004 08:22:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A015543D49; Mon, 12 Jul 2004 08:22: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 i6C8MWcp008249; Mon, 12 Jul 2004 08:22:32 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C8MW8x008248; Mon, 12 Jul 2004 08:22:32 GMT (envelope-from des) Message-Id: <200407120822.i6C8MW8x008248@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 12 Jul 2004 08:22: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/usr.bin/top machine.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, 12 Jul 2004 08:22:32 -0000 des 2004-07-12 08:22:32 UTC FreeBSD src repository Modified files: usr.bin/top machine.c Log: Adjust the show_self code (the test got inadvertantly reversed a couple of revisions ago) Submitted by: Alex Vasylenko Revision Changes Path 1.66 +3 -3 src/usr.bin/top/machine.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 08: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 02B7816A4CE; Mon, 12 Jul 2004 08:23:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBCF843D46; Mon, 12 Jul 2004 08:23:11 +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 i6C8NA3X008289; Mon, 12 Jul 2004 08:23:10 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C8NASY008288; Mon, 12 Jul 2004 08:23:10 GMT (envelope-from alfred) Message-Id: <200407120823.i6C8NASY008288@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 08:23: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/sys 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: Mon, 12 Jul 2004 08:23:12 -0000 alfred 2004-07-12 08:23:10 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for VFS_ROOT, vflush and kinfo_proc changes. Revision Changes Path 1.203 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 09:06: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 7D3FE16A4CE; Mon, 12 Jul 2004 09:06:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62E9843D39; Mon, 12 Jul 2004 09:06:51 +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 i6C96pO5009743; Mon, 12 Jul 2004 09:06:51 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6C96p66009742; Mon, 12 Jul 2004 09:06:51 GMT (envelope-from alfred) Message-Id: <200407120906.i6C96p66009742@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 09:06: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/share/man/man9 VFS_ROOT.9 vflush.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, 12 Jul 2004 09:06:51 -0000 alfred 2004-07-12 09:06:51 UTC FreeBSD src repository Modified files: share/man/man9 VFS_ROOT.9 vflush.9 Log: Document thread parameter passed to VFS_ROOT and vflush. Revision Changes Path 1.10 +3 -1 src/share/man/man9/VFS_ROOT.9 1.3 +3 -1 src/share/man/man9/vflush.9 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 10:12: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 D767B16A4CE; Mon, 12 Jul 2004 10:12:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBA5143D41; Mon, 12 Jul 2004 10:12:51 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CACpHk011724; Mon, 12 Jul 2004 10:12:51 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CACpwX011723; Mon, 12 Jul 2004 10:12:51 GMT (envelope-from murray) Message-Id: <200407121012.i6CACpwX011723@repoman.freebsd.org> From: Murray Stokely Date: Mon, 12 Jul 2004 10:12: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/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, 12 Jul 2004 10:12:52 -0000 murray 2004-07-12 10:12:51 UTC FreeBSD src repository Modified files: release Makefile.inc.docports Log: Add p5-File-Spec and p5-File-Temp. Submitted by: Dmitry Morozovsky PR: ports/68153 MFC After: 3 days Revision Changes Path 1.24 +2 -0 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Mon Jul 12 10:17: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 6ACEC16A4CE; Mon, 12 Jul 2004 10:17:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 500D343D31; Mon, 12 Jul 2004 10:17:02 +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 i6CAH2oW011848; Mon, 12 Jul 2004 10:17:02 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CAH2sO011847; Mon, 12 Jul 2004 10:17:02 GMT (envelope-from tjr) Message-Id: <200407121017.i6CAH2sO011847@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 10:17: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.bin/csplit csplit.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: Mon, 12 Jul 2004 10:17:02 -0000 tjr 2004-07-12 10:17:02 UTC FreeBSD src repository Modified files: usr.bin/csplit csplit.1 Log: Remove BUGS section that talked about missing multibyte character support. We have support now that the regular expression routines do. Revision Changes Path 1.8 +1 -5 src/usr.bin/csplit/csplit.1 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 10:46: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 2A75116A4CE; Mon, 12 Jul 2004 10:46:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FA6043D31; Mon, 12 Jul 2004 10:46:56 +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 i6CAktFu012709; Mon, 12 Jul 2004 10:46:55 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CAktPV012708; Mon, 12 Jul 2004 10:46:55 GMT (envelope-from tjr) Message-Id: <200407121046.i6CAktPV012708@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 10:46: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/bin/expr expr.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: Mon, 12 Jul 2004 10:46:56 -0000 tjr 2004-07-12 10:46:55 UTC FreeBSD src repository Modified files: bin/expr expr.1 Log: Remove BUGS section that talked about missing multibyte character support. We have support now that the regular expression routines do. Revision Changes Path 1.25 +1 -5 src/bin/expr/expr.1 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 10:50: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 64EBA16A4CE; Mon, 12 Jul 2004 10:50:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A20743D41; Mon, 12 Jul 2004 10:50:50 +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 i6CAoocm012861; Mon, 12 Jul 2004 10:50:50 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CAooum012860; Mon, 12 Jul 2004 10:50:50 GMT (envelope-from sos) Message-Id: <200407121050.i6CAooum012860@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 12 Jul 2004 10: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/sys/dev/ata ata-all.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: Mon, 12 Jul 2004 10:50:50 -0000 sos 2004-07-12 10:50:50 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-disk.c Log: Attempt to handle suspend/resume better. Revision Changes Path 1.215 +9 -15 src/sys/dev/ata/ata-all.c 1.174 +0 -1 src/sys/dev/ata/ata-disk.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 11:03: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 EF3BC16A4CE; Mon, 12 Jul 2004 11:03:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D200243D45; Mon, 12 Jul 2004 11:03:42 +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 i6CB3gCa013182; Mon, 12 Jul 2004 11:03:42 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CB3gxP013181; Mon, 12 Jul 2004 11:03:42 GMT (envelope-from tjr) Message-Id: <200407121103.i6CB3gxP013181@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Jul 2004 11:03: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/libc/regex regex.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: Mon, 12 Jul 2004 11:03:43 -0000 tjr 2004-07-12 11:03:42 UTC FreeBSD src repository Modified files: lib/libc/regex regex.3 Log: Remove an entry from the BUGS section: we have multibyte character support now. Revision Changes Path 1.17 +0 -2 src/lib/libc/regex/regex.3 From owner-cvs-src@FreeBSD.ORG Mon Jul 12 11:52: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 64EBE16A4CE; Mon, 12 Jul 2004 11:52:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 471BF43D1D; Mon, 12 Jul 2004 11:52:15 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CBqFL8014637; Mon, 12 Jul 2004 11:52:15 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CBqFDJ014636; Mon, 12 Jul 2004 11:52:15 GMT (envelope-from dfr) Message-Id: <200407121152.i6CBqFDJ014636@repoman.freebsd.org> From: Doug Rabson Date: Mon, 12 Jul 2004 11:52: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/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: Mon, 12 Jul 2004 11:52:15 -0000 dfr 2004-07-12 11:52:15 UTC FreeBSD src repository Modified files: sys/conf files Log: Make if_fwsubr.c dependant on fwip instead of firewire - there is not much point including it if you aren't using IP over firewire. Revision Changes Path 1.929 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Jul 12 13:12: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 85CB716A4CE; Mon, 12 Jul 2004 13:12:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6830743D1F; Mon, 12 Jul 2004 13:12:56 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CDCuoK017121; Mon, 12 Jul 2004 13:12:56 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CDCu31017120; Mon, 12 Jul 2004 13:12:56 GMT (envelope-from dfr) Message-Id: <200407121312.i6CDCu31017120@repoman.freebsd.org> From: Doug Rabson Date: Mon, 12 Jul 2004 13:12: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/modules/firewire/fwip 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, 12 Jul 2004 13:12:56 -0000 dfr 2004-07-12 13:12:56 UTC FreeBSD src repository Added files: sys/modules/firewire/fwip Makefile Log: Add fwip module. Submitted by: simokawa Revision Changes Path 1.1 +19 -0 src/sys/modules/firewire/fwip/Makefile (new) From owner-cvs-src@FreeBSD.ORG Mon Jul 12 13:13: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 7784316A4CE; Mon, 12 Jul 2004 13:13:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B81543D1D; Mon, 12 Jul 2004 13:13:17 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CDDHR4017169; Mon, 12 Jul 2004 13:13:17 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CDDHP5017168; Mon, 12 Jul 2004 13:13:17 GMT (envelope-from dfr) Message-Id: <200407121313.i6CDDHP5017168@repoman.freebsd.org> From: Doug Rabson Date: Mon, 12 Jul 2004 13:13: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/firewire 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, 12 Jul 2004 13:13:17 -0000 dfr 2004-07-12 13:13:17 UTC FreeBSD src repository Modified files: sys/modules/firewire Makefile Log: Add fwip module. Revision Changes Path 1.5 +1 -0 src/sys/modules/firewire/Makefile From owner-cvs-src@FreeBSD.ORG Mon Jul 12 13:13: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 E19EE16A4CE; Mon, 12 Jul 2004 13:13:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4CE043D48; Mon, 12 Jul 2004 13:13: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 i6CDDgfO017204; Mon, 12 Jul 2004 13:13:42 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CDDgDM017203; Mon, 12 Jul 2004 13:13:42 GMT (envelope-from kientzle) Message-Id: <200407121313.i6CDDgDM017203@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 12 Jul 2004 13:13: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/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: Mon, 12 Jul 2004 13:13:43 -0000 kientzle 2004-07-12 13:13:42 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: Fix tab/space screwup in long_help() Revision Changes Path 1.37 +1 -1 src/usr.bin/tar/bsdtar.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 13:15: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 3F65E16A4CE; Mon, 12 Jul 2004 13:15:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22F9E43D41; Mon, 12 Jul 2004 13:15:14 +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 i6CDFE3Q017286; Mon, 12 Jul 2004 13:15:14 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CDFESB017285; Mon, 12 Jul 2004 13:15:14 GMT (envelope-from kientzle) Message-Id: <200407121315.i6CDFESB017285@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 12 Jul 2004 13:15: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/usr.bin/tar 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: Mon, 12 Jul 2004 13:15:14 -0000 kientzle 2004-07-12 13:15:13 UTC FreeBSD src repository Modified files: usr.bin/tar read.c Log: Mimic ls(1) by putting an extra space before the year in old dates Revision Changes Path 1.13 +1 -1 src/usr.bin/tar/read.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 14:00: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 A628B16A4CF; Mon, 12 Jul 2004 14:00:11 +0000 (GMT) Received: from mailout11.sul.t-online.com (mailout11.sul.t-online.com [194.25.134.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10DBD43D46; Mon, 12 Jul 2004 14:00:11 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd07.aul.t-online.de by mailout11.sul.t-online.com with smtp id 1Bk1Ll-0005s5-06; Mon, 12 Jul 2004 16:00:09 +0200 Received: from Andro-Beta.Leidinger.net (VTx--0Z-wevPUmZvyRTyoeFPE17NGemw+L+3rjzCqG7WM5fbGd+Lwv@[217.83.30.91]) by fmrl07.sul.t-online.com with esmtp id 1Bk1LZ-07suxM0; Mon, 12 Jul 2004 15:59:57 +0200 Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) i6CDxvNj010870; Mon, 12 Jul 2004 15:59:57 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Mon, 12 Jul 2004 16:00:09 +0200 From: Alexander Leidinger To: David Schultz Message-Id: <20040712160009.16ebe0c1@Magellan.Leidinger.net> In-Reply-To: <20040709033327.GA14984@VARK.homeunix.com> References: <200407090331.i693VAIL038494@repoman.freebsd.org> <20040709033327.GA14984@VARK.homeunix.com> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Mon__12_Jul_2004_16_00_09_+0200_QYg96VZ4z5Qpyrj6" X-Seen: false X-ID: VTx--0Z-wevPUmZvyRTyoeFPE17NGemw+L+3rjzCqG7WM5fbGd+Lwv@t-dialin.net cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/msun/src math.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, 12 Jul 2004 14:00:11 -0000 This is a multi-part message in MIME format. --Multipart=_Mon__12_Jul_2004_16_00_09_+0200_QYg96VZ4z5Qpyrj6 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 8 Jul 2004 20:33:27 -0700 David Schultz wrote: > The Intel compiler is too smart for its own good sometimes. > I kept wondering why, despite icc's lack of a __builtin_isgreater(), > it seemed to be using one anyway. It turns out that it had done > some constant propagation and determined the value of my call to the > libm routine __fpclassifyd() statically. Pretty spiffy. In this case the attached patch may be more accurate. Background: The FreeBSD port of icc v8 doesn't define __GNUC__ by default, but icc v8 on linux does it. It gets explicitly disabled in the FreeBSD port. To be on the safe side one should test for !defined(icc) if the code shouldn't be used in the icc case. Bye, Alexander. -- I'm available to get hired (preferred in .lu). http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart=_Mon__12_Jul_2004_16_00_09_+0200_QYg96VZ4z5Qpyrj6 Content-Type: text/plain; name="math.h.diff" Content-Disposition: attachment; filename="math.h.diff" Content-Transfer-Encoding: 8bit Index: math.h =================================================================== RCS file: /big/FreeBSD-CVS/src/lib/msun/src/math.h,v retrieving revision 1.40 diff -u -u -r1.40 math.h --- math.h 9 Jul 2004 03:32:39 -0000 1.40 +++ math.h 12 Jul 2004 13:56:09 -0000 @@ -38,7 +38,7 @@ #define __MATH_BUILTIN_CONSTANTS #endif -#if (defined(__GNUC__) && __GNUC__ >= 3) +#if (defined(__GNUC__) && __GNUC__ >= 3 && !defined(__INTEL_COMPILER)) #define __MATH_BUILTIN_RELOPS #endif --Multipart=_Mon__12_Jul_2004_16_00_09_+0200_QYg96VZ4z5Qpyrj6-- From owner-cvs-src@FreeBSD.ORG Mon Jul 12 14:11: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 4837B16A4CE; Mon, 12 Jul 2004 14:11:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B78343D2D; Mon, 12 Jul 2004 14:11:27 +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 i6CEBR6a018978; Mon, 12 Jul 2004 14:11:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CEBRH1018977; Mon, 12 Jul 2004 14:11:27 GMT (envelope-from rwatson) Message-Id: <200407121411.i6CEBRH1018977@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 14:11: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/coda coda_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: Mon, 12 Jul 2004 14:11:27 -0000 rwatson 2004-07-12 14:11:27 UTC FreeBSD src repository Modified files: sys/coda coda_vfsops.c Log: Remove 'td = curthread' that shadows the arguments to coda_root(). Missed by: alfred Revision Changes Path 1.50 +0 -1 src/sys/coda/coda_vfsops.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 14:44: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 713DA16A4CE; Mon, 12 Jul 2004 14:44:43 +0000 (GMT) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C5F243D3F; Mon, 12 Jul 2004 14:44:43 +0000 (GMT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) i6CEigxN033704; Mon, 12 Jul 2004 07:44:42 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)i6CEigqa033703; Mon, 12 Jul 2004 07:44:42 -0700 (PDT) (envelope-from sgk) Date: Mon, 12 Jul 2004 07:44:42 -0700 From: Steve Kargl To: David Xu Message-ID: <20040712144442.GA33669@troutmask.apl.washington.edu> References: <200407120741.i6C7f183006218@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407120741.i6C7f183006218@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/lib/libpthread/arch/ia64/include pthread_md.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, 12 Jul 2004 14:44:43 -0000 On Mon, Jul 12, 2004 at 07:41:01AM +0000, David Xu wrote: > davidxu 2004-07-12 07:41:01 UTC > > FreeBSD src repository > > Modified files: > lib/libpthread/arch/ia64/include pthread_md.h > Log: > kse_switchin ABI was changed in kernel. > Do we need to bump the library version number? -- Steve From owner-cvs-src@FreeBSD.ORG Mon Jul 12 15:22: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 95F8616A4CE; Mon, 12 Jul 2004 15:22:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7884643D4C; Mon, 12 Jul 2004 15:22:44 +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 i6CFMiB9021050; Mon, 12 Jul 2004 15:22:44 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CFMi6r021049; Mon, 12 Jul 2004 15:22:44 GMT (envelope-from alfred) Message-Id: <200407121522.i6CFMi6r021049@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jul 2004 15:22: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/contrib/top commands.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, 12 Jul 2004 15:22:44 -0000 alfred 2004-07-12 15:22:44 UTC FreeBSD src repository Modified files: contrib/top commands.c Log: document the 'I' and 't' commands in the help screen in top(1). Submitted by: Alex Vasylenko lxv omut.org Revision Changes Path 1.9 +3 -2 src/contrib/top/commands.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 15:28: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 0879716A4CE; Mon, 12 Jul 2004 15:28:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEE0543D46; Mon, 12 Jul 2004 15:28:31 +0000 (GMT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CFSV4l021208; Mon, 12 Jul 2004 15:28:31 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CFSVZc021207; Mon, 12 Jul 2004 15:28:31 GMT (envelope-from mtm) Message-Id: <200407121528.i6CFSVZc021207@repoman.freebsd.org> From: Mike Makonnen Date: Mon, 12 Jul 2004 15:28: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/kern kern_thr.c kern_umtx.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, 12 Jul 2004 15:28:32 -0000 mtm 2004-07-12 15:28:31 UTC FreeBSD src repository Modified files: sys/kern kern_thr.c kern_umtx.c Log: writers must hold both sched_lock and the process lock; therefore, readers need only obtain the process lock. Revision Changes Path 1.22 +2 -5 src/sys/kern/kern_thr.c 1.16 +3 -5 src/sys/kern/kern_umtx.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 16:40: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 29F4D16A4CE; Mon, 12 Jul 2004 16:40:31 +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 AA05743D2D; Mon, 12 Jul 2004 16:40:30 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i6CGeUZc085871; Mon, 12 Jul 2004 09:40:30 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) i6CGeUjT003759; Mon, 12 Jul 2004 09:40:30 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.12.11/8.12.11/Submit) id i6CGeUVt003758; Mon, 12 Jul 2004 09:40:30 -0700 (PDT) (envelope-from marcel) Date: Mon, 12 Jul 2004 09:40:25 -0700 From: Marcel Moolenaar To: David Xu Message-ID: <20040712164025.GA3691@dhcp50.pn.xcllnt.net> References: <200407120739.i6C7dKTJ006026@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407120739.i6C7dKTJ006026@repoman.freebsd.org> 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/sys/kern init_sysent.c kern_kse.c syscalls.c syscalls.master src/sys/sys kse.h syscall.h syscall.mk sysproto.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, 12 Jul 2004 16:40:31 -0000 On Mon, Jul 12, 2004 at 07:39:20AM +0000, David Xu wrote: > davidxu 2004-07-12 07:39:20 UTC > > FreeBSD src repository > > Modified files: > sys/kern init_sysent.c kern_kse.c syscalls.c > syscalls.master > sys/sys kse.h syscall.h syscall.mk sysproto.h > Log: > Change kse_switchin to accept kse_thr_mailbox pointer, the syscall > will be used heavily in debugging KSE threads. This breaks libpthread > on IA64, but because libpthread was not in 5.2.1 release, I would like > to change it so we needn't to introduce another syscall. Thanks for making this a seperate commit. I'll test this on the plutos. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Mon Jul 12 16: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 A40C816A4CE; Mon, 12 Jul 2004 16:51:08 +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 76B2843D49; Mon, 12 Jul 2004 16:51:08 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i6CGp8xa085940; Mon, 12 Jul 2004 09:51:08 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) i6CGp8iZ003789; Mon, 12 Jul 2004 09:51:08 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.12.11/8.12.11/Submit) id i6CGp8nh003788; Mon, 12 Jul 2004 09:51:08 -0700 (PDT) (envelope-from marcel) Date: Mon, 12 Jul 2004 09:51:08 -0700 From: Marcel Moolenaar To: Steve Kargl Message-ID: <20040712165108.GB3691@dhcp50.pn.xcllnt.net> References: <200407120741.i6C7f183006218@repoman.freebsd.org> <20040712144442.GA33669@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040712144442.GA33669@troutmask.apl.washington.edu> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: David Xu cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpthread/arch/ia64/include pthread_md.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, 12 Jul 2004 16:51:08 -0000 On Mon, Jul 12, 2004 at 07:44:42AM -0700, Steve Kargl wrote: > On Mon, Jul 12, 2004 at 07:41:01AM +0000, David Xu wrote: > > davidxu 2004-07-12 07:41:01 UTC > > > > FreeBSD src repository > > > > Modified files: > > lib/libpthread/arch/ia64/include pthread_md.h > > Log: > > kse_switchin ABI was changed in kernel. > > > > Do we need to bump the library version number? Since ia64 is tier 2 and not widely used, I was fine with breaking the ABI in this respect. The syscall is not used for non-threaded processes, which means that pretty much all of src is unaffected. I don't think we should complicate matters by doing a version bump, because you either want to do that only on ia64, which is a pain, or you do it across the board. In that case you make it visible to all our users and possibly create complications for later when the KSE library gets support for debugging and you have your users still using the old version. Nah... it's good this way... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Mon Jul 12 17:45: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 1685A16A4CE; Mon, 12 Jul 2004 17:45:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDF5443D2D; Mon, 12 Jul 2004 17:45:37 +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 i6CHjblb025225; Mon, 12 Jul 2004 17:45:37 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CHjbw9025224; Mon, 12 Jul 2004 17:45:37 GMT (envelope-from alc) Message-Id: <200407121745.i6CHjbw9025224@repoman.freebsd.org> From: Alan Cox Date: Mon, 12 Jul 2004 17:45: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_pageout.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, 12 Jul 2004 17:45:38 -0000 alc 2004-07-12 17:45:37 UTC FreeBSD src repository Modified files: sys/vm vm_pageout.c Log: Remove an unused and unimplemented sysctl. (For the record, it was marked as unimplemented in revision 1.129 nearly six years ago.) Revision Changes Path 1.259 +1 -10 src/sys/vm/vm_pageout.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 18:35: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 C7DF716A4CE; Mon, 12 Jul 2004 18:35:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA8F443D41; Mon, 12 Jul 2004 18:35:30 +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 i6CIZUti026635; Mon, 12 Jul 2004 18:35:30 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CIZUM0026634; Mon, 12 Jul 2004 18:35:30 GMT (envelope-from rwatson) Message-Id: <200407121835.i6CIZUM0026634@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 18:35: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/netatalk aarp.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, 12 Jul 2004 18:35:30 -0000 rwatson 2004-07-12 18:35:30 UTC FreeBSD src repository Modified files: sys/netatalk aarp.c Log: Remove 'Not used' comment: at_org_code is used, just not in netatalk/. Revision Changes Path 1.32 +0 -3 src/sys/netatalk/aarp.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 18:37: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 B815716A504; Mon, 12 Jul 2004 18:37:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74B8043D4C; Mon, 12 Jul 2004 18:37: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 i6CIbVh2026799; Mon, 12 Jul 2004 18:37:31 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CIbVie026798; Mon, 12 Jul 2004 18:37:31 GMT (envelope-from rwatson) Message-Id: <200407121837.i6CIbVie026798@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 18:37: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/netatalk at_rmx.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, 12 Jul 2004 18:37:31 -0000 rwatson 2004-07-12 18:37:31 UTC FreeBSD src repository Modified files: sys/netatalk at_rmx.c Log: Imperfect synchronization solution to imperfect code: use a static 256 byte buffer in the stack for temporary printf results rather than a global buffer without synchronization. Revision Changes Path 1.8 +16 -13 src/sys/netatalk/at_rmx.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 18:39: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 D68B616A4CE; Mon, 12 Jul 2004 18:39:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B915E43D54; Mon, 12 Jul 2004 18:39:59 +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 i6CIdxLr026864; Mon, 12 Jul 2004 18:39:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CIdx3V026863; Mon, 12 Jul 2004 18:39:59 GMT (envelope-from rwatson) Message-Id: <200407121839.i6CIdx3V026863@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 18:39: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/netatalk ddp_input.c ddp_pcb.c ddp_pcb.h ddp_usrreq.c ddp_var.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, 12 Jul 2004 18:40:00 -0000 rwatson 2004-07-12 18:39:59 UTC FreeBSD src repository Modified files: sys/netatalk ddp_input.c ddp_pcb.c ddp_pcb.h ddp_usrreq.c ddp_var.h Log: Procotol control block locking for netatalk DDP. Revision Changes Path 1.25 +12 -6 src/sys/netatalk/ddp_input.c 1.44 +44 -6 src/sys/netatalk/ddp_pcb.c 1.2 +20 -0 src/sys/netatalk/ddp_pcb.h 1.42 +56 -23 src/sys/netatalk/ddp_usrreq.c 1.7 +2 -0 src/sys/netatalk/ddp_var.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 19:28: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 47BF016A4CE; Mon, 12 Jul 2004 19:28:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 290FD43D55; Mon, 12 Jul 2004 19:28:08 +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 i6CJS8EC028364; Mon, 12 Jul 2004 19:28:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CJS8xJ028363; Mon, 12 Jul 2004 19:28:08 GMT (envelope-from rwatson) Message-Id: <200407121928.i6CJS8xJ028363@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 19:28: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/netinet tcp_input.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, 12 Jul 2004 19:28:08 -0000 rwatson 2004-07-12 19:28:08 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: After each label in tcp_input(), assert the inpcbinfo and inpcb lock state that we expect. Revision Changes Path 1.250 +17 -1 src/sys/netinet/tcp_input.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 19:35: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 0C39E16A4CE; Mon, 12 Jul 2004 19:35:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E34F243D45; Mon, 12 Jul 2004 19:35:29 +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 i6CJZTHi028630; Mon, 12 Jul 2004 19:35:29 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CJZTVh028629; Mon, 12 Jul 2004 19:35:29 GMT (envelope-from rwatson) Message-Id: <200407121935.i6CJZTVh028629@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 19:35: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/netipx spx_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, 12 Jul 2004 19:35:30 -0000 rwatson 2004-07-12 19:35:29 UTC FreeBSD src repository Modified files: sys/netipx spx_usrreq.c Log: Constify 'spx_backoff'. Revision Changes Path 1.46 +1 -1 src/sys/netipx/spx_usrreq.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 19:37: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 329C316A4CE; Mon, 12 Jul 2004 19:37:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15E7843D1F; Mon, 12 Jul 2004 19:37: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 i6CJb8v6028704; Mon, 12 Jul 2004 19:37:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CJb83q028703; Mon, 12 Jul 2004 19:37:08 GMT (envelope-from rwatson) Message-Id: <200407121937.i6CJb83q028703@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 19:37: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/rpc rpcclnt.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, 12 Jul 2004 19:37:09 -0000 rwatson 2004-07-12 19:37:08 UTC FreeBSD src repository Modified files: sys/rpc rpcclnt.c Log: Constify 'rpcclnt_backoff'. Revision Changes Path 1.10 +1 -1 src/sys/rpc/rpcclnt.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 20:19: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 F092316A4CE; Mon, 12 Jul 2004 20:19:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3AB643D1D; Mon, 12 Jul 2004 20:19: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 i6CKJeia030349; Mon, 12 Jul 2004 20:19:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CKJero030348; Mon, 12 Jul 2004 20:19:40 GMT (envelope-from rwatson) Message-Id: <200407122019.i6CKJero030348@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Jul 2004 20:19: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/usr.bin/gcore elfcore.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, 12 Jul 2004 20:19:41 -0000 rwatson 2004-07-12 20:19:40 UTC FreeBSD src repository Modified files: usr.bin/gcore elfcore.c Log: Teach gcore about the pathname field of '/proc/*/map' so that it doesn't spin when its parser gets confused by a lack of end-of-line. Submitted by: Dan Nelson PR: 68839 Revision Changes Path 1.17 +3 -3 src/usr.bin/gcore/elfcore.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 20:49: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 B0DC516A4CE; Mon, 12 Jul 2004 20:49:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A958143D1D; Mon, 12 Jul 2004 20:49:26 +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 i6CKnQn7031543; Mon, 12 Jul 2004 20:49:26 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CKnQ6w031542; Mon, 12 Jul 2004 20:49:26 GMT (envelope-from njl) Message-Id: <200407122049.i6CKnQ6w031542@repoman.freebsd.org> From: Nate Lawson Date: Mon, 12 Jul 2004 20:49: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/dev/fdc fdc.c fdc_isa.c fdc_pccard.c fdcvar.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, 12 Jul 2004 20:49:26 -0000 njl 2004-07-12 20:49:26 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c fdc_isa.c fdc_pccard.c fdcvar.h Log: Update in preparation for adding the ACPI attachment. * Add an fdtype ivar. This will be the equivalent of fd->type. * Move enabling the FIFO to the end of attach. * Unify reset code into fdc_initial_reset(). * Add fdc_write_ivar(). * Update isa and pccard attachments accordingly. * Set the flags unconditionally in probe since they may be overridden by other probe routines. Both before and now, we're depending on probe being called a final time on the winning driver so the flags we get are the ones we intended. * Use the bus accessor macros instead of defining our own. * Remove duplicate assigns of fd->type. Revision Changes Path 1.277 +71 -45 src/sys/dev/fdc/fdc.c 1.2 +8 -11 src/sys/dev/fdc/fdc_isa.c 1.3 +5 -12 src/sys/dev/fdc/fdc_pccard.c 1.2 +10 -0 src/sys/dev/fdc/fdcvar.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 20:53: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 CC9CE16A4CE; Mon, 12 Jul 2004 20:53:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE21243D2D; Mon, 12 Jul 2004 20:53:04 +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 i6CKr4W6031786; Mon, 12 Jul 2004 20:53:04 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CKr4GZ031785; Mon, 12 Jul 2004 20:53:04 GMT (envelope-from njl) Message-Id: <200407122053.i6CKr4GZ031785@repoman.freebsd.org> From: Nate Lawson Date: Mon, 12 Jul 2004 20: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/dev/acpica acpi_battery.c acpi_cmbat.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: Mon, 12 Jul 2004 20:53:05 -0000 njl 2004-07-12 20:53:04 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c acpi_cmbat.c acpivar.h Log: Add the ability to detach a battery. Now batteries that are detached are also removed from the battery list. Revision Changes Path 1.9 +16 -0 src/sys/dev/acpica/acpi_battery.c 1.32 +16 -1 src/sys/dev/acpica/acpi_cmbat.c 1.77 +1 -0 src/sys/dev/acpica/acpivar.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 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 2428216A4CE; Mon, 12 Jul 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 0712F43D3F; Mon, 12 Jul 2004 21:15: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 i6CLFarH032919; Mon, 12 Jul 2004 21:15:36 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLFaJE032918; Mon, 12 Jul 2004 21:15:36 GMT (envelope-from njl) Message-Id: <200407122115.i6CLFaJE032918@repoman.freebsd.org> From: Nate Lawson Date: Mon, 12 Jul 2004 21:15: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/dev/fdc fdc_isa.c fdc_pccard.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, 12 Jul 2004 21:15:37 -0000 njl 2004-07-12 21:15:36 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c fdc_pccard.c Log: Remove unnecessary softc bzero calls. Revision Changes Path 1.3 +0 -1 src/sys/dev/fdc/fdc_isa.c 1.4 +0 -1 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:17: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 DB81516A4CE; Mon, 12 Jul 2004 21:17:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE38B43D1F; Mon, 12 Jul 2004 21:17:51 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLHpue032997; Mon, 12 Jul 2004 21:17:51 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLHpUf032996; Mon, 12 Jul 2004 21:17:51 GMT (envelope-from cognet) Message-Id: <200407122117.i6CLHpUf032996@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:17: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/arm/include kdb.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, 12 Jul 2004 21:17:52 -0000 cognet 2004-07-12 21:17:51 UTC FreeBSD src repository Added files: sys/arm/include kdb.h Log: Import a kdb.h for arm, which contains stubs right now. Revision Changes Path 1.1 +50 -0 src/sys/arm/include/kdb.h (new) From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:18: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 3AF9B16A4CE; Mon, 12 Jul 2004 21:18:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CEAE43D3F; Mon, 12 Jul 2004 21:18:31 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLIVuT033050; Mon, 12 Jul 2004 21:18:31 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLIUj1033049; Mon, 12 Jul 2004 21:18:30 GMT (envelope-from cognet) Message-Id: <200407122118.i6CLIUj1033049@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:18: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/arm/include bus_memio.h bus_pio.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, 12 Jul 2004 21:18:31 -0000 cognet 2004-07-12 21:18:30 UTC FreeBSD src repository Added files: sys/arm/include bus_memio.h bus_pio.h Log: Import bus_memio.h and bus_pio.h for arm. Revision Changes Path 1.1 +33 -0 src/sys/arm/include/bus_memio.h (new) 1.1 +33 -0 src/sys/arm/include/bus_pio.h (new) From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:19: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 CE75416A4CE; Mon, 12 Jul 2004 21:19:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1DE043D1F; Mon, 12 Jul 2004 21:19:22 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLJMSa033098; Mon, 12 Jul 2004 21:19:22 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLJMX7033097; Mon, 12 Jul 2004 21:19:22 GMT (envelope-from cognet) Message-Id: <200407122119.i6CLJMX7033097@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:19: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/arm/include pcb.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, 12 Jul 2004 21:19:22 -0000 cognet 2004-07-12 21:19:22 UTC FreeBSD src repository Modified files: sys/arm/include pcb.h Log: Prototype makectx(). Revision Changes Path 1.2 +2 -0 src/sys/arm/include/pcb.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:19: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 D3C5316A4D0; Mon, 12 Jul 2004 21:19:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B55DB43D41; Mon, 12 Jul 2004 21:19:43 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLJhmd033133; Mon, 12 Jul 2004 21:19:43 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLJhY6033132; Mon, 12 Jul 2004 21:19:43 GMT (envelope-from cognet) Message-Id: <200407122119.i6CLJhY6033132@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:19: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/arm/arm 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: Mon, 12 Jul 2004 21:19:44 -0000 cognet 2004-07-12 21:19:43 UTC FreeBSD src repository Modified files: sys/arm/arm machdep.c Log: Implement makectx(). Revision Changes Path 1.2 +19 -0 src/sys/arm/arm/machdep.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:20: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 C90DB16A4CE; Mon, 12 Jul 2004 21:20:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB36D43D39; Mon, 12 Jul 2004 21:20:38 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLKcQv033284; Mon, 12 Jul 2004 21:20:38 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLKcxL033283; Mon, 12 Jul 2004 21:20:38 GMT (envelope-from cognet) Message-Id: <200407122120.i6CLKcxL033283@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:20: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/sys/arm/include cpufunc.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, 12 Jul 2004 21:20:38 -0000 cognet 2004-07-12 21:20:38 UTC FreeBSD src repository Modified files: sys/arm/include cpufunc.h Log: Implement a stub breakpoint(). Revision Changes Path 1.2 +5 -0 src/sys/arm/include/cpufunc.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:22: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 7922916A4CF; Mon, 12 Jul 2004 21:22:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A79A43D31; Mon, 12 Jul 2004 21:22:40 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLMejZ033494; Mon, 12 Jul 2004 21:22:40 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLMeQP033493; Mon, 12 Jul 2004 21:22:40 GMT (envelope-from cognet) Message-Id: <200407122122.i6CLMeQP033493@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:22: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/arm/include pmap.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, 12 Jul 2004 21:22:40 -0000 cognet 2004-07-12 21:22:40 UTC FreeBSD src repository Modified files: sys/arm/include pmap.h Log: Forward declare "struct pcb", so that one does not need to include before including . Revision Changes Path 1.2 +2 -0 src/sys/arm/include/pmap.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:23: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 7C9E616A4CE; Mon, 12 Jul 2004 21:23:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EB8E43D2D; Mon, 12 Jul 2004 21:23:58 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLNwA7033595; Mon, 12 Jul 2004 21:23:58 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLNwxY033594; Mon, 12 Jul 2004 21:23:58 GMT (envelope-from cognet) Message-Id: <200407122123.i6CLNwxY033594@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:23: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/arm/include setjmp.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, 12 Jul 2004 21:23:58 -0000 cognet 2004-07-12 21:23:58 UTC FreeBSD src repository Modified files: sys/arm/include setjmp.h Log: Protect setjmp.h with #ifndef _MACHINE_SETJMP_H_. Revision Changes Path 1.2 +3 -0 src/sys/arm/include/setjmp.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:24: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 A197416A4CE; Mon, 12 Jul 2004 21:24:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83E2743D1F; Mon, 12 Jul 2004 21:24:21 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLOL6M033633; Mon, 12 Jul 2004 21:24:21 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLOLF5033632; Mon, 12 Jul 2004 21:24:21 GMT (envelope-from cognet) Message-Id: <200407122124.i6CLOLF5033632@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:24: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/arm/include frame.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, 12 Jul 2004 21:24:22 -0000 cognet 2004-07-12 21:24:21 UTC FreeBSD src repository Modified files: sys/arm/include frame.h Log: Remove the kbd_trap() declaration. Revision Changes Path 1.2 +0 -2 src/sys/arm/include/frame.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:25: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 E915616A4CE; Mon, 12 Jul 2004 21:25:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC27C43D2D; Mon, 12 Jul 2004 21:25:01 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLP1bx033704; Mon, 12 Jul 2004 21:25:01 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLP1I2033703; Mon, 12 Jul 2004 21:25:01 GMT (envelope-from cognet) Message-Id: <200407122125.i6CLP1I2033703@repoman.freebsd.org> From: Olivier Houchard Date: Mon, 12 Jul 2004 21:25: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/arm/include db_machdep.h src/sys/arm/arm db_interface.c db_trace.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, 12 Jul 2004 21:25:02 -0000 cognet 2004-07-12 21:25:01 UTC FreeBSD src repository Modified files: sys/arm/include db_machdep.h sys/arm/arm db_interface.c db_trace.c Log: Update to kdb. Revision Changes Path 1.2 +31 -133 src/sys/arm/arm/db_interface.c 1.2 +13 -4 src/sys/arm/arm/db_trace.c 1.2 +2 -6 src/sys/arm/include/db_machdep.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:42: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 1AE6A16A4CE; Mon, 12 Jul 2004 21:42:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F215043D39; Mon, 12 Jul 2004 21:42:33 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CLgXlJ034304; Mon, 12 Jul 2004 21:42:33 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLgXhR034303; Mon, 12 Jul 2004 21:42:33 GMT (envelope-from dwmalone) Message-Id: <200407122142.i6CLgXhR034303@repoman.freebsd.org> From: David Malone Date: Mon, 12 Jul 2004 21:42: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 uipc_socket.c src/sys/nfsclient nfs_socket.c src/sys/sys socketvar.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, 12 Jul 2004 21:42:34 -0000 dwmalone 2004-07-12 21:42:33 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c sys/nfsclient nfs_socket.c sys/sys socketvar.h Log: Rename Alfred's kern_setsockopt to so_setsockopt, as this seems a a better name. I have a kern_[sg]etsockopt which I plan to commit shortly, but the arguments to these function will be quite different from so_setsockopt. Approved by: alfred Revision Changes Path 1.203 +1 -1 src/sys/kern/uipc_socket.c 1.113 +2 -2 src/sys/nfsclient/nfs_socket.c 1.133 +2 -2 src/sys/sys/socketvar.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 21:59: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 C36FB16A4CE; Mon, 12 Jul 2004 21:59:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6CC843D31; Mon, 12 Jul 2004 21:59:06 +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 i6CLx6xd034762; Mon, 12 Jul 2004 21:59:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CLx63P034761; Mon, 12 Jul 2004 21:59:06 GMT (envelope-from imp) Message-Id: <200407122159.i6CLx63P034761@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Jul 2004 21:59: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/modules/usb 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, 12 Jul 2004 21:59:06 -0000 imp 2004-07-12 21:59:06 UTC FreeBSD src repository Modified files: sys/modules/usb Makefile Log: Remove stray line with just a tab Remove usbdevs_data.h, it isn't used by the module Noticed by: Pawel Worach Revision Changes Path 1.15 +2 -2 src/sys/modules/usb/Makefile From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:13: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 6B9C516A4CE; Mon, 12 Jul 2004 22:13:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EACE43D45; Mon, 12 Jul 2004 22:13:27 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMDRKt035196; Mon, 12 Jul 2004 22:13:27 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMDRQt035195; Mon, 12 Jul 2004 22:13:27 GMT (envelope-from grehan) Message-Id: <200407122213.i6CMDRQt035195@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:13: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/conf files.powerpc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Jul 2004 22:13:27 -0000 grehan 2004-07-12 22:13:27 UTC FreeBSD src repository Modified files: sys/conf files.powerpc Log: db_memrw.c has been subsumed into db_interface.c ala sparc64 Revision Changes Path 1.39 +0 -1 src/sys/conf/files.powerpc From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:14: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 D0DB716A4CE; Mon, 12 Jul 2004 22:14:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2EB643D41; Mon, 12 Jul 2004 22:14:21 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMELNh035239; Mon, 12 Jul 2004 22:14:21 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMELoC035238; Mon, 12 Jul 2004 22:14:21 GMT (envelope-from grehan) Message-Id: <200407122214.i6CMELoC035238@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:14: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/powerpc/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, 12 Jul 2004 22:14:22 -0000 grehan 2004-07-12 22:14:21 UTC FreeBSD src repository Modified files: sys/powerpc/conf GENERIC Log: Add new KDB option, and also drop in long-held fxp/dc eth drivers. Revision Changes Path 1.36 +4 -1 src/sys/powerpc/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:15: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 6B24B16A4CE; Mon, 12 Jul 2004 22:15:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C62A43D39; Mon, 12 Jul 2004 22:15:03 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMF3V1035285; Mon, 12 Jul 2004 22:15:03 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMF305035284; Mon, 12 Jul 2004 22:15:03 GMT (envelope-from grehan) Message-Id: <200407122215.i6CMF305035284@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:15: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/powerpc/include kdb.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, 12 Jul 2004 22:15:03 -0000 grehan 2004-07-12 22:15:03 UTC FreeBSD src repository Added files: sys/powerpc/include kdb.h Log: kdb.h for PowerPC. Stubs for now. Revision Changes Path 1.1 +49 -0 src/sys/powerpc/include/kdb.h (new) From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:16: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 B35FB16A4CE; Mon, 12 Jul 2004 22:16:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9568B43D5D; Mon, 12 Jul 2004 22:16:04 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMG4JO035397; Mon, 12 Jul 2004 22:16:04 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMG4NH035396; Mon, 12 Jul 2004 22:16:04 GMT (envelope-from grehan) Message-Id: <200407122216.i6CMG4NH035396@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:16: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/powerpc/include cpufunc.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, 12 Jul 2004 22:16:04 -0000 grehan 2004-07-12 22:16:04 UTC FreeBSD src repository Modified files: sys/powerpc/include cpufunc.h Log: DDB -> KDB, and rename low-level trap handler to avoid name conflict. Revision Changes Path 1.20 +4 -4 src/sys/powerpc/include/cpufunc.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:16: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 D1A1616A4CE; Mon, 12 Jul 2004 22:16:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B119343D5F; Mon, 12 Jul 2004 22:16:50 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMGorf035445; Mon, 12 Jul 2004 22:16:50 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMGoXv035444; Mon, 12 Jul 2004 22:16:50 GMT (envelope-from grehan) Message-Id: <200407122216.i6CMGoXv035444@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:16: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/sys/powerpc/include db_machdep.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, 12 Jul 2004 22:16:51 -0000 grehan 2004-07-12 22:16:50 UTC FreeBSD src repository Modified files: sys/powerpc/include db_machdep.h Log: Remove old NetBSD-derived unused code and stuff that is now obsolete due to KDB. Revision Changes Path 1.6 +12 -33 src/sys/powerpc/include/db_machdep.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22: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 38A9816A4CE; Mon, 12 Jul 2004 22:17:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B70D43D48; Mon, 12 Jul 2004 22:17:21 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMHLCs035483; Mon, 12 Jul 2004 22:17:21 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMHKvQ035482; Mon, 12 Jul 2004 22:17:20 GMT (envelope-from grehan) Message-Id: <200407122217.i6CMHKvQ035482@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22: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/sys/powerpc/include pcb.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, 12 Jul 2004 22:17:21 -0000 grehan 2004-07-12 22:17:20 UTC FreeBSD src repository Modified files: sys/powerpc/include pcb.h Log: Add prototype for KDB's makectx routine Revision Changes Path 1.8 +2 -0 src/sys/powerpc/include/pcb.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22: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 A7A6416A4CF; Mon, 12 Jul 2004 22:18:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8983943D54; Mon, 12 Jul 2004 22:18:02 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMI2aE035571; Mon, 12 Jul 2004 22:18:02 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMI259035570; Mon, 12 Jul 2004 22:18:02 GMT (envelope-from grehan) Message-Id: <200407122218.i6CMI259035570@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22: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/powerpc/include pcpu.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, 12 Jul 2004 22:18:04 -0000 grehan 2004-07-12 22:18:02 UTC FreeBSD src repository Modified files: sys/powerpc/include pcpu.h Log: Gratuitous namechange to avoid low-level association with ddb. Revision Changes Path 1.22 +1 -1 src/sys/powerpc/include/pcpu.h From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:20: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 F2A4F16A4CE; Mon, 12 Jul 2004 22:20:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4ED243D48; Mon, 12 Jul 2004 22:20:01 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMK1tF035641; Mon, 12 Jul 2004 22:20:01 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMK1iK035640; Mon, 12 Jul 2004 22:20:01 GMT (envelope-from grehan) Message-Id: <200407122220.i6CMK1iK035640@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:20: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/powerpc/powerpc db_interface.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, 12 Jul 2004 22:20:02 -0000 grehan 2004-07-12 22:20:01 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc db_interface.c Log: Remove unused NetBSD code. Bring mem r/w routines into here in line with sparc64, although keep the size deref checks: they are useful when accessing PCI space where some devices may not implement byte access. Revision Changes Path 1.4 +61 -341 src/sys/powerpc/powerpc/db_interface.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:21: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 3882016A4CE; Mon, 12 Jul 2004 22:21:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B6E543D41; Mon, 12 Jul 2004 22:21:35 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMLY8I035769; Mon, 12 Jul 2004 22:21:35 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMLYtD035768; Mon, 12 Jul 2004 22:21:34 GMT (envelope-from grehan) Message-Id: <200407122221.i6CMLYtD035768@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:21: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/powerpc/powerpc db_trace.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, 12 Jul 2004 22:21:35 -0000 grehan 2004-07-12 22:21:34 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc db_trace.c Log: Bring into line with KDB. Bring in NetBSD updates for backtrace routine, although it really needs a decent re-work. Revision Changes Path 1.4 +155 -149 src/sys/powerpc/powerpc/db_trace.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:22: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 8C77616A4CE; Mon, 12 Jul 2004 22:22:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC8743D31; Mon, 12 Jul 2004 22:22:09 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMM9FB035893; Mon, 12 Jul 2004 22:22:09 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMM9xD035892; Mon, 12 Jul 2004 22:22:09 GMT (envelope-from grehan) Message-Id: <200407122222.i6CMM9xD035892@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:22: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/powerpc/powerpc genassym.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, 12 Jul 2004 22:22:09 -0000 grehan 2004-07-12 22:22:09 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc genassym.c Log: Catch up with gratuitous ddb -> db renaming Revision Changes Path 1.53 +1 -1 src/sys/powerpc/powerpc/genassym.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:22: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 55C0016A4D2; Mon, 12 Jul 2004 22:22:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3784D43D41; Mon, 12 Jul 2004 22:22:54 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMMsKV035932; Mon, 12 Jul 2004 22:22:54 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMMsYZ035931; Mon, 12 Jul 2004 22:22:54 GMT (envelope-from grehan) Message-Id: <200407122222.i6CMMsYZ035931@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:22: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/powerpc/powerpc locore.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, 12 Jul 2004 22:22:54 -0000 grehan 2004-07-12 22:22:54 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc locore.S Log: No need for ddb option. Never a need for ipkdb option. Revision Changes Path 1.18 +0 -2 src/sys/powerpc/powerpc/locore.S From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:25: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 0EAF616A4CF; Mon, 12 Jul 2004 22:25:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E37B543D46; Mon, 12 Jul 2004 22:25:09 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMP92f035995; Mon, 12 Jul 2004 22:25:09 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMP9vC035994; Mon, 12 Jul 2004 22:25:09 GMT (envelope-from grehan) Message-Id: <200407122225.i6CMP9vC035994@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:25: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/powerpc/powerpc 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: Mon, 12 Jul 2004 22:25:10 -0000 grehan 2004-07-12 22:25:09 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc machdep.c Log: - DDB -> KDB, with kdb routines - ddb -> db for low-level trapcode - implement makectx. I think it only matters that the stack is setup correctly. - bring over ddb_trap_glue and rename to db_trap_glue Revision Changes Path 1.70 +54 -23 src/sys/powerpc/powerpc/machdep.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:26: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 31FA016A4CE; Mon, 12 Jul 2004 22:26:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1411F43D39; Mon, 12 Jul 2004 22:26:21 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMQKQj036144; Mon, 12 Jul 2004 22:26:20 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMQK4b036143; Mon, 12 Jul 2004 22:26:20 GMT (envelope-from grehan) Message-Id: <200407122226.i6CMQK4b036143@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:26: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/powerpc/powerpc 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: Mon, 12 Jul 2004 22:26:21 -0000 grehan 2004-07-12 22:26:20 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc trap.c Log: Bring into KDB new order. Revision Changes Path 1.46 +6 -9 src/sys/powerpc/powerpc/trap.c From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:32: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 7747316A4CE; Mon, 12 Jul 2004 22:32:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58DE643D1D; Mon, 12 Jul 2004 22:32:08 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6CMW8iC036316; Mon, 12 Jul 2004 22:32:08 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMW8Fq036315; Mon, 12 Jul 2004 22:32:08 GMT (envelope-from grehan) Message-Id: <200407122232.i6CMW8Fq036315@repoman.freebsd.org> From: Peter Grehan Date: Mon, 12 Jul 2004 22:32: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/powerpc/powerpc trap_subr.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, 12 Jul 2004 22:32:08 -0000 grehan 2004-07-12 22:32:08 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc trap_subr.S Log: Rename low-level code ddb -> db. Use KDB instead of DDB. Fix bug in setup of stack frame where 8 bytes wasn't being saved for the callee's frame pointer and saved LR. Revision Changes Path 1.11 +37 -37 src/sys/powerpc/powerpc/trap_subr.S From owner-cvs-src@FreeBSD.ORG Mon Jul 12 22:57: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 8A18616A4CE; Mon, 12 Jul 2004 22:57:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DA8B43D39; Mon, 12 Jul 2004 22:57:06 +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 i6CMv6Or037142; Mon, 12 Jul 2004 22:57:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CMv6Rf037141; Mon, 12 Jul 2004 22:57:06 GMT (envelope-from imp) Message-Id: <200407122257.i6CMv6Rf037141@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Jul 2004 22:57: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/dev/usb 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: Mon, 12 Jul 2004 22:57:06 -0000 imp 2004-07-12 22:57:06 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs Log: Remove the instructions for regenerating usbdevs.h: that's now no longer necessary. Revision Changes Path 1.188 +0 -13 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Mon Jul 12 23:11: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 ADB8916A4CF; Mon, 12 Jul 2004 23:11:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC1E43D3F; Mon, 12 Jul 2004 23:11:09 +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 i6CNB9U7037681; Mon, 12 Jul 2004 23:11:09 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6CNB9BK037680; Mon, 12 Jul 2004 23:11:09 GMT (envelope-from imp) Message-Id: <200407122311.i6CNB9BK037680@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Jul 2004 23:11: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/dev/usb 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: Mon, 12 Jul 2004 23:11:09 -0000 imp 2004-07-12 23:11:09 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs Log: Remove even more references to generating usbdevs_data.h, et al. Noticed by: njl Revision Changes Path 1.189 +9 -9 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Tue Jul 13 02:18: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 710DC16A4DB; Tue, 13 Jul 2004 02:18:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5150C43D53; Tue, 13 Jul 2004 02:18:21 +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 i6D2ILhW042182; Tue, 13 Jul 2004 02:18:21 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D2ILI3042181; Tue, 13 Jul 2004 02:18:21 GMT (envelope-from tjr) Message-Id: <200407130218.i6D2ILI3042181@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 13 Jul 2004 02:18: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/usr.bin/nl nl.1 nl.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, 13 Jul 2004 02:18:21 -0000 tjr 2004-07-13 02:18:21 UTC FreeBSD src repository Modified files: usr.bin/nl nl.1 nl.c Log: Add support for multibyte characters. Revision Changes Path 1.13 +12 -5 src/usr.bin/nl/nl.1 1.9 +35 -17 src/usr.bin/nl/nl.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 02:37: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 7374D16A4CE; Tue, 13 Jul 2004 02:37:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557AA43D1F; Tue, 13 Jul 2004 02:37:41 +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 i6D2bfQs042721; Tue, 13 Jul 2004 02:37:41 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D2bfC2042720; Tue, 13 Jul 2004 02:37:41 GMT (envelope-from imp) Message-Id: <200407130237.i6D2bfC2042720@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Jul 2004 02:37: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/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: Tue, 13 Jul 2004 02:37:41 -0000 imp 2004-07-13 02:37:41 UTC FreeBSD src repository Modified files: sys/conf files Log: pccard no longer requires a count because the floppy driver that nominally had a non-working reference to card.h has been removed. Revision Changes Path 1.930 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Tue Jul 13 02:42: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 8CB1316A4CE; Tue, 13 Jul 2004 02:42:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E7CD43D2F; Tue, 13 Jul 2004 02:42:23 +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 i6D2gNXH042977; Tue, 13 Jul 2004 02:42:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D2gNca042976; Tue, 13 Jul 2004 02:42:23 GMT (envelope-from imp) Message-Id: <200407130242.i6D2gNca042976@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Jul 2004 02:42: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/fdc fdc.c fdc_isa.c fdc_pccard.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, 13 Jul 2004 02:42:23 -0000 imp 2004-07-13 02:42:23 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c fdc_isa.c fdc_pccard.c Log: Don't depend on implicit include of machine/bus.h in sys/rman.h, but instead explicitly include it. Revision Changes Path 1.278 +1 -0 src/sys/dev/fdc/fdc.c 1.4 +2 -0 src/sys/dev/fdc/fdc_isa.c 1.5 +2 -0 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 02:44: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 5978816A4CE; Tue, 13 Jul 2004 02:44:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D2BE43D2F; Tue, 13 Jul 2004 02:44:40 +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 i6D2iesI043034; Tue, 13 Jul 2004 02:44:40 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D2iewY043033; Tue, 13 Jul 2004 02:44:40 GMT (envelope-from imp) Message-Id: <200407130244.i6D2iewY043033@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Jul 2004 02:44: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/dev/fdc fdc.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, 13 Jul 2004 02:44:40 -0000 imp 2004-07-13 02:44:40 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c Log: Set fdc_dev in attach Revision Changes Path 1.279 +1 -0 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 02:49: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 80C3216A4CE; Tue, 13 Jul 2004 02:49:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A11643D39; Tue, 13 Jul 2004 02:49: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 i6D2nMah043457; Tue, 13 Jul 2004 02:49:22 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D2nMtO043456; Tue, 13 Jul 2004 02:49:22 GMT (envelope-from alc) Message-Id: <200407130249.i6D2nMtO043456@repoman.freebsd.org> From: Alan Cox Date: Tue, 13 Jul 2004 02:49: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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/arm/arm pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/kern kern_exec.c kern_exit.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, 13 Jul 2004 02:49:22 -0000 alc 2004-07-13 02:49:22 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/arm/arm pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/kern kern_exec.c kern_exit.c Log: Push down the acquisition and release of the page queues lock into pmap_remove_pages(). (The implementation of pmap_remove_pages() is optional. If pmap_remove_pages() is unimplemented, the acquisition and release of the page queues lock is unnecessary.) Remove spl calls from the alpha, arm, and ia64 pmap_remove_pages(). Revision Changes Path 1.155 +2 -3 src/sys/alpha/alpha/pmap.c 1.483 +2 -1 src/sys/amd64/amd64/pmap.c 1.5 +2 -3 src/sys/arm/arm/pmap.c 1.484 +2 -1 src/sys/i386/i386/pmap.c 1.137 +2 -3 src/sys/ia64/ia64/pmap.c 1.246 +0 -2 src/sys/kern/kern_exec.c 1.240 +0 -2 src/sys/kern/kern_exit.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 04:30: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 72E2B16A4CE; Tue, 13 Jul 2004 04:30:52 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id B429843D4C; Tue, 13 Jul 2004 04:30:51 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.11/8.12.11) with ESMTP id i6D4UnZO090739; Tue, 13 Jul 2004 08:30:49 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.11/8.12.11/Submit) id i6D4Umr1090738; Tue, 13 Jul 2004 08:30:48 +0400 (MSD) (envelope-from ache) Date: Tue, 13 Jul 2004 08:30:48 +0400 From: Andrey Chernov To: Tim Kientzle Message-ID: <20040713043048.GA90680@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200407121315.i6CDFESB017285@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407121315.i6CDFESB017285@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.5; VDF 6.26.0.23 (host: pobrecita.freebsd.ru) cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/tar 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: Tue, 13 Jul 2004 04:30:52 -0000 On Mon, Jul 12, 2004 at 01:15:14PM +0000, Tim Kientzle wrote: > kientzle 2004-07-12 13:15:13 UTC > > FreeBSD src repository > > Modified files: > usr.bin/tar read.c > Log: > Mimic ls(1) by putting an extra space before the year in old dates 1) Your ls-style output put month/day in wrong order for some locales. Look like GNU tar (our mod) or ls does it properly. 2) I don't see time (HH:MM) in your ls-style output, but see it in GNU tar one. Is it bug? -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Tue Jul 13 04:35: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 D27E316A4CE; Tue, 13 Jul 2004 04:35:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3DE443D49; Tue, 13 Jul 2004 04:35:43 +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 i6D4ZhVm046581; Tue, 13 Jul 2004 04:35:43 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D4Zhik046580; Tue, 13 Jul 2004 04:35:43 GMT (envelope-from tjr) Message-Id: <200407130435.i6D4Zhik046580@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 13 Jul 2004 04:35: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/usr.bin/sed process.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, 13 Jul 2004 04:35:44 -0000 tjr 2004-07-13 04:35:43 UTC FreeBSD src repository Modified files: usr.bin/sed process.c Log: Overhaul lputs() to deal with multibyte characters, characters that take up more than one column position, and null bytes. Revision Changes Path 1.36 +53 -24 src/usr.bin/sed/process.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 05:42: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 8F6DB16A4CE; Tue, 13 Jul 2004 05:42:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72DFC43D45; Tue, 13 Jul 2004 05:42: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 i6D5gxU6048319; Tue, 13 Jul 2004 05:42:59 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D5gxJb048318; Tue, 13 Jul 2004 05:42:59 GMT (envelope-from alfred) Message-Id: <200407130542.i6D5gxJb048318@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 13 Jul 2004 05:42: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/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: Tue, 13 Jul 2004 05:42:59 -0000 alfred 2004-07-13 05:42:59 UTC FreeBSD src repository Modified files: sys/nfsclient nfs_socket.c Log: Turn off SO_REUSEADDR and SO_REUSEPORT, they were causing EADDRINUSE to be returned from the protocol stack. Pointy hat to me for not groking what those options _really_ mean. Revision Changes Path 1.114 +1 -5 src/sys/nfsclient/nfs_socket.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 06:54: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 89F2B16A4CF; Tue, 13 Jul 2004 06:54:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D1C543D1F; Tue, 13 Jul 2004 06:54: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 i6D6sNVG050746; Tue, 13 Jul 2004 06:54:23 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D6sNZw050745; Tue, 13 Jul 2004 06:54:23 GMT (envelope-from alc) Message-Id: <200407130654.i6D6sNZw050745@repoman.freebsd.org> From: Alan Cox Date: Tue, 13 Jul 2004 06:54: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/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: Tue, 13 Jul 2004 06:54:23 -0000 alc 2004-07-13 06:54:23 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c Log: Simplify pmap_protect(). Revision Changes Path 1.138 +3 -6 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:05: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 4620816A4CE; Tue, 13 Jul 2004 07:05:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AD6B43D2D; Tue, 13 Jul 2004 07:05:39 +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 i6D75dv8051241; Tue, 13 Jul 2004 07:05:39 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D75d4S051240; Tue, 13 Jul 2004 07:05:39 GMT (envelope-from alfred) Message-Id: <200407130705.i6D75d4S051240@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 13 Jul 2004 07:05: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/nfsserver nfs_srvsock.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, 13 Jul 2004 07:05:39 -0000 alfred 2004-07-13 07:05:39 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_srvsock.c Log: Do not call sorecieve() in the context of a socket callback as it causes lock order reversals so->inpcb since we're called with the socket lock held. Revision Changes Path 1.91 +5 -3 src/sys/nfsserver/nfs_srvsock.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:07: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 466F116A4CE; Tue, 13 Jul 2004 07:07:21 +0000 (GMT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 087E543D2F; Tue, 13 Jul 2004 07:07:21 +0000 (GMT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 23FAE530C; Tue, 13 Jul 2004 09:07:20 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 984E15308; Tue, 13 Jul 2004 09:07:14 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 76C11B85E; Tue, 13 Jul 2004 09:07:14 +0200 (CEST) To: Warner Losh References: <200407130237.i6D2bfC2042720@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Tue, 13 Jul 2004 09:07:14 +0200 In-Reply-To: <200407130237.i6D2bfC2042720@repoman.freebsd.org> (Warner Losh's message of "Tue, 13 Jul 2004 02:37:41 +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 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 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: Tue, 13 Jul 2004 07:07:21 -0000 Warner Losh writes: > Log: > pccard no longer requires a count because the floppy driver that > nominally had a non-working reference to card.h has been removed. This breaks GENERIC on i386/pc98. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:20: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 1B74E16A4CE; Tue, 13 Jul 2004 07:20:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2A0043D2D; Tue, 13 Jul 2004 07:20:10 +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 i6D7KAhR051767; Tue, 13 Jul 2004 07:20:10 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D7KABZ051766; Tue, 13 Jul 2004 07:20:10 GMT (envelope-from davidxu) Message-Id: <200407130720.i6D7KABZ051766@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 07:20: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/sys kse.h proc.h signalvar.h src/sys/kern kern_exit.c kern_sig.c 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: Tue, 13 Jul 2004 07:20:11 -0000 davidxu 2004-07-13 07:20:10 UTC FreeBSD src repository Modified files: sys/sys kse.h proc.h signalvar.h sys/kern kern_exit.c kern_sig.c kern_thread.c Log: Add code to support debugging threaded process. 1. Add tm_lwpid into kse_thr_mailbox to indicate which kernel thread current user thread is running on. Add tm_dflags into kse_thr_mailbox, the flags is written by debugger, it tells UTS and kernel what should be done when the process is being debugged, current, there two flags TMDF_SSTEP and TMDF_DONOTRUNUSER. TMDF_SSTEP is used to tell kernel to turn on single stepping, or turn off if it is not set. TMDF_DONOTRUNUSER is used to tell kernel to schedule upcall whenever possible, to UTS, it means do not run the user thread until debugger clears it, this behaviour is necessary because gdb wants to resume only one thread when the thread's pc is at a breakpoint, and thread needs to go forward, in order to avoid other threads sneak pass the breakpoints, it needs to remove breakpoint, only wants one thread to go. Also, add km_lwp to kse_mailbox, the lwp id is copied to kse_thr_mailbox at context switch time when process is not being debugged, so when process is attached, debugger can map kernel thread to user thread. 2. Add p_xthread to proc strcuture and td_xsig to thread structure. p_xthread is used by a thread when it wants to report event to debugger, every thread can set the pointer, especially, when it is used in ptracestop, it is the last thread reporting event will win the race. Every thread has a td_xsig to exchange signal with debugger, thread uses TDF_XSIG flag to indicate it is reporting signal to debugger, if the flag is not cleared, thread will keep retrying until it is cleared by debugger, p_xthread may be used by debugger to indicate CURRENT thread. The p_xstat is still in proc structure to keep wait() to work, in future, we may just use td_xsig. 3. Add TDF_DBSUSPEND flag, the flag is used by debugger to suspend a thread. When process stops, debugger can set the flag for thread, thread will check the flag in thread_suspend_check, enters a loop, unless it is cleared by debugger, process is detached or process is existing. The flag is also checked in ptracestop, so debugger can temporarily suspend a thread even if the thread wants to exchange signal. 4. Current, in ptrace, we always resume all threads, but if a thread has already a TDF_DBSUSPEND flag set by debugger, it won't run. Encouraged by: marcel, julian, deischen Revision Changes Path 1.241 +1 -1 src/sys/kern/kern_exit.c 1.284 +81 -44 src/sys/kern/kern_sig.c 1.187 +4 -1 src/sys/kern/kern_thread.c 1.23 +31 -21 src/sys/sys/kse.h 1.386 +5 -2 src/sys/sys/proc.h 1.67 +1 -1 src/sys/sys/signalvar.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:22: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 4D1C316A4CE; Tue, 13 Jul 2004 07:22:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47E6543D5C; Tue, 13 Jul 2004 07:22:56 +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 i6D7Mu0S052044; Tue, 13 Jul 2004 07:22:56 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D7MuTL052043; Tue, 13 Jul 2004 07:22:56 GMT (envelope-from davidxu) Message-Id: <200407130722.i6D7MuTL052043@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 07:22: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/amd64/amd64 machdep.c src/sys/i386/i386 machdep.c src/sys/ia64/ia64 machdep.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc machdep.c src/sys/sparc64/sparc64 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, 13 Jul 2004 07:22:56 -0000 davidxu 2004-07-13 07:22:56 UTC FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c sys/i386/i386 machdep.c sys/ia64/ia64 machdep.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c sys/sparc64/sparc64 machdep.c Log: Add ptrace_clear_single_step(), alpha already has it for years, the function will be used by ptrace to clear a thread's single step state. Revision Changes Path 1.614 +7 -0 src/sys/amd64/amd64/machdep.c 1.595 +7 -0 src/sys/i386/i386/machdep.c 1.181 +8 -0 src/sys/ia64/ia64/machdep.c 1.340 +7 -0 src/sys/pc98/i386/machdep.c 1.71 +8 -0 src/sys/powerpc/powerpc/machdep.c 1.110 +7 -0 src/sys/sparc64/sparc64/machdep.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:25: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 8FACA16A4CE; Tue, 13 Jul 2004 07:25:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73A2843D5C; Tue, 13 Jul 2004 07:25:24 +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 i6D7POs2052173; Tue, 13 Jul 2004 07:25:24 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D7POE1052172; Tue, 13 Jul 2004 07:25:24 GMT (envelope-from davidxu) Message-Id: <200407130725.i6D7POE1052172@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 07:25: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/sys ptrace.h src/sys/kern sys_process.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, 13 Jul 2004 07:25:24 -0000 davidxu 2004-07-13 07:25:24 UTC FreeBSD src repository Modified files: sys/sys ptrace.h sys/kern sys_process.c Log: Implement following commands: PT_CLEARSTEP, PT_SETSTEP, PT_SUSPEND PT_RESUME, PT_GETNUMLWPS, PT_GETLWPLIST. Revision Changes Path 1.123 +109 -10 src/sys/kern/sys_process.c 1.24 +8 -2 src/sys/sys/ptrace.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 07:33: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 857E616A4CE; Tue, 13 Jul 2004 07:33:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 691F343D2F; Tue, 13 Jul 2004 07:33:40 +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 i6D7XeTO052482; Tue, 13 Jul 2004 07:33:40 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D7XeH3052481; Tue, 13 Jul 2004 07:33:40 GMT (envelope-from davidxu) Message-Id: <200407130733.i6D7XeH3052481@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 07:33: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/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, 13 Jul 2004 07:33:40 -0000 davidxu 2004-07-13 07:33:40 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c Log: Add code to support debugging threaded process. 1. Add tm_lwpid into kse_thr_mailbox to indicate which kernel thread current user thread is running on. Add tm_dflags into kse_thr_mailbox, the flags is written by debugger, it tells UTS and kernel what should be done when the process is being debugged, current, there two flags TMDF_SSTEP and TMDF_DONOTRUNUSER. TMDF_SSTEP is used to tell kernel to turn on single stepping, or turn off if it is not set. TMDF_DONOTRUNUSER is used to tell kernel to schedule upcall whenever possible, to UTS, it means do not run the user thread until debugger clears it, this behaviour is necessary because gdb wants to resume only one thread when the thread's pc is at a breakpoint, and thread needs to go forward, in order to avoid other threads sneak pass the breakpoints, it needs to remove breakpoint, only wants one thread to go. Also, add km_lwp to kse_mailbox, the lwp id is copied to kse_thr_mailbox at context switch time when process is not being debugged, so when process is attached, debugger can map kernel thread to user thread. 2. Add p_xthread to proc strcuture and td_xsig to thread structure. p_xthread is used by a thread when it wants to report event to debugger, every thread can set the pointer, especially, when it is used in ptracestop, it is the last thread reporting event will win the race. Every thread has a td_xsig to exchange signal with debugger, thread uses TDF_XSIG flag to indicate it is reporting signal to debugger, if the flag is not cleared, thread will keep retrying until it is cleared by debugger, p_xthread may be used by debugger to indicate CURRENT thread. The p_xstat is still in proc structure to keep wait() to work, in future, we may just use td_xsig. 3. Add TDF_DBSUSPEND flag, the flag is used by debugger to suspend a thread. When process stops, debugger can set the flag for thread, thread will check the flag in thread_suspend_check, enters a loop, unless it is cleared by debugger, process is detached or process is existing. The flag is also checked in ptracestop, so debugger can temporarily suspend a thread even if the thread wants to exchange signal. 4. Current, in ptrace, we always resume all threads, but if a thread has already a TDF_DBSUSPEND flag set by debugger, it won't run. Encouraged by: marcel, julian, deischen Revision Changes Path 1.184 +153 -75 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 09:37: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 D998016A4CE; Tue, 13 Jul 2004 09:37:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC47A43D2D; Tue, 13 Jul 2004 09:37:49 +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 i6D9bncm056354; Tue, 13 Jul 2004 09:37:49 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D9bn0A056353; Tue, 13 Jul 2004 09:37:49 GMT (envelope-from simokawa) Message-Id: <200407130937.i6D9bn0A056353@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 13 Jul 2004 09:37: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/modules/dcons 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, 13 Jul 2004 09:37:50 -0000 simokawa 2004-07-13 09:37:49 UTC FreeBSD src repository Modified files: sys/modules/dcons Makefile Log: Replace DDB with KDB. Revision Changes Path 1.2 +1 -1 src/sys/modules/dcons/Makefile From owner-cvs-src@FreeBSD.ORG Tue Jul 13 09: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 820D816A4CE; Tue, 13 Jul 2004 09:41:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63FFE43D31; Tue, 13 Jul 2004 09:41:45 +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 i6D9fjMI056510; Tue, 13 Jul 2004 09:41:45 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D9fjx0056509; Tue, 13 Jul 2004 09:41:45 GMT (envelope-from simokawa) Message-Id: <200407130941.i6D9fjx0056509@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 13 Jul 2004 09:41: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/sys/dev/dcons dcons.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, 13 Jul 2004 09:41:45 -0000 simokawa 2004-07-13 09:41:45 UTC FreeBSD src repository Modified files: sys/dev/dcons dcons.c Log: Re-enable debugger port. Revision Changes Path 1.14 +124 -3 src/sys/dev/dcons/dcons.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 09:46: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 9337B16A4CE; Tue, 13 Jul 2004 09:46:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537A743D45; Tue, 13 Jul 2004 09:46:46 +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 i6D9kkr9056719; Tue, 13 Jul 2004 09:46:46 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D9kkK8056718; Tue, 13 Jul 2004 09:46:46 GMT (envelope-from phk) Message-Id: <200407130946.i6D9kkK8056718@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 09:46: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/sys/fs/fdescfs fdesc_vfsops.c src/sys/fs/portalfs portal_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: Tue, 13 Jul 2004 09:46:46 -0000 phk 2004-07-13 09:46:46 UTC FreeBSD src repository Modified files: sys/fs/fdescfs fdesc_vfsops.c sys/fs/portalfs portal_vfsops.c Log: Make LINT compile Revision Changes Path 1.45 +0 -1 src/sys/fs/fdescfs/fdesc_vfsops.c 1.50 +0 -1 src/sys/fs/portalfs/portal_vfsops.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 09:47: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 B6EE216A4CE; Tue, 13 Jul 2004 09:47:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99D0B43D41; Tue, 13 Jul 2004 09:47:27 +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 i6D9lR8d056758; Tue, 13 Jul 2004 09:47:27 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6D9lR98056757; Tue, 13 Jul 2004 09:47:27 GMT (envelope-from phk) Message-Id: <200407130947.i6D9lR98056757@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 09:47: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/fs/smbfs smbfs_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: Tue, 13 Jul 2004 09:47:27 -0000 phk 2004-07-13 09:47:27 UTC FreeBSD src repository Modified files: sys/fs/smbfs smbfs_vfsops.c Log: Another LINT compilation fix Revision Changes Path 1.25 +0 -1 src/sys/fs/smbfs/smbfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 11:23: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 64CCF16A4CE; Tue, 13 Jul 2004 11:23:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4616743D31; Tue, 13 Jul 2004 11:23:31 +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 i6DBNVnU059246; Tue, 13 Jul 2004 11:23:31 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DBNV1V059245; Tue, 13 Jul 2004 11:23:31 GMT (envelope-from pjd) Message-Id: <200407131123.i6DBNV1V059245@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 11:23: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/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: Tue, 13 Jul 2004 11:23:31 -0000 pjd 2004-07-13 11:23:31 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Minor sysctl description fixes. Submitted by: simon Revision Changes Path 1.5 +2 -2 src/sys/geom/stripe/g_stripe.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 11:28: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 CB27716A4CE; Tue, 13 Jul 2004 11:28:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AABA443D41; Tue, 13 Jul 2004 11:28:40 +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 i6DBSerp059440; Tue, 13 Jul 2004 11:28:40 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DBSeuX059439; Tue, 13 Jul 2004 11:28:40 GMT (envelope-from pjd) Message-Id: <200407131128.i6DBSeuX059439@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 11:28: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/sbin/geom/class/stripe gstripe.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 11:28:40 -0000 pjd 2004-07-13 11:28:40 UTC FreeBSD src repository Modified files: sbin/geom/class/stripe gstripe.8 Log: Document sysctls variables used by GEOM_STRIPE class. Submitted by: simon Revision Changes Path 1.9 +37 -0 src/sbin/geom/class/stripe/gstripe.8 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 12:01: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 C0FD416A4CE; Tue, 13 Jul 2004 12:01:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F68443D39; Tue, 13 Jul 2004 12:01:11 +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 i6DC1BtF060386; Tue, 13 Jul 2004 12:01:11 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DC1B6O060385; Tue, 13 Jul 2004 12:01:11 GMT (envelope-from pjd) Message-Id: <200407131201.i6DC1B6O060385@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 12:01: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/geom/label g_label.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, 13 Jul 2004 12:01:11 -0000 pjd 2004-07-13 12:01:11 UTC FreeBSD src repository Modified files: sys/geom/label g_label.c Log: Decrease log level of one debug message, so there is no hole (level 2 wasn't used at all). Revision Changes Path 1.5 +1 -1 src/sys/geom/label/g_label.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 12:01: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 C141F16A4D0; Tue, 13 Jul 2004 12:01:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1D2543D1F; Tue, 13 Jul 2004 12:01:29 +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 i6DC1TnK060424; Tue, 13 Jul 2004 12:01:29 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DC1Tcc060423; Tue, 13 Jul 2004 12:01:29 GMT (envelope-from pjd) Message-Id: <200407131201.i6DC1Tcc060423@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 12:01: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/geom/label g_label.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, 13 Jul 2004 12:01:30 -0000 pjd 2004-07-13 12:01:29 UTC FreeBSD src repository Modified files: sys/geom/label g_label.h Log: Remove unused macro. Revision Changes Path 1.3 +0 -9 src/sys/geom/label/g_label.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 12:30: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 6003516A4CE; Tue, 13 Jul 2004 12:30:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4020D43D2F; Tue, 13 Jul 2004 12:30:12 +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 i6DCUCTD061184; Tue, 13 Jul 2004 12:30:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DCUCMr061183; Tue, 13 Jul 2004 12:30:12 GMT (envelope-from pjd) Message-Id: <200407131230.i6DCUCMr061183@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 12:30: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/sbin/geom/class/stripe gstripe.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 12:30:12 -0000 pjd 2004-07-13 12:30:11 UTC FreeBSD src repository Modified files: sbin/geom/class/stripe gstripe.8 Log: Those sysctl are used to control GEOM class, not a userland utility. Reviewed by: simon Revision Changes Path 1.10 +6 -4 src/sbin/geom/class/stripe/gstripe.8 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 12:32: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 ABB0216A4CE; Tue, 13 Jul 2004 12:32:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B07143D3F; Tue, 13 Jul 2004 12:32: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 i6DCWKEM061342; Tue, 13 Jul 2004 12:32:20 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DCWKhF061341; Tue, 13 Jul 2004 12:32:20 GMT (envelope-from pjd) Message-Id: <200407131232.i6DCWKhF061341@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 13 Jul 2004 12:32: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/sbin/geom/class/concat gconcat.8src/sbin/geom/class/label glabel.8 src/sbin/geom/class/nop gnop.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 12:32:20 -0000 pjd 2004-07-13 12:32:20 UTC FreeBSD src repository Modified files: sbin/geom/class/concat gconcat.8 sbin/geom/class/label glabel.8 sbin/geom/class/nop gnop.8 Log: Document sysctl variables. Based on: simon's patch Revision Changes Path 1.7 +18 -0 src/sbin/geom/class/concat/gconcat.8 1.5 +18 -0 src/sbin/geom/class/label/glabel.8 1.9 +16 -0 src/sbin/geom/class/nop/gnop.8 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 12:58: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 5AE7216A4CE; Tue, 13 Jul 2004 12:58:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39AF143D1D; Tue, 13 Jul 2004 12:58:36 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6DCwaUT062027; Tue, 13 Jul 2004 12:58:36 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DCwawi062026; Tue, 13 Jul 2004 12:58:36 GMT (envelope-from nyan) Message-Id: <200407131258.i6DCwawi062026@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 13 Jul 2004 12:58: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/pc98/pc98 clock.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, 13 Jul 2004 12:58:36 -0000 nyan 2004-07-13 12:58:36 UTC FreeBSD src repository Modified files: sys/pc98/pc98 clock.c Log: MFi386: revision 1.213. Fix miss merging in previous change. Revision Changes Path 1.140 +20 -16 src/sys/pc98/pc98/clock.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 13:10: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 DB8EC16A4CE; Tue, 13 Jul 2004 13:10:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAFBB43D39; Tue, 13 Jul 2004 13:10:07 +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 i6DDA7kH062375; Tue, 13 Jul 2004 13:10:07 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DDA78k062374; Tue, 13 Jul 2004 13:10:07 GMT (envelope-from cperciva) Message-Id: <200407131310.i6DDA78k062374@repoman.freebsd.org> From: Colin Percival Date: Tue, 13 Jul 2004 13:10: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/kern kern_fork.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, 13 Jul 2004 13:10:08 -0000 cperciva 2004-07-13 13:10:07 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c Log: Replace "uid != 0" with "suser(td->td_ucred) != 0" when checking if we've hit the maximum number of processes. The last ten processes are reserved for the *non-jailed* superuser. Revision Changes Path 1.228 +2 -1 src/sys/kern/kern_fork.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 13:14: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 4E60316A4CE; Tue, 13 Jul 2004 13:14:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D0D143D1D; Tue, 13 Jul 2004 13:14:38 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6DDEcXo062532; Tue, 13 Jul 2004 13:14:38 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DDEcHN062531; Tue, 13 Jul 2004 13:14:38 GMT (envelope-from nyan) Message-Id: <200407131314.i6DDEcHN062531@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 13 Jul 2004 13:14: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/sys/pc98/pc98 fd.c fdc_cbus.c fdcvar.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, 13 Jul 2004 13:14:38 -0000 nyan 2004-07-13 13:14:38 UTC FreeBSD src repository Modified files: sys/pc98/pc98 fd.c fdc_cbus.c fdcvar.h Log: Merged from recent fdc driver changes. Make a separate function to check FDD type. Revision Changes Path 1.151 +132 -87 src/sys/pc98/pc98/fd.c 1.2 +5 -10 src/sys/pc98/pc98/fdc_cbus.c 1.2 +10 -0 src/sys/pc98/pc98/fdcvar.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 13:39: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 C99A816A4CE; Tue, 13 Jul 2004 13:39:51 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71D9D43D5D; Tue, 13 Jul 2004 13:39:51 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6DDdboT047169; Tue, 13 Jul 2004 09:39:37 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6DDdbL0047166; Tue, 13 Jul 2004 09:39:37 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 13 Jul 2004 09:39:36 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Alfred Perlstein In-Reply-To: <200407120814.i6C8EA9d007919@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vfsops.c src/sys/fs/devfs devfs_vfsops.c src/sys/fs/fdescfs fdesc.h fdesc_vfsops.c src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/nullfs null_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: Tue, 13 Jul 2004 13:39:52 -0000 On Mon, 12 Jul 2004, Alfred Perlstein wrote: > Make VFS_ROOT() and vflush() take a thread argument. > This is to allow filesystems to decide based on the passed thread > which vnode to return. > Several filesystems used curthread, they now use the passed thread. This strikes me as fairly suspect, as most consumers of any thread pointer are going to dereference it in a way that's only safe if that thread is curthread. The same dubious quality applies to passing threads into other VFS operations, and the only real purpose in most cases is to trade off the cost of a PCPU lookup and a stack argument. Do you plan to pass in a thread other than curthread? If so, how will you ensure this is safe? Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Tue Jul 13 14:52: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 0571316A4CE; Tue, 13 Jul 2004 14:52:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D94DE43D39; Tue, 13 Jul 2004 14:52:31 +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 i6DEqVEg065342; Tue, 13 Jul 2004 14:52:31 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DEqVGG065341; Tue, 13 Jul 2004 14:52:31 GMT (envelope-from roam) Message-Id: <200407131452.i6DEqVGG065341@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 13 Jul 2004 14:52:31 +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/man5 make.conf.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, 13 Jul 2004 14:52:32 -0000 roam 2004-07-13 14:52:31 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man5 make.conf.5 Log: Remove the description of the MAKE_SHELL variable that is not honored in -STABLE's make. The MAKE_SHELL description seems to have crept into the merge in rev. 1.12.2.24. PR: 65615 Submitted by: Matthew Seaman Revision Changes Path 1.12.2.36 +0 -13 src/share/man/man5/make.conf.5 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 15:01: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 1035D16A4CE; Tue, 13 Jul 2004 15:01:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E30AA43D1D; Tue, 13 Jul 2004 15:01: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 i6DF1fR4065694; Tue, 13 Jul 2004 15:01:41 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DF1fX5065693; Tue, 13 Jul 2004 15:01:41 GMT (envelope-from roam) Message-Id: <200407131501.i6DF1fX5065693@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 13 Jul 2004 15:01:41 +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 ng_iface.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, 13 Jul 2004 15:01:42 -0000 roam 2004-07-13 15:01:41 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man4 ng_iface.4 Log: MFC rev. 1.14: "An iface node *can* be configured..." PR: 66574 Submitted by: Michel Lavondes Revision Changes Path 1.13.2.2 +1 -1 src/share/man/man4/ng_iface.4 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 15:07: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 8F69A16A4CE; Tue, 13 Jul 2004 15:07:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CE5343D5A; Tue, 13 Jul 2004 15:07:23 +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 i6DF7Nqd066013; Tue, 13 Jul 2004 15:07:23 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DF7Nm3066012; Tue, 13 Jul 2004 15:07:23 GMT (envelope-from roam) Message-Id: <200407131507.i6DF7Nm3066012@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 13 Jul 2004 15:07:23 +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 ng_ksocket.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, 13 Jul 2004 15:07:23 -0000 roam 2004-07-13 15:07:23 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man4 ng_ksocket.4 Log: MFC rev. 1.16 (a 'paramter' typo fix) and 1.17 (kill hard sentence breaks). PR: 66575 Submitted by: Michel Lavondes Revision Changes Path 1.15.2.2 +24 -12 src/share/man/man4/ng_ksocket.4 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 15: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 E358E16A4CE; Tue, 13 Jul 2004 15:13:10 +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 549B743D45; Tue, 13 Jul 2004 15:13:10 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i6DFDAIL090632; Tue, 13 Jul 2004 08:13:10 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) i6DFD9lo008308; Tue, 13 Jul 2004 08:13:09 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.12.11/8.12.11/Submit) id i6DFD9ZU008307; Tue, 13 Jul 2004 08:13:09 -0700 (PDT) (envelope-from marcel) Date: Tue, 13 Jul 2004 08:13:09 -0700 From: Marcel Moolenaar To: Hidetoshi Shimokawa Message-ID: <20040713151309.GA8277@dhcp50.pn.xcllnt.net> References: <200407130941.i6D9fjx0056509@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407130941.i6D9fjx0056509@repoman.freebsd.org> 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/sys/dev/dcons dcons.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, 13 Jul 2004 15:13:11 -0000 On Tue, Jul 13, 2004 at 09:41:45AM +0000, Hidetoshi Shimokawa wrote: > simokawa 2004-07-13 09:41:45 UTC > > FreeBSD src repository > > Modified files: > sys/dev/dcons dcons.c > Log: > Re-enable debugger port. Thanks! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Tue Jul 13 15:48: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 5F3DC16A4CE for ; Tue, 13 Jul 2004 15:48:14 +0000 (GMT) Received: from mail.FreeBSD.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7A5643D2F for ; Tue, 13 Jul 2004 15:48:09 +0000 (GMT) (envelope-from delphij@frontfree.net) Received: (qmail 35392 invoked by uid 0); 13 Jul 2004 15:46:16 -0000 Received: from unknown (HELO beastie.frontfree.net) (218.107.145.7) by mail.FreeBSD.org.cn with AES256-SHA encrypted SMTP; 13 Jul 2004 15:46:16 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id 97BBE11928; Tue, 13 Jul 2004 23:47:51 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01849-03; Tue, 13 Jul 2004 23:47:50 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id 19F6C1143F; Tue, 13 Jul 2004 23:47:50 +0800 (CST) Date: Tue, 13 Jul 2004 23:47:50 +0800 From: Xin LI To: Colin Percival Message-ID: <20040713154750.GA1231@frontfree.net> References: <200407131310.i6DDA78k062374@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yNb1oOkm5a9FJOVX" Content-Disposition: inline In-Reply-To: <200407131310.i6DDA78k062374@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i X-GPG-key-ID/Fingerprint: 0xCAEEB8C0 / 43B8 B703 B8DD 0231 B333 DC28 39FB 93A0 CAEE B8C0 X-GPG-Public-Key: http://www.delphij.net/delphij.asc X-Operating-System: FreeBSD beastie.frontfree.net 5.2-delphij FreeBSD 5.2-delphij #80: Thu Jun 24 17:30:33 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 X-URL: http://www.delphij.net X-By: delphij@beastie.frontfree.net X-Location: Beijing, China X-Virus-Scanned: by amavisd-new at frontfree.net cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_fork.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, 13 Jul 2004 15:48:14 -0000 --yNb1oOkm5a9FJOVX Content-Type: multipart/mixed; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 13, 2004 at 01:10:07PM +0000, Colin Percival wrote: > cperciva 2004-07-13 13:10:07 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/kern kern_fork.c=20 > Log: > Replace "uid !=3D 0" with "suser(td->td_ucred) !=3D 0" when checking if= we've > hit the maximum number of processes. The last ten processes are reserv= ed > for the *non-jailed* superuser. I think it should be suser(td)? Cheers, --=20 Xin LI http://www.delphij.net/ See complete headers for GPG key and other information. --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-kern_fork.c" Index: kern_fork.c =================================================================== RCS file: /home/fcvs/src/sys/kern/kern_fork.c,v retrieving revision 1.228 diff -u -r1.228 kern_fork.c --- kern_fork.c 13 Jul 2004 13:10:07 -0000 1.228 +++ kern_fork.c 13 Jul 2004 15:46:38 -0000 @@ -300,7 +300,7 @@ */ sx_xlock(&allproc_lock); uid = td->td_ucred->cr_ruid; - if ((nprocs >= maxproc - 10 && suser(td->td_ucred) != 0) || + if ((nprocs >= maxproc - 10 && suser(td) != 0) || nprocs >= maxproc) { error = EAGAIN; goto fail; --8t9RHnE3ZwKMSgU+-- --yNb1oOkm5a9FJOVX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA9AQlOfuToMruuMARAmuUAJ9jS+08TXzkCaZZ6HxYVt34x+zU9QCePZYR K0TKMul66HcIgoz1Ag3Pov8= =83Po -----END PGP SIGNATURE----- --yNb1oOkm5a9FJOVX-- From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16:06: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 E204316A4CE; Tue, 13 Jul 2004 16:06:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C142243D55; Tue, 13 Jul 2004 16:06:19 +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 i6DG6Jg9067859; Tue, 13 Jul 2004 16:06:19 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DG6J7U067858; Tue, 13 Jul 2004 16:06:19 GMT (envelope-from stefanf) Message-Id: <200407131606.i6DG6J7U067858@repoman.freebsd.org> From: Stefan Farfeleder Date: Tue, 13 Jul 2004 16:06: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/sys/dev/mpt mpt_debug.c src/sys/dev/syscons scvidctl.c src/sys/netinet in_pcb.h ip_icmp.c src/sys/dev/aic7xxx aic7770.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, 13 Jul 2004 16:06:20 -0000 stefanf 2004-07-13 16:06:19 UTC FreeBSD src repository Modified files: sys/dev/mpt mpt_debug.c sys/dev/syscons scvidctl.c sys/netinet in_pcb.h ip_icmp.c sys/dev/aic7xxx aic7770.c Log: Remove erroneous semicolons. Revision Changes Path 1.17 +1 -1 src/sys/dev/aic7xxx/aic7770.c 1.5 +2 -2 src/sys/dev/mpt/mpt_debug.c 1.32 +1 -1 src/sys/dev/syscons/scvidctl.c 1.74 +1 -1 src/sys/netinet/in_pcb.h 1.94 +1 -1 src/sys/netinet/ip_icmp.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16:10: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 A224C16A4CE; Tue, 13 Jul 2004 16:10:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E4C43D53; Tue, 13 Jul 2004 16:10:24 +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 i6DGAOPQ067979; Tue, 13 Jul 2004 16:10:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DGAO94067978; Tue, 13 Jul 2004 16:10:24 GMT (envelope-from imp) Message-Id: <200407131610.i6DGAO94067978@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Jul 2004 16:10: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/pc98/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: Tue, 13 Jul 2004 16:10:24 -0000 imp 2004-07-13 16:10:24 UTC FreeBSD src repository Modified files: sys/pc98/conf GENERIC Log: oldcard's card device no longer requires a count Revision Changes Path 1.250 +1 -1 src/sys/pc98/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16: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 757DC16A4CF; Tue, 13 Jul 2004 16:11:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5381143D41; Tue, 13 Jul 2004 16:11: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 i6DGB4tn068221; Tue, 13 Jul 2004 16:11:04 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DGB4BZ068220; Tue, 13 Jul 2004 16:11:04 GMT (envelope-from kensmith) Message-Id: <200407131611.i6DGB4BZ068220@repoman.freebsd.org> From: Ken Smith Date: Tue, 13 Jul 2004 16:11: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/alpha/include ptrace.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, 13 Jul 2004 16:11:04 -0000 kensmith 2004-07-13 16:11:04 UTC FreeBSD src repository Modified files: sys/alpha/include ptrace.h Log: Rev 1.24 of sys/ptrace.h adds ptrace_clear_single_step() prototype definition so this one causes "redundant declaration" error and breaks Alpha kernel build. Reviewed by: gallatin@ and test build on beast Revision Changes Path 1.12 +0 -1 src/sys/alpha/include/ptrace.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16:11: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 1FD3016A51F; Tue, 13 Jul 2004 16:11:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F23F943D1F; Tue, 13 Jul 2004 16:11:34 +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 i6DGBYOd068268; Tue, 13 Jul 2004 16:11:34 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DGBYSv068267; Tue, 13 Jul 2004 16:11:34 GMT (envelope-from imp) Message-Id: <200407131611.i6DGBYSv068267@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Jul 2004 16:11: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/i386/conf OLDCARD X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 16:11:35 -0000 imp 2004-07-13 16:11:34 UTC FreeBSD src repository Modified files: sys/i386/conf OLDCARD Log: oldcard's card device no longer requires a count Revision Changes Path 1.19 +1 -1 src/sys/i386/conf/OLDCARD From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16:20: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 71E1C16A4CE; Tue, 13 Jul 2004 16:20:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5052B43D41; Tue, 13 Jul 2004 16:20:56 +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 i6DGKubf068592; Tue, 13 Jul 2004 16:20:56 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DGKuZB068591; Tue, 13 Jul 2004 16:20:56 GMT (envelope-from roam) Message-Id: <200407131620.i6DGKuZB068591@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 13 Jul 2004 16:20:56 +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 ng_one2many.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, 13 Jul 2004 16:20:56 -0000 roam 2004-07-13 16:20:56 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man4 ng_one2many.4 Log: Fix a typo and MFC from rev. 1.6.\ PR: 66764 Submitted by: Michel Lavondes Revision Changes Path 1.1.2.10 +2 -1 src/share/man/man4/ng_one2many.4 From owner-cvs-src@FreeBSD.ORG Tue Jul 13 16:33: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 1077716A4CE; Tue, 13 Jul 2004 16:33:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E282C43D53; Tue, 13 Jul 2004 16:33:38 +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 i6DGXcOk069098; Tue, 13 Jul 2004 16:33:38 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DGXcMm069097; Tue, 13 Jul 2004 16:33:38 GMT (envelope-from phk) Message-Id: <200407131633.i6DGXcMm069097@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 16:33: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/sys/kern kern_fork.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, 13 Jul 2004 16:33:39 -0000 phk 2004-07-13 16:33:38 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c Log: fix compilation. Revision Changes Path 1.229 +1 -1 src/sys/kern/kern_fork.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 17: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 AF60816A4CE; Tue, 13 Jul 2004 17:04:41 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AABA43D31; Tue, 13 Jul 2004 17:04:41 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-7.local ([172.16.0.7] helo=dhcp-14.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34 (FreeBSD)) id 1BkQhn-000GCm-5s; Tue, 13 Jul 2004 19:04:40 +0200 Date: Tue, 13 Jul 2004 19:05:20 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Tim J. Robbins" From: Oliver Eikemeier In-Reply-To: <200407090208.i69287du035795@repoman.freebsd.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/tr Makefile cmap.c cmap.h cset.c cset.h extern.h str.c tr.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, 13 Jul 2004 17:04:41 -0000 Tim J. Robbins wrote: > tjr 2004-07-09 02:08:07 UTC > > FreeBSD src repository > > Modified files: > usr.bin/tr Makefile extern.h str.c tr.c > Added files: > usr.bin/tr cmap.c cmap.h cset.c cset.h > Log: > Add support for multibyte characters. The challenge here was to use > data structures that scale better with large character sets, instead > of > arrays indexed by character value: > - Sets of characters to delete/squeeze are stored in a new "cset" > structure, > which is implemented as a splay tree of extents. This structure has > the > ability to store character classes (ala wctype(3)), but this is not > currently fully utilized. > - Mappings between characters are stored in a new "cmap" structure, > which > is also a splay tree. > - The parser no longer builds arrays containing all the characters > in a > particular class; instead, next() determines them on-the-fly using > nextwctype(3). > > Revision Changes Path > 1.2 +2 -1 src/usr.bin/tr/Makefile > 1.1 +212 -0 src/usr.bin/tr/cmap.c (new) > 1.1 +83 -0 src/usr.bin/tr/cmap.h (new) > 1.1 +303 -0 src/usr.bin/tr/cset.c (new) > 1.1 +75 -0 src/usr.bin/tr/cset.h (new) > 1.9 +11 -10 src/usr.bin/tr/extern.h > 1.23 +78 -87 src/usr.bin/tr/str.c > 1.22 +116 -102 src/usr.bin/tr/tr.c I'm not exactly sure, but is > echo "http://wwww.maxmind.com/" | tr -s " " ";" htp:/w.maxmind.com/ the expected result here? -Oliver From owner-cvs-src@FreeBSD.ORG Tue Jul 13 17:43: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 7702216A4CE; Tue, 13 Jul 2004 17:43:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55FD043D2D; Tue, 13 Jul 2004 17:43:04 +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 i6DHh4Jq070956; Tue, 13 Jul 2004 17:43:04 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DHh4XE070955; Tue, 13 Jul 2004 17:43:04 GMT (envelope-from phk) Message-Id: <200407131743.i6DHh4XE070955@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 17:43: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/conf files.i386 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: Tue, 13 Jul 2004 17:43:04 -0000 phk 2004-07-13 17:43:04 UTC FreeBSD src repository Modified files: sys/conf files.i386 sys/i386/conf NOTES Log: Desupport M-Systems DiskOnChip driver "fla" Revision Changes Path 1.498 +0 -6 src/sys/conf/files.i386 1.1165 +0 -4 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Jul 13 17:44: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 9A43716A4CE; Tue, 13 Jul 2004 17:44:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5801F43D39; Tue, 13 Jul 2004 17:44:17 +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 i6DHiHIN071035; Tue, 13 Jul 2004 17:44:17 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DHiH0C071034; Tue, 13 Jul 2004 17:44:17 GMT (envelope-from phk) Message-Id: <200407131744.i6DHiH0C071034@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 17:44: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/contrib/dev/fla COPYRIGHT README fla.c msysosak.h patch.00 prep.fla.sh src/sys/contrib/dev/fla/i386 msysosak.o.uu X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 17:44:17 -0000 phk 2004-07-13 17:44:17 UTC FreeBSD src repository Removed files: sys/contrib/dev/fla COPYRIGHT README fla.c msysosak.h patch.00 prep.fla.sh sys/contrib/dev/fla/i386 msysosak.o.uu Log: Send the fla driver in the Attic Revision Changes Path 1.2 +0 -102 src/sys/contrib/dev/fla/COPYRIGHT (dead) 1.6 +0 -198 src/sys/contrib/dev/fla/README (dead) 1.42 +0 -288 src/sys/contrib/dev/fla/fla.c (dead) 1.4 +0 -823 src/sys/contrib/dev/fla/i386/msysosak.o.uu (dead) 1.3 +0 -135 src/sys/contrib/dev/fla/msysosak.h (dead) 1.2 +0 -23 src/sys/contrib/dev/fla/patch.00 (dead) 1.3 +0 -45 src/sys/contrib/dev/fla/prep.fla.sh (dead) From owner-cvs-src@FreeBSD.ORG Tue Jul 13 17:57: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 860CF16A4CE; Tue, 13 Jul 2004 17:57:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 648E343D4C; Tue, 13 Jul 2004 17:57:42 +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 i6DHvgLB071420; Tue, 13 Jul 2004 17:57:42 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DHvgmv071419; Tue, 13 Jul 2004 17:57:42 GMT (envelope-from njl) Message-Id: <200407131757.i6DHvgmv071419@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Jul 2004 17:57: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/acpica 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, 13 Jul 2004 17:57:42 -0000 njl 2004-07-13 17:57:42 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Call device_identify routines after doing the namespace walk. This is needed so that sysresource objects are created first to reserve all regions, then other devices can allocate from them. Otherwise, acpi_timer (the only ACPI device with an identify routine), would allocate its resources from the nexus, causing the later sysresource reserve to fail. Debugging by: Taku YAMAMOTO, Andrea Campi Revision Changes Path 1.175 +6 -8 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 18: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 C17BA16A4CE; Tue, 13 Jul 2004 18:59:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F1BD43D1D; Tue, 13 Jul 2004 18:59:49 +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 i6DIxntl073094; Tue, 13 Jul 2004 18:59:49 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DIxn29073093; Tue, 13 Jul 2004 18:59:49 GMT (envelope-from njl) Message-Id: <200407131859.i6DIxn29073093@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Jul 2004 18: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/dev/acpica 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, 13 Jul 2004 18:59:49 -0000 njl 2004-07-13 18:59:49 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Clean up our pnpinfo and location strings. Revision Changes Path 1.176 +5 -7 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 19:35: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 8EC3E16A4CE; Tue, 13 Jul 2004 19:35:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6926243D46; Tue, 13 Jul 2004 19:35:11 +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 i6DJZB4B074085; Tue, 13 Jul 2004 19:35:11 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DJZBv3074084; Tue, 13 Jul 2004 19:35:11 GMT (envelope-from phk) Message-Id: <200407131935.i6DJZBv3074084@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 19:35: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/kern syscalls.master src/sys/compat/freebsd32 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: Tue, 13 Jul 2004 19:35:11 -0000 phk 2004-07-13 19:35:11 UTC FreeBSD src repository Modified files: sys/kern syscalls.master sys/compat/freebsd32 syscalls.master Log: Add kldunloadf() system call. Stay tuned for follwing commit messages. Revision Changes Path 1.39 +3 -2 src/sys/compat/freebsd32/syscalls.master 1.176 +1 -0 src/sys/kern/syscalls.master From owner-cvs-src@FreeBSD.ORG Tue Jul 13 19:36: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 AAEA516A4CE; Tue, 13 Jul 2004 19:36:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8821043D39; Tue, 13 Jul 2004 19:36:59 +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 i6DJaxRi074392; Tue, 13 Jul 2004 19:36:59 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DJaxrp074391; Tue, 13 Jul 2004 19:36:59 GMT (envelope-from phk) Message-Id: <200407131936.i6DJaxrp074391@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 13 Jul 2004 19:36: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/sbin/kldunload kldunload.8 kldunload.c src/share/man/man9 module.9 src/sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c src/sys/dev/digi digi.c src/sys/kern ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 19:36:59 -0000 phk 2004-07-13 19:36:59 UTC FreeBSD src repository Modified files: sbin/kldunload kldunload.8 kldunload.c share/man/man9 module.9 sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c sys/dev/digi digi.c sys/kern init_sysent.c kern_linker.c kern_module.c link_elf.c link_elf_obj.c syscalls.c vfs_mount.c sys/sys linker.h module.h syscall.h syscall.mk sysproto.h Log: Give kldunload a -f(orce) argument. Add a MOD_QUIESCE event for modules. This should return error (EBUSY) of the module is in use. MOD_UNLOAD should now only fail if it is impossible (as opposed to inconvenient) to unload the module. Valid reasons are memory references into the module which cannot be tracked down and eliminated. When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is not given, MOD_QUIESCE failing will also prevent the unload. For backwards compatibility, we treat EOPNOTSUPP from MOD_QUIESCE as success. Document that modules should return EOPNOTSUPP for unknown events. Revision Changes Path 1.13 +7 -0 src/sbin/kldunload/kldunload.8 1.14 +6 -2 src/sbin/kldunload/kldunload.c 1.8 +20 -2 src/share/man/man9/module.9 1.27 +6 -1 src/sys/compat/freebsd32/freebsd32_proto.h 1.27 +3 -2 src/sys/compat/freebsd32/freebsd32_syscall.h 1.18 +2 -1 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.28 +2 -1 src/sys/compat/freebsd32/freebsd32_sysent.c 1.53 +2 -2 src/sys/dev/digi/digi.c 1.175 +2 -1 src/sys/kern/init_sysent.c 1.113 +38 -11 src/sys/kern/kern_linker.c 1.43 +7 -1 src/sys/kern/kern_module.c 1.80 +2 -2 src/sys/kern/link_elf.c 1.86 +1 -1 src/sys/kern/link_elf_obj.c 1.161 +2 -1 src/sys/kern/syscalls.c 1.136 +1 -1 src/sys/kern/vfs_mount.c 1.38 +8 -1 src/sys/sys/linker.h 1.21 +3 -2 src/sys/sys/module.h 1.159 +3 -2 src/sys/sys/syscall.h 1.114 +3 -2 src/sys/sys/syscall.mk 1.158 +6 -1 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Tue Jul 13 19:51: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 7619016A4CE; Tue, 13 Jul 2004 19:51:20 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA8543D31; Tue, 13 Jul 2004 19:51:20 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6DJpIrb027547 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 13 Jul 2004 12:51:19 -0700 Message-ID: <40F43D36.2000407@root.org> Date: Tue, 13 Jul 2004 12:51:18 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Poul-Henning Kamp References: <20040713193703.ECB0016A53F@hub.freebsd.org> In-Reply-To: <20040713193703.ECB0016A53F@hub.freebsd.org> 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/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 19:51:20 -0000 Poul-Henning Kamp wrote: > Give kldunload a -f(orce) argument. > > Add a MOD_QUIESCE event for modules. This should return error (EBUSY) > of the module is in use. > > MOD_UNLOAD should now only fail if it is impossible (as opposed to > inconvenient) to unload the module. Valid reasons are memory references > into the module which cannot be tracked down and eliminated. > > When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is > not given, MOD_QUIESCE failing will also prevent the unload. Hmmm, a quick check of the archives shows that I missed your discussion of this on Thursday/Friday when I was on vacation. (Including the extremely useful naming replies!) Have you kept up on the newbus discussions? The tentative plan was to add quiesce functionality to it as part of device_detach(). Doing it at the module layer is a bit too low since there are events that can trigger a detach but not an unload. For instance, any driver compiled into the kernel for an ejectable device will never be unloaded, but certainly should quiesce/detach when the device is ejected. Getting it right in newbus automatically fixes the problem you're trying to solve since a module unload always triggers a call to device_detach() but not vice versa. I think duplicating this at multiple layers is not a good idea and the module level is not the right layer to implement it. -- -Nate From owner-cvs-src@FreeBSD.ORG Tue Jul 13 19:55: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 458D316A4CE; Tue, 13 Jul 2004 19:55:37 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9727D43D45; Tue, 13 Jul 2004 19:55:36 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DJtRZk023945; Tue, 13 Jul 2004 21:55:27 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nate Lawson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 12:51:18 PDT." <40F43D36.2000407@root.org> Date: Tue, 13 Jul 2004 21:55:27 +0200 Message-ID: <23944.1089748527@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 19:55:37 -0000 In message <40F43D36.2000407@root.org>, Nate Lawson writes: >Poul-Henning Kamp wrote: >> Give kldunload a -f(orce) argument. >> >> Add a MOD_QUIESCE event for modules. This should return error (EBUSY) >> of the module is in use. >> >> MOD_UNLOAD should now only fail if it is impossible (as opposed to >> inconvenient) to unload the module. Valid reasons are memory references >> into the module which cannot be tracked down and eliminated. >> >> When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is >> not given, MOD_QUIESCE failing will also prevent the unload. > >Hmmm, a quick check of the archives shows that I missed your discussion >of this on Thursday/Friday when I was on vacation. (Including the >extremely useful naming replies!) > >Have you kept up on the newbus discussions? The tentative plan was to >add quiesce functionality to it as part of device_detach(). Doing it at >the module layer is a bit too low since there are events that can >trigger a detach but not an unload. For instance, any driver compiled >into the kernel for an ejectable device will never be unloaded, but >certainly should quiesce/detach when the device is ejected. Getting it >right in newbus automatically fixes the problem you're trying to solve >since a module unload always triggers a call to device_detach() but not >vice versa. > >I think duplicating this at multiple layers is not a good idea and the >module level is not the right layer to implement it. Well, since one kld can contain multiple modules, and since the modules get to veto an unload with MOD_UNLOAD, I don't really see how you can come up with something that doesn't have a MOD_QUIESCE. The fact that we have many modules which know nothing about newbus also look like a pretty solid argument for needing it at the module layer. -- 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 Tue Jul 13 19:55: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 0107416A4CE; Tue, 13 Jul 2004 19:55:48 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EA2E43D45; Tue, 13 Jul 2004 19:55:47 +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 i6DK1Aef028483; Tue, 13 Jul 2004 14:01:10 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F43DFE.3000402@freebsd.org> Date: Tue, 13 Jul 2004 13:54:38 -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: Nate Lawson References: <20040713193703.ECB0016A53F@hub.freebsd.org> <40F43D36.2000407@root.org> In-Reply-To: <40F43D36.2000407@root.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: Poul-Henning Kamp cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 19:55:48 -0000 Nate Lawson wrote: > Poul-Henning Kamp wrote: > >> Give kldunload a -f(orce) argument. >> Add a MOD_QUIESCE event for modules. This should return error >> (EBUSY) >> of the module is in use. >> MOD_UNLOAD should now only fail if it is impossible (as opposed to >> inconvenient) to unload the module. Valid reasons are memory >> references >> into the module which cannot be tracked down and eliminated. >> When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is >> not given, MOD_QUIESCE failing will also prevent the unload. > > > Hmmm, a quick check of the archives shows that I missed your discussion > of this on Thursday/Friday when I was on vacation. (Including the > extremely useful naming replies!) > > Have you kept up on the newbus discussions? The tentative plan was to > add quiesce functionality to it as part of device_detach(). Doing it at > the module layer is a bit too low since there are events that can > trigger a detach but not an unload. For instance, any driver compiled > into the kernel for an ejectable device will never be unloaded, but > certainly should quiesce/detach when the device is ejected. Getting it > right in newbus automatically fixes the problem you're trying to solve > since a module unload always triggers a call to device_detach() but not > vice versa. > > I think duplicating this at multiple layers is not a good idea and the > module level is not the right layer to implement it. > It typically won't be duplicated. This particular work is good for things like GEOM modules that don't fit into newbus. If at some point in the future newbus becomes aware of pseudo-drivers (drivers not attached by a hardware bus) then this should indeed be revisited. Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:01: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 D721D16A4D7; Tue, 13 Jul 2004 20:01:14 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E88043D41; Tue, 13 Jul 2004 20:01:14 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DK1Dma024062; Tue, 13 Jul 2004 22:01:13 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Scott Long From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 13:54:38 MDT." <40F43DFE.3000402@freebsd.org> Date: Tue, 13 Jul 2004 22:01:13 +0200 Message-ID: <24061.1089748873@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:01:15 -0000 In message <40F43DFE.3000402@freebsd.org>, Scott Long writes: >It typically won't be duplicated. This particular work is good for >things like GEOM modules that don't fit into newbus. If at some point >in the future newbus becomes aware of pseudo-drivers (drivers not >attached by a hardware bus) then this should indeed be revisited. I wish I could grasp from where this "newbus fits all" attiude comes, I certainly see nothing anywhere that could explain it. -- 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 Tue Jul 13 20:03: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 8C51816A4CE; Tue, 13 Jul 2004 20:03:04 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28B8343D2F; Tue, 13 Jul 2004 20:03:04 +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 i6DK8R9O028531; Tue, 13 Jul 2004 14:08:27 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F43FB3.1030607@freebsd.org> Date: Tue, 13 Jul 2004 14:01:55 -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: Poul-Henning Kamp References: <24061.1089748873@critter.freebsd.dk> In-Reply-To: <24061.1089748873@critter.freebsd.dk> 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 cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:03:04 -0000 Poul-Henning Kamp wrote: > In message <40F43DFE.3000402@freebsd.org>, Scott Long writes: > > >>It typically won't be duplicated. This particular work is good for >>things like GEOM modules that don't fit into newbus. If at some point >>in the future newbus becomes aware of pseudo-drivers (drivers not >>attached by a hardware bus) then this should indeed be revisited. > > > I wish I could grasp from where this "newbus fits all" attiude > comes, I certainly see nothing anywhere that could explain it. > NetBSD has most things under newbus. Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:13: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 88E7816A4CE; Tue, 13 Jul 2004 20:13:58 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1A2643D2D; Tue, 13 Jul 2004 20:13:57 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKDumw024293; Tue, 13 Jul 2004 22:13:56 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Scott Long From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 14:01:55 MDT." <40F43FB3.1030607@freebsd.org> Date: Tue, 13 Jul 2004 22:13:56 +0200 Message-ID: <24292.1089749636@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:13:58 -0000 In message <40F43FB3.1030607@freebsd.org>, Scott Long writes: >Poul-Henning Kamp wrote: > >> In message <40F43DFE.3000402@freebsd.org>, Scott Long writes: >> >> >>>It typically won't be duplicated. This particular work is good for >>>things like GEOM modules that don't fit into newbus. If at some point >>>in the future newbus becomes aware of pseudo-drivers (drivers not >>>attached by a hardware bus) then this should indeed be revisited. >> >> >> I wish I could grasp from where this "newbus fits all" attiude >> comes, I certainly see nothing anywhere that could explain it. > >NetBSD has most things under newbus. yes, and ? I can't help to notice that only the words "NetBSD" and "most" are present in your reply whereas the words "FreeBSD" and "all" are significantly absent. It is not realistic to expect us to ever tie netgraph modules, tty linedisciplines, network protocols, filesystems, vm objects, vnodes and geom classes together with newbus. Not now, not in one year and not in ten years time. And since all of these things are involved in loadable modules, I think we should stop wasting time dreaming about the day the world will be one bit tangle of newbus. If we had a big company we could throw a load of money after random acts of "top down architecture" like that, but with a volunteer project it is just not going to happen. -- 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 Tue Jul 13 20:17: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 89BCC16A4CF; Tue, 13 Jul 2004 20:17:52 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D6EC43D3F; Tue, 13 Jul 2004 20:17:52 +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 i6DKNFvM028588; Tue, 13 Jul 2004 14:23:15 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F4432B.70304@freebsd.org> Date: Tue, 13 Jul 2004 14:16: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: Poul-Henning Kamp References: <24292.1089749636@critter.freebsd.dk> In-Reply-To: <24292.1089749636@critter.freebsd.dk> 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 cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:17:52 -0000 Poul-Henning Kamp wrote: > In message <40F43FB3.1030607@freebsd.org>, Scott Long writes: > >>Poul-Henning Kamp wrote: >> >> >>>In message <40F43DFE.3000402@freebsd.org>, Scott Long writes: >>> >>> >>> >>>>It typically won't be duplicated. This particular work is good for >>>>things like GEOM modules that don't fit into newbus. If at some point >>>>in the future newbus becomes aware of pseudo-drivers (drivers not >>>>attached by a hardware bus) then this should indeed be revisited. >>> >>> >>>I wish I could grasp from where this "newbus fits all" attiude >>>comes, I certainly see nothing anywhere that could explain it. >> >>NetBSD has most things under newbus. > > > yes, and ? > > I can't help to notice that only the words "NetBSD" and "most" are > present in your reply whereas the words "FreeBSD" and "all" are > significantly absent. > > It is not realistic to expect us to ever tie netgraph modules, tty > linedisciplines, network protocols, filesystems, vm objects, vnodes > and geom classes together with newbus. > > Not now, not in one year and not in ten years time. > > And since all of these things are involved in loadable modules, > I think we should stop wasting time dreaming about the day the > world will be one bit tangle of newbus. > > If we had a big company we could throw a load of money after random > acts of "top down architecture" like that, but with a volunteer > project it is just not going to happen. > Please settle down. My original statement was just a hypothetical and nothing more. The newbus cabal/bikeshed/whatever is not about to come crashing down on your head. Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:20: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 069D716A4CE; Tue, 13 Jul 2004 20:20:27 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43BF243D45; Tue, 13 Jul 2004 20:20:26 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKKPtF024450; Tue, 13 Jul 2004 22:20:25 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Scott Long From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 14:16:43 MDT." <40F4432B.70304@freebsd.org> Date: Tue, 13 Jul 2004 22:20:25 +0200 Message-ID: <24449.1089750025@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:20:27 -0000 In message <40F4432B.70304@freebsd.org>, Scott Long writes: >Please settle down. My original statement was just a hypothetical and >nothing more. The newbus cabal/bikeshed/whatever is not about to come >crashing down on your head. I know it isn't, and that's was my point. -- 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 Tue Jul 13 20:22: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 AD52C16A4CE; Tue, 13 Jul 2004 20:22:02 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id A72E743D46; Tue, 13 Jul 2004 20:22:01 +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 i6DKLOAY052780; Tue, 13 Jul 2004 14:21:25 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 14:21:28 -0600 (MDT) Message-Id: <20040713.142128.41875243.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <24292.1089749636@critter.freebsd.dk> References: <40F43FB3.1030607@freebsd.org> <24292.1089749636@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:22:02 -0000 In message: <24292.1089749636@critter.freebsd.dk> "Poul-Henning Kamp" writes: : And since all of these things are involved in loadable modules, : I think we should stop wasting time dreaming about the day the : world will be one bit tangle of newbus. And I think you should spent less time attacking newbus. Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:22: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 B027916A4CF; Tue, 13 Jul 2004 20:22:22 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47EA343D48; Tue, 13 Jul 2004 20:22:22 +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 i6DKK91L052777; Tue, 13 Jul 2004 14:20:09 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 14:20:11 -0600 (MDT) Message-Id: <20040713.142011.51857482.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <24061.1089748873@critter.freebsd.dk> References: <40F43DFE.3000402@freebsd.org> <24061.1089748873@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:22:22 -0000 In message: <24061.1089748873@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <40F43DFE.3000402@freebsd.org>, Scott Long writes: : : >It typically won't be duplicated. This particular work is good for : >things like GEOM modules that don't fit into newbus. If at some point : >in the future newbus becomes aware of pseudo-drivers (drivers not : >attached by a hardware bus) then this should indeed be revisited. : : I wish I could grasp from where this "newbus fits all" attiude : comes, I certainly see nothing anywhere that could explain it. Too many years of having weird, odd-ball attachments maybe? That's why newbus was created: to have a unified heirarchy to make it easier to write drivers. Frankly, I dislike your obstructionist attitudes towards newbus. Warenr From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:26: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 5FE8D16A4CE; Tue, 13 Jul 2004 20:26:42 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id C935543D2F; Tue, 13 Jul 2004 20:26:41 +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 i6DKO6PH052829; Tue, 13 Jul 2004 14:24:06 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 14:24:09 -0600 (MDT) Message-Id: <20040713.142409.35661941.imp@bsdimp.com> To: nate@root.org From: "M. Warner Losh" In-Reply-To: <40F43D36.2000407@root.org> References: <20040713193703.ECB0016A53F@hub.freebsd.org> <40F43D36.2000407@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: phk@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:26:42 -0000 In message: <40F43D36.2000407@root.org> Nate Lawson writes: : Poul-Henning Kamp wrote: : > Give kldunload a -f(orce) argument. : > : > Add a MOD_QUIESCE event for modules. This should return error (EBUSY) : > of the module is in use. : > : > MOD_UNLOAD should now only fail if it is impossible (as opposed to : > inconvenient) to unload the module. Valid reasons are memory references : > into the module which cannot be tracked down and eliminated. : > : > When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is : > not given, MOD_QUIESCE failing will also prevent the unload. : : Hmmm, a quick check of the archives shows that I missed your discussion : of this on Thursday/Friday when I was on vacation. (Including the : extremely useful naming replies!) : : Have you kept up on the newbus discussions? The tentative plan was to : add quiesce functionality to it as part of device_detach(). Doing it at : the module layer is a bit too low since there are events that can : trigger a detach but not an unload. For instance, any driver compiled : into the kernel for an ejectable device will never be unloaded, but : certainly should quiesce/detach when the device is ejected. Getting it : right in newbus automatically fixes the problem you're trying to solve : since a module unload always triggers a call to device_detach() but not : vice versa. : : I think duplicating this at multiple layers is not a good idea and the : module level is not the right layer to implement it. Actually, the talk was that newbus would grow knowledge of these things as well. MOD_QUIESCE would translate into something sensible at the newbus layer that would also be used for other things that are related. The glue layer hasn't been translated because phk didn't want to hear about it when he soliticed requests and didn't want to talk about the implications for newbus. Newbus will need to understand this new message, but it has nothing to connect it to at the moment. Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:29: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 2E81716A4CE; Tue, 13 Jul 2004 20:29:59 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82D9943D31; Tue, 13 Jul 2004 20:29:58 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKTmVT024671; Tue, 13 Jul 2004 22:29:49 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 14:20:11 MDT." <20040713.142011.51857482.imp@bsdimp.com> Date: Tue, 13 Jul 2004 22:29:48 +0200 Message-ID: <24670.1089750588@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:29:59 -0000 In message <20040713.142011.51857482.imp@bsdimp.com>, "M. Warner Losh" writes: >Too many years of having weird, odd-ball attachments maybe? That's >why newbus was created: to have a unified heirarchy to make it easier >to write drivers. Right, we call that Second Systems Syndrome over here :-) >Frankly, I dislike your obstructionist attitudes towards newbus. Obstructionist ? That's a pretty harsh word for somebody who has wasted a couple of months trying to write a newbus-ified GEOM. -- 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 Tue Jul 13 20:35: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 2E44316A4D1; Tue, 13 Jul 2004 20:35:14 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDD6443D2F; Tue, 13 Jul 2004 20:35:13 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6DKZBrb028372 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 13 Jul 2004 13:35:11 -0700 Message-ID: <40F4477F.9020906@root.org> Date: Tue, 13 Jul 2004 13:35:11 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Poul-Henning Kamp References: <24670.1089750588@critter.freebsd.dk> In-Reply-To: <24670.1089750588@critter.freebsd.dk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:35:14 -0000 Poul-Henning Kamp wrote: > ... somebody who has > wasted a couple of months trying to write a newbus-ified GEOM. I'll happily help review patches/designs for this. -- -Nate From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:36: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 0717316A4CE; Tue, 13 Jul 2004 20:36:54 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 730AC43D3F; Tue, 13 Jul 2004 20:36:52 +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 i6DKXc6r053157; Tue, 13 Jul 2004 14:33:38 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 14:33:42 -0600 (MDT) Message-Id: <20040713.143342.17590193.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <24670.1089750588@critter.freebsd.dk> References: <20040713.142011.51857482.imp@bsdimp.com> <24670.1089750588@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:36:55 -0000 In message: <24670.1089750588@critter.freebsd.dk> "Poul-Henning Kamp" writes: : >Too many years of having weird, odd-ball attachments maybe? That's : >why newbus was created: to have a unified heirarchy to make it easier : >to write drivers. : : Right, we call that Second Systems Syndrome over here :-) Baseless namecalling won't accomplish anything. : >Frankly, I dislike your obstructionist attitudes towards newbus. : : Obstructionist ? That's a pretty harsh word for somebody who has : wasted a couple of months trying to write a newbus-ified GEOM. It just seems that whenever the topic of newbus comes up, you don't want to use it. Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:42: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 7A76516A4CE; Tue, 13 Jul 2004 20:42:42 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3531E43D45; Tue, 13 Jul 2004 20:42:42 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6DKgerb028465 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 13 Jul 2004 13:42:41 -0700 Message-ID: <40F44940.4020406@root.org> Date: Tue, 13 Jul 2004 13:42:40 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Poul-Henning Kamp References: <23944.1089748527@critter.freebsd.dk> In-Reply-To: <23944.1089748527@critter.freebsd.dk> 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/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:42:42 -0000 Poul-Henning Kamp wrote: > In message <40F43D36.2000407@root.org>, Nate Lawson writes: > >>Have you kept up on the newbus discussions? The tentative plan was to >>add quiesce functionality to it as part of device_detach(). Doing it at >>the module layer is a bit too low since there are events that can >>trigger a detach but not an unload. For instance, any driver compiled >>into the kernel for an ejectable device will never be unloaded, but >>certainly should quiesce/detach when the device is ejected. Getting it >>right in newbus automatically fixes the problem you're trying to solve >>since a module unload always triggers a call to device_detach() but not >>vice versa. >> >>I think duplicating this at multiple layers is not a good idea and the >>module level is not the right layer to implement it. > > Well, since one kld can contain multiple modules, and since the modules > get to veto an unload with MOD_UNLOAD, I don't really see how you can > come up with something that doesn't have a MOD_QUIESCE. There are two parts, the internal structure and interfaces. The internal structure should obviously be one or more calls to device_detach(). The external interface does not exist yet and you're welcome to contribute. There is at least a usermode component ("eject ed0") and a kernel mode component ("this device_t will soon be gone"). Of course, there will be more than this. To address your specific issue, there doesn't have to be MOD_QUIESCE. The normal MOD_UNLOAD request will trigger (multiple calls to) device_detach via a TBD kernel interface. This detach needs to be multiple pass (notify, gone). > The fact that we have many modules which know nothing about newbus > also look like a pretty solid argument for needing it at the module > layer. Let's focus on how to improve things, not the fact that things aren't perfect right now. -- -Nate From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:43: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 B0D7F16A4CE; Tue, 13 Jul 2004 20:43:15 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CE0F43D46; Tue, 13 Jul 2004 20:43:15 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKhBUU025077; Tue, 13 Jul 2004 22:43:11 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 14:33:42 MDT." <20040713.143342.17590193.imp@bsdimp.com> Date: Tue, 13 Jul 2004 22:43:11 +0200 Message-ID: <25076.1089751391@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:43:15 -0000 In message <20040713.143342.17590193.imp@bsdimp.com>, "M. Warner Losh" writes: >: >Frankly, I dislike your obstructionist attitudes towards newbus. >: >: Obstructionist ? That's a pretty harsh word for somebody who has >: wasted a couple of months trying to write a newbus-ified GEOM. > >It just seems that whenever the topic of newbus comes up, you don't >want to use it. Can we just say that having tried it out in a couple of the areas where people keep saying it should go, I appreciate the size of the gap between what newbus can today and what it needs to learn before the fully newbusified kernel can be a realistic dream. That is not obstructionist, that is being realistic. -- 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 Tue Jul 13 20:43: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 0261316A4CE; Tue, 13 Jul 2004 20:43:46 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED3043D2D; Tue, 13 Jul 2004 20:43:45 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKhgAx025097; Tue, 13 Jul 2004 22:43:42 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nate Lawson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 13:35:11 PDT." <40F4477F.9020906@root.org> Date: Tue, 13 Jul 2004 22:43:42 +0200 Message-ID: <25096.1089751422@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:43:46 -0000 In message <40F4477F.9020906@root.org>, Nate Lawson writes: >Poul-Henning Kamp wrote: >> ... somebody who has >> wasted a couple of months trying to write a newbus-ified GEOM. > >I'll happily help review patches/designs for this. No need to. It doesn't work because newbus doesn't support multiple interitance. -- 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 Tue Jul 13 20:49: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 2EE1716A4CF; Tue, 13 Jul 2004 20:49:03 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF0743D41; Tue, 13 Jul 2004 20:49:02 +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 i6DKlsgC053463; Tue, 13 Jul 2004 14:47:55 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 14:47:58 -0600 (MDT) Message-Id: <20040713.144758.88381443.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <25096.1089751422@critter.freebsd.dk> References: <40F4477F.9020906@root.org> <25096.1089751422@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:49:03 -0000 In message: <25096.1089751422@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <40F4477F.9020906@root.org>, Nate Lawson writes: : >Poul-Henning Kamp wrote: : >> ... somebody who has : >> wasted a couple of months trying to write a newbus-ified GEOM. : > : >I'll happily help review patches/designs for this. : : No need to. It doesn't work because newbus doesn't support : multiple interitance. Yes it does. Or are you talking about multi-pathing... Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20: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 10A7116A4CE; Tue, 13 Jul 2004 20:49:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E42E343D2F; Tue, 13 Jul 2004 20:49:13 +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 i6DKnD7Y076455; Tue, 13 Jul 2004 20:49:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DKnDMv076454; Tue, 13 Jul 2004 20:49:13 GMT (envelope-from jhb) Message-Id: <200407132049.i6DKnDMv076454@repoman.freebsd.org> From: John Baldwin Date: Tue, 13 Jul 2004 20:49: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/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: Tue, 13 Jul 2004 20:49:14 -0000 jhb 2004-07-13 20:49:13 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Set TDF_NEEDRESCHED when a higher priority thread is scheduled in sched_add() rather than just doing it in sched_wakeup(). The old ithread preemption code used to set NEEDRESCHED unconditionally if it didn't preempt which masked this bug in SCHED_4BSD. Noticed by: jake Reported by: kensmith, marcel Revision Changes Path 1.44 +1 -1 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 20:50: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 9CDF916A4CE; Tue, 13 Jul 2004 20:50:44 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF11F43D3F; Tue, 13 Jul 2004 20:50:43 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKoh6o025282; Tue, 13 Jul 2004 22:50:43 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nate Lawson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 13:42:40 PDT." <40F44940.4020406@root.org> Date: Tue, 13 Jul 2004 22:50:43 +0200 Message-ID: <25281.1089751843@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:50:44 -0000 In message <40F44940.4020406@root.org>, Nate Lawson writes: >> The fact that we have many modules which know nothing about newbus >> also look like a pretty solid argument for needing it at the module >> layer. > >Let's focus on how to improve things, not the fact that things aren't >perfect right now. But I think you miss the point: This is about giving root the ability to add a "damnit!" after "kldunload foo". This is not about "eject ed0", this is about "evict the ed driver". There is only one sane way to implement that: Pass the flag to the module and have the module decided if it is possible. Only the module knows if there are memory references outstanding which cannot be cleaned up (which would prevent unloading even if -f is given) and only the module will know how to tear things down as gracefully as possible when given a -f. -- 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 Tue Jul 13 20:55: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 D939F16A4CE; Tue, 13 Jul 2004 20:55:49 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37B2343D49; Tue, 13 Jul 2004 20:55:49 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DKtjjA025437; Tue, 13 Jul 2004 22:55:45 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 14:47:58 MDT." <20040713.144758.88381443.imp@bsdimp.com> Date: Tue, 13 Jul 2004 22:55:44 +0200 Message-ID: <25436.1089752144@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 20:55:50 -0000 In message <20040713.144758.88381443.imp@bsdimp.com>, "M. Warner Losh" writes: >In message: <25096.1089751422@critter.freebsd.dk> > "Poul-Henning Kamp" writes: >: In message <40F4477F.9020906@root.org>, Nate Lawson writes: >: >Poul-Henning Kamp wrote: >: >> ... somebody who has >: >> wasted a couple of months trying to write a newbus-ified GEOM. >: > >: >I'll happily help review patches/designs for this. >: >: No need to. It doesn't work because newbus doesn't support >: multiple interitance. > >Yes it does. Or are you talking about multi-pathing... It does ? When did that happen ? I'm pretty sure i mean "multiple inheritance": objects A, B, X, Y; A is a child of X and Y; B is a child of Y and Z; that was called multiple inheritance last I read about OO. (Multi-pathing is the ability to join independent paths, that is the correct way to solve the FC redundancy issue, and I belive we need both CAM and newbus to learn new tricls before that is realistic) -- 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 Tue Jul 13 21:18: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 CEA9716A4CE; Tue, 13 Jul 2004 21:18:51 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 631A743D2D; Tue, 13 Jul 2004 21:18:51 +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 i6DLFjCw053865; Tue, 13 Jul 2004 15:15:46 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 15:15:49 -0600 (MDT) Message-Id: <20040713.151549.66796909.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <25436.1089752144@critter.freebsd.dk> References: <20040713.144758.88381443.imp@bsdimp.com> <25436.1089752144@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 21:18:52 -0000 In message: <25436.1089752144@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <20040713.144758.88381443.imp@bsdimp.com>, "M. Warner Losh" writes: : >In message: <25096.1089751422@critter.freebsd.dk> : > "Poul-Henning Kamp" writes: : >: In message <40F4477F.9020906@root.org>, Nate Lawson writes: : >: >Poul-Henning Kamp wrote: : >: >> ... somebody who has : >: >> wasted a couple of months trying to write a newbus-ified GEOM. : >: > : >: >I'll happily help review patches/designs for this. : >: : >: No need to. It doesn't work because newbus doesn't support : >: multiple interitance. : > : >Yes it does. Or are you talking about multi-pathing... : : It does ? When did that happen ? When Doug added the subclassing stuff some months ago. cardbus now is a subclass of pci, for example. : I'm pretty sure i mean "multiple inheritance": : : objects A, B, X, Y; : A is a child of X and Y; : B is a child of Y and Z; : : that was called multiple inheritance last I read about OO. If you are talking types, that's multiple inheritance. If you are talking instances in the object tree, that's multi pathing. newbus definitely supports multiple inheritance like you describe. Just use DEFINE_CLASS_2 for objects A and B and list X and Y for the first one and Y and Z for the second. : (Multi-pathing is the ability to join independent paths, that is : the correct way to solve the FC redundancy issue, and I belive we : need both CAM and newbus to learn new tricls before that is realistic) Agreed. Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 21:22: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 84D2516A4CE; Tue, 13 Jul 2004 21:22:39 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id D95F743D45; Tue, 13 Jul 2004 21:22:38 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DLMaPO025997; Tue, 13 Jul 2004 23:22:36 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 15:15:49 MDT." <20040713.151549.66796909.imp@bsdimp.com> Date: Tue, 13 Jul 2004 23:22:36 +0200 Message-ID: <25996.1089753756@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 21:22:39 -0000 In message <20040713.151549.66796909.imp@bsdimp.com>, "M. Warner Losh" writes: >: I'm pretty sure i mean "multiple inheritance": >: >: objects A, B, X, Y; >: A is a child of X and Y; >: B is a child of Y and Z; >: >: that was called multiple inheritance last I read about OO. > >If you are talking types, that's multiple inheritance. If you are >talking instances in the object tree, that's multi pathing. > >newbus definitely supports multiple inheritance like you describe. >Just use DEFINE_CLASS_2 for objects A and B and list X and Y for the >first one and Y and Z for the second. That was another thing I ran into with newbus: I had to define things at compile time which I only knew at (auto-)configure time. -- 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 Tue Jul 13 21:37: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 C917416A4CE; Tue, 13 Jul 2004 21:37:48 +0000 (GMT) Received: from av5-1-sn3.vrr.skanova.net (av5-1-sn3.vrr.skanova.net [81.228.9.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 568B543D1D; Tue, 13 Jul 2004 21:37:48 +0000 (GMT) (envelope-from daniel_k_eriksson@telia.com) Received: by av5-1-sn3.vrr.skanova.net (Postfix, from userid 502) id 83DFF37EDC; Tue, 13 Jul 2004 23:37:47 +0200 (CEST) Received: from smtp1-2-sn3.vrr.skanova.net (smtp1-2-sn3.vrr.skanova.net [81.228.9.178]) by av5-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 75E2B37E68; Tue, 13 Jul 2004 23:37:47 +0200 (CEST) Received: from gadget (h130n1fls11o822.telia.com [213.64.66.130]) by smtp1-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 3D42938009; Tue, 13 Jul 2004 23:37:47 +0200 (CEST) From: "Daniel Eriksson" To: "'John Baldwin'" , Date: Tue, 13 Jul 2004 23:36:17 +0200 Organization: Home Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 In-Reply-To: <200407132049.i6DKnDMv076454@repoman.freebsd.org> Importance: Normal Subject: RE: 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: Tue, 13 Jul 2004 21:37:48 -0000 John Baldwin wrote: > Set TDF_NEEDRESCHED when a higher priority thread is scheduled in > sched_add() rather than just doing it in sched_wakeup(). The old > ithread preemption code used to set NEEDRESCHED=20 > unconditionally if it > didn't preempt which masked this bug in SCHED_4BSD. Does this mean it should be safe to turn preemption back on in param.h = (for a kernel using SHED_4BSD)? Or is this not related to the hard hangs = reported over the last week? /Daniel From owner-cvs-src@FreeBSD.ORG Tue Jul 13 21: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 E952C16A4CE; Tue, 13 Jul 2004 21:40:02 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C15D43D41; Tue, 13 Jul 2004 21:40:01 +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 i6DLarZ9054111; Tue, 13 Jul 2004 15:36:54 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Jul 2004 15:36:57 -0600 (MDT) Message-Id: <20040713.153657.36025694.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <25996.1089753756@critter.freebsd.dk> References: <20040713.151549.66796909.imp@bsdimp.com> <25996.1089753756@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: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 21:40:03 -0000 In message: <25996.1089753756@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <20040713.151549.66796909.imp@bsdimp.com>, "M. Warner Losh" writes: : : >: I'm pretty sure i mean "multiple inheritance": : >: : >: objects A, B, X, Y; : >: A is a child of X and Y; : >: B is a child of Y and Z; : >: : >: that was called multiple inheritance last I read about OO. : > : >If you are talking types, that's multiple inheritance. If you are : >talking instances in the object tree, that's multi pathing. : > : >newbus definitely supports multiple inheritance like you describe. : >Just use DEFINE_CLASS_2 for objects A and B and list X and Y for the : >first one and Y and Z for the second. : : That was another thing I ran into with newbus: I had to define : things at compile time which I only knew at (auto-)configure time. Which things? Warner From owner-cvs-src@FreeBSD.ORG Tue Jul 13 21: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 D2CE616A4CE; Tue, 13 Jul 2004 21:45:37 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7E2243D41; Tue, 13 Jul 2004 21:45:36 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i6DLjWvA026427; Tue, 13 Jul 2004 23:45:32 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 13 Jul 2004 15:36:57 MDT." <20040713.153657.36025694.imp@bsdimp.com> Date: Tue, 13 Jul 2004 23:45:32 +0200 Message-ID: <26426.1089755132@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 21:45:38 -0000 In message <20040713.153657.36025694.imp@bsdimp.com>, "M. Warner Losh" writes: >: That was another thing I ran into with newbus: I had to define >: things at compile time which I only knew at (auto-)configure time. > >Which things? Which classes I would expect to tie up to, but I guess this could have been solved by the subclassing thing. -- 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 Tue Jul 13 22:38: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 23D9916A4CE; Tue, 13 Jul 2004 22:38:54 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C410843D41; Tue, 13 Jul 2004 22:38:53 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6DMcdMj051145; Tue, 13 Jul 2004 18:38:39 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6DMccCO051142; Tue, 13 Jul 2004 18:38:38 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 13 Jul 2004 18:38:38 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: "M. Warner Losh" In-Reply-To: <20040713.153657.36025694.imp@bsdimp.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@freebsd.org cc: cvs-src@freebsd.org cc: scottl@freebsd.org cc: cvs-all@freebsd.org cc: phk@phk.freebsd.dk cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 13 Jul 2004 22:38:54 -0000 On Tue, 13 Jul 2004, M. Warner Losh wrote: > : >newbus definitely supports multiple inheritance like you describe. > : >Just use DEFINE_CLASS_2 for objects A and B and list X and Y for the > : >first one and Y and Z for the second. > : > : That was another thing I ran into with newbus: I had to define > : things at compile time which I only knew at (auto-)configure time. > > Which things? If I might suggest -- this is not the right mailing list for a discussion of how to make most of FreeBSD's kernel features fit the Newbus architecture. Probably the arch@ mailing list is the place to do that. That said, I'm not sure I see the kldunload state changes as incompatible with the notion of having most kernel modules become newbussified, especially given that there are a lot of kernel extension interfaces (many of which were named by Poul-Henning), and many of which would benefit from a safe unloading mechanism without having to substantially modify them in the mean time. The primary goal, presumably, would therefore be to make sure that the KLD interface was semantically compatible with the Newbus model, and not that it not exist. I suggest creating a thread named "Newbus the world" on arch@, in which the major classes of kernel modules and extension interfaces are documented, along with ideas about how they could usefully turn into Newbus-enabled pieces. Poul-Henning's list is a decent starting point, but probably not a complete list. Remember to tell people why switching to Newbus would be an improvement, especially for modules and module systems that don't clearly map onto synthetic or real devices, such as Netgraph nodes, MAC policy modules, schedulers, network protocols, file systems, etc. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:41: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 907CB16A4D9; Tue, 13 Jul 2004 22:40:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4927743D1D; Tue, 13 Jul 2004 22:40:59 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6DMexY8079646; Tue, 13 Jul 2004 22:40:59 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMexXT079645; Tue, 13 Jul 2004 22:40:59 GMT (envelope-from cognet) Message-Id: <200407132240.i6DMexXT079645@repoman.freebsd.org> From: Olivier Houchard Date: Tue, 13 Jul 2004 22:40: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/arm/arm 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: Tue, 13 Jul 2004 22:41:02 -0000 cognet 2004-07-13 22:40:59 UTC FreeBSD src repository Modified files: sys/arm/arm pmap.c Log: In pmap_remove_pages(), when the pv_list is entry, we want to clean the PG_WRITEABLE flag, not the PG_REFERENCED flag. Submitted by: alc Revision Changes Path 1.6 +2 -3 src/sys/arm/arm/pmap.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:49: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 3C91316A4CE; Tue, 13 Jul 2004 22:49:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3041F43D31; Tue, 13 Jul 2004 22:49:59 +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 i6DMnwTt079992; Tue, 13 Jul 2004 22:49:58 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMnwNe079991; Tue, 13 Jul 2004 22:49:58 GMT (envelope-from davidxu) Message-Id: <200407132249.i6DMnwNe079991@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:49: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/libpthread/thread thr_exit.c thr_kern.c thr_priority_queue.c thr_private.h thr_spec.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, 13 Jul 2004 22:49:59 -0000 davidxu 2004-07-13 22:49:58 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_exit.c thr_kern.c thr_priority_queue.c thr_private.h thr_spec.c Log: Add code to support thread debugging. 1. Add global varible _libkse_debug, debugger uses the varible to identify libpthread. when the varible is written to non-zero by debugger, libpthread will take some special action at context switch time, it will check TMDF_DOTRUNUSER flags, if a thread has the flags set by debugger, it won't be scheduled, when a thread leaves KSE critical region, thread checks the flag, if it was set, the thread relinquish CPU. 2. Add pq_first_debug to select a thread allowd to run by debugger. 3. Some names prefixed with _thr are renamed to _thread prefix. which is allowed to run by debugger. Revision Changes Path 1.36 +3 -3 src/lib/libpthread/thread/thr_exit.c 1.107 +54 -8 src/lib/libpthread/thread/thr_kern.c 1.15 +51 -0 src/lib/libpthread/thread/thr_priority_queue.c 1.115 +24 -12 src/lib/libpthread/thread/thr_private.h 1.22 +14 -21 src/lib/libpthread/thread/thr_spec.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:51: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 91FA916A4CE; Tue, 13 Jul 2004 22:51:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FF4143D39; Tue, 13 Jul 2004 22:51: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 i6DMp3iO080170; Tue, 13 Jul 2004 22:51:03 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMp30f080169; Tue, 13 Jul 2004 22:51:03 GMT (envelope-from davidxu) Message-Id: <200407132251.i6DMp30f080169@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:51: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/lib/libpthread/thread thr_init.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, 13 Jul 2004 22:51:04 -0000 davidxu 2004-07-13 22:51:03 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_init.c Log: If _libkse_debug is not zero, activate thread mode. Revision Changes Path 1.63 +6 -0 src/lib/libpthread/thread/thr_init.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:52: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 2F1F116A4DF; Tue, 13 Jul 2004 22:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BE0B43D48; Tue, 13 Jul 2004 22:52:12 +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 i6DMqBZd080236; Tue, 13 Jul 2004 22:52:11 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMqBkS080235; Tue, 13 Jul 2004 22:52:11 GMT (envelope-from davidxu) Message-Id: <200407132252.i6DMqBkS080235@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:52: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/lib/libpthread/thread thr_sig.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, 13 Jul 2004 22:52:12 -0000 davidxu 2004-07-13 22:52:11 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_sig.c Log: Let debugger check signal, make SIGINFO works. Revision Changes Path 1.79 +25 -12 src/lib/libpthread/thread/thr_sig.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:52: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 A89C416A572; Tue, 13 Jul 2004 22:52:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85C1743D2F; Tue, 13 Jul 2004 22:52:53 +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 i6DMqrlx080294; Tue, 13 Jul 2004 22:52:53 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMqrci080293; Tue, 13 Jul 2004 22:52:53 GMT (envelope-from davidxu) Message-Id: <200407132252.i6DMqrci080293@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:52: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/lib/libpthread pthread.map X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Jul 2004 22:52:55 -0000 davidxu 2004-07-13 22:52:53 UTC FreeBSD src repository Modified files: lib/libpthread pthread.map Log: Export necessary symbols to debugger. Revision Changes Path 1.11 +4 -7 src/lib/libpthread/pthread.map From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:53: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 AD1A816A4DC; Tue, 13 Jul 2004 22:53:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A9EB43D2F; Tue, 13 Jul 2004 22:53:56 +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 i6DMruFF080411; Tue, 13 Jul 2004 22:53:56 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMrumw080410; Tue, 13 Jul 2004 22:53:56 GMT (envelope-from davidxu) Message-Id: <200407132253.i6DMrumw080410@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:53: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/lib/libpthread/thread thr_create.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, 13 Jul 2004 22:53:56 -0000 davidxu 2004-07-13 22:53:56 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_create.c Log: Remove unused symbols. Revision Changes Path 1.55 +0 -14 src/lib/libpthread/thread/thr_create.c From owner-cvs-src@FreeBSD.ORG Tue Jul 13 22:54: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 9AF7C16A4CE; Tue, 13 Jul 2004 22:54:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E81E43D2D; Tue, 13 Jul 2004 22:54:23 +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 i6DMsNd0080537; Tue, 13 Jul 2004 22:54:23 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6DMsNTG080536; Tue, 13 Jul 2004 22:54:23 GMT (envelope-from davidxu) Message-Id: <200407132254.i6DMsNTG080536@repoman.freebsd.org> From: David Xu Date: Tue, 13 Jul 2004 22:54: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/lib/libpthread/arch/alpha/include pthread_md.h src/lib/libpthread/arch/amd64/include pthread_md.h src/lib/libpthread/arch/arm/include pthread_md.h src/lib/libpthread/arch/sparc64/include pthread_md.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, 13 Jul 2004 22:54:23 -0000 davidxu 2004-07-13 22:54:23 UTC FreeBSD src repository Modified files: lib/libpthread/arch/alpha/include pthread_md.h lib/libpthread/arch/amd64/include pthread_md.h lib/libpthread/arch/arm/include pthread_md.h lib/libpthread/arch/i386/include pthread_md.h lib/libpthread/arch/sparc64/include pthread_md.h Log: Call kse_switchin to switch context when being debugged. Revision Changes Path 1.4 +20 -7 src/lib/libpthread/arch/alpha/include/pthread_md.h 1.6 +22 -8 src/lib/libpthread/arch/amd64/include/pthread_md.h 1.2 +14 -5 src/lib/libpthread/arch/arm/include/pthread_md.h 1.8 +18 -6 src/lib/libpthread/arch/i386/include/pthread_md.h 1.2 +15 -5 src/lib/libpthread/arch/sparc64/include/pthread_md.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 00:03: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 C1E0D16A4CE; Wed, 14 Jul 2004 00:03:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0B5243D1F; Wed, 14 Jul 2004 00:03:30 +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 i6E03Ukd082361; Wed, 14 Jul 2004 00:03:30 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E03U3F082360; Wed, 14 Jul 2004 00:03:30 GMT (envelope-from peter) Message-Id: <200407140003.i6E03U3F082360@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Jul 2004 00:03: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/compat/freebsd32 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: Wed, 14 Jul 2004 00:03:30 -0000 peter 2004-07-14 00:03:30 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 syscalls.master Log: Unmapped syscalls should be NOPROTO so that we don't get a duplicate prototype. (kldunloadf in this case) Revision Changes Path 1.40 +1 -1 src/sys/compat/freebsd32/syscalls.master From owner-cvs-src@FreeBSD.ORG Wed Jul 14 00:03: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 222B616A4CE; Wed, 14 Jul 2004 00:03:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F0A43D2D; Wed, 14 Jul 2004 00:03:51 +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 i6E03pkB082416; Wed, 14 Jul 2004 00:03:51 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E03pZu082415; Wed, 14 Jul 2004 00:03:51 GMT (envelope-from peter) Message-Id: <200407140003.i6E03pZu082415@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Jul 2004 00:03: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/compat/freebsd32 freebsd32_proto.hfreebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.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, 14 Jul 2004 00:03:52 -0000 peter 2004-07-14 00:03:51 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: Regen Revision Changes Path 1.28 +1 -6 src/sys/compat/freebsd32/freebsd32_proto.h 1.28 +1 -1 src/sys/compat/freebsd32/freebsd32_syscall.h 1.19 +1 -1 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.29 +1 -1 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 00:35: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 A7B4F16A4CE; Wed, 14 Jul 2004 00:35:17 +0000 (GMT) Received: from pd3mo3so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B4D43D3F; Wed, 14 Jul 2004 00:35:15 +0000 (GMT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from pd4mr7so.prod.shaw.ca (pd4mr7so-qfe3.prod.shaw.ca [10.0.141.84])2003)) with ESMTP id <0I0T00DHVFXJBE@l-daemon>; Tue, 13 Jul 2004 18:27:19 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd4mr7so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I0T001J5FXHLHI0@pd4mr7so.prod.shaw.ca>; Tue, 13 Jul 2004 18:27:17 -0600 (MDT) Received: from piii600.wadham.ox.ac.uk (S0106006067227a4a.vc.shawcable.net [24.87.233.42])2003)) with ESMTP id <0I0T00I43FXFN7@l-daemon>; Tue, 13 Jul 2004 18:27:17 -0600 (MDT) Date: Tue, 13 Jul 2004 17:26:16 -0700 From: Colin Percival In-reply-to: <25281.1089751843@critter.freebsd.dk> X-Sender: cperciva@popserver.sfu.ca (Unverified) To: Poul-Henning Kamp Message-id: <6.1.0.6.1.20040713171800.03d86568@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: <25281.1089751843@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 14 Jul 2004 00:35:17 -0000 At 13:50 13/07/2004, Poul-Henning Kamp wrote: >But I think you miss the point: This is about giving root the ability >to add a "damnit!" after "kldunload foo". As a (mostly) side note, this will be useful from the point of view of security as well. When there is a security advisory concerning an optional module (compat/linux being the most recent example) it would be nice to have a more effective workaround than "well, you can try `kldunload linux`, but it probably won't work... if it doesn't work, you'll have to reboot the system". Colin Percival From owner-cvs-src@FreeBSD.ORG Wed Jul 14 00:38:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0604916A4CE; Wed, 14 Jul 2004 00:38:59 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i6E0cwiS060021; Tue, 13 Jul 2004 20:38:58 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.12.11/8.12.11/Submit) id i6E0cvQL060020; Tue, 13 Jul 2004 20:38:57 -0400 (EDT) (envelope-from green) Date: Tue, 13 Jul 2004 20:38:56 -0400 From: Brian Fundakowski Feldman To: Colin Percival Message-ID: <20040714003856.GR1626@green.homeunix.org> References: <25281.1089751843@critter.freebsd.dk> <6.1.0.6.1.20040713171800.03d86568@popserver.sfu.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6.1.0.6.1.20040713171800.03d86568@popserver.sfu.ca> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: Poul-Henning Kamp cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 14 Jul 2004 00:38:59 -0000 On Tue, Jul 13, 2004 at 05:26:16PM -0700, Colin Percival wrote: > At 13:50 13/07/2004, Poul-Henning Kamp wrote: > >But I think you miss the point: This is about giving root the ability > >to add a "damnit!" after "kldunload foo". > > As a (mostly) side note, this will be useful from the point of view of > security as well. When there is a security advisory concerning an > optional module (compat/linux being the most recent example) it would > be nice to have a more effective workaround than "well, you can try > `kldunload linux`, but it probably won't work... if it doesn't work, > you'll have to reboot the system". "Well, you can try 'kldunload -f linux', but it probably won't work... if it doesn't work, I guess a crash isn't really much worse than a reboot." -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Wed Jul 14 00:58: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 95F4016A4CE; Wed, 14 Jul 2004 00:58:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D0643D3F; Wed, 14 Jul 2004 00:58:53 +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 i6E0wr4N083825; Wed, 14 Jul 2004 00:58:53 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E0wrmS083824; Wed, 14 Jul 2004 00:58:53 GMT (envelope-from davidxu) Message-Id: <200407140058.i6E0wrmS083824@repoman.freebsd.org> From: David Xu Date: Wed, 14 Jul 2004 00:58: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/lib/libpthread/arch/arm/include pthread_md.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, 14 Jul 2004 00:58:53 -0000 davidxu 2004-07-14 00:58:53 UTC FreeBSD src repository Modified files: lib/libpthread/arch/arm/include pthread_md.h Log: Copy lwp id to thread mailbox. Revision Changes Path 1.3 +1 -0 src/lib/libpthread/arch/arm/include/pthread_md.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 03:05: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 0835016A4CE; Wed, 14 Jul 2004 03:05:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF33E43D3F; Wed, 14 Jul 2004 03:05:19 +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 i6E35JdO087079; Wed, 14 Jul 2004 03:05:19 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E35Jam087078; Wed, 14 Jul 2004 03:05:19 GMT (envelope-from alc) Message-Id: <200407140305.i6E35Jam087078@repoman.freebsd.org> From: Alan Cox Date: Wed, 14 Jul 2004 03:05: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/sys/alpha/alpha 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, 14 Jul 2004 03:05:20 -0000 alc 2004-07-14 03:05:19 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c Log: In pmap_remove_pages(), when clearing a pte, update the corresponding page's dirty mask. Reviewed by: gallatin@ Revision Changes Path 1.156 +4 -0 src/sys/alpha/alpha/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 04:58: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 1F4C316A4CE; Wed, 14 Jul 2004 04:58:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0029343D1F; Wed, 14 Jul 2004 04:58:05 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6E4w5Wk090092; Wed, 14 Jul 2004 04:58:05 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E4w5ON090091; Wed, 14 Jul 2004 04:58:05 GMT (envelope-from murray) Message-Id: <200407140458.i6E4w5ON090091@repoman.freebsd.org> From: Murray Stokely Date: Wed, 14 Jul 2004 04:58: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/share/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 04:58:06 -0000 murray 2004-07-14 04:58:05 UTC FreeBSD src repository Modified files: share/dict freebsd Log: Add more technical acronyms, product names, country names, and technical english words to reduce the number of false positives when spellchecking our documentation. Revision Changes Path 1.7 +65 -2 src/share/dict/freebsd From owner-cvs-src@FreeBSD.ORG Wed Jul 14 05:01: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 5414A16A4CF; Wed, 14 Jul 2004 05:01:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 351C643D53; Wed, 14 Jul 2004 05:01:41 +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 i6E51far090233; Wed, 14 Jul 2004 05:01:41 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E51fNU090232; Wed, 14 Jul 2004 05:01:41 GMT (envelope-from rwatson) Message-Id: <200407140501.i6E51fNU090232@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 05:01: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/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: Wed, 14 Jul 2004 05:01:41 -0000 rwatson 2004-07-14 05:01:41 UTC FreeBSD src repository Modified files: sys/net if_sl.c Log: Convert SLIP to using C99 structure initialization for its struct linesw. Revision Changes Path 1.120 +8 -2 src/sys/net/if_sl.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 05:15: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 BBC2B16A4CE; Wed, 14 Jul 2004 05:15:49 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A68B43D45; Wed, 14 Jul 2004 05:15:49 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.11/8.12.11) with ESMTP id i6E5FfmP018578; Wed, 14 Jul 2004 09:15:41 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.11/8.12.11/Submit) id i6E5FeUw018577; Wed, 14 Jul 2004 09:15:40 +0400 (MSD) (envelope-from ache) Date: Wed, 14 Jul 2004 09:15:40 +0400 From: Andrey Chernov To: Oliver Eikemeier Message-ID: <20040714051540.GA18511@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Oliver Eikemeier , "Tim J. Robbins" , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200407090208.i69287du035795@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.5; VDF 6.26.0.26 (host: pobrecita.freebsd.ru) cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: "Tim J. Robbins" Subject: Re: cvs commit: src/usr.bin/tr Makefile cmap.c cmap.h cset.c cset.h extern.h str.c tr.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, 14 Jul 2004 05:15:49 -0000 On Tue, Jul 13, 2004 at 07:05:20PM +0200, Oliver Eikemeier wrote: > I'm not exactly sure, but is > > > echo "http://wwww.maxmind.com/" | tr -s " " ";" > htp:/w.maxmind.com/ > > the expected result here? No, nothing should be changed. -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Wed Jul 14 05:23: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 269A016A4CE; Wed, 14 Jul 2004 05:23:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09BC143D3F; Wed, 14 Jul 2004 05:23:17 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6E5NG8P090784; Wed, 14 Jul 2004 05:23:16 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E5NGmr090783; Wed, 14 Jul 2004 05:23:16 GMT (envelope-from murray) Message-Id: <200407140523.i6E5NGmr090783@repoman.freebsd.org> From: Murray Stokely Date: Wed, 14 Jul 2004 05: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/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 05:23:17 -0000 murray 2004-07-14 05:23:16 UTC FreeBSD src repository Modified files: share/dict freebsd Log: More technical terms. MFC After: 3 days Revision Changes Path 1.8 +22 -2 src/share/dict/freebsd From owner-cvs-src@FreeBSD.ORG Wed Jul 14 05:32: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 E45CE16A4CE; Wed, 14 Jul 2004 05:32:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C740443D31; Wed, 14 Jul 2004 05:32: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 i6E5Wtc1091132; Wed, 14 Jul 2004 05:32:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E5WtDO091131; Wed, 14 Jul 2004 05:32:55 GMT (envelope-from rwatson) Message-Id: <200407140532.i6E5WtDO091131@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 05:32: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/snp snp.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, 14 Jul 2004 05:32:56 -0000 rwatson 2004-07-14 05:32:55 UTC FreeBSD src repository Modified files: sys/dev/snp snp.c Log: Switch snoop device to using C99 initialization for struct linesw. Revision Changes Path 1.91 +8 -2 src/sys/dev/snp/snp.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 05:49: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 B929B16A4CE; Wed, 14 Jul 2004 05:49:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C1A343D2D; Wed, 14 Jul 2004 05:49:44 +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 i6E5nivI091675; Wed, 14 Jul 2004 05:49:44 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E5nide091674; Wed, 14 Jul 2004 05:49:44 GMT (envelope-from alc) Message-Id: <200407140549.i6E5nide091674@repoman.freebsd.org> From: Alan Cox Date: Wed, 14 Jul 2004 05:49: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/alpha/alpha 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, 14 Jul 2004 05:49:44 -0000 alc 2004-07-14 05:49:44 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c Log: Additional pmap locking Revision Changes Path 1.157 +49 -28 src/sys/alpha/alpha/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 06:05: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 D23AE16A4CE; Wed, 14 Jul 2004 06:05:15 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9387843D41; Wed, 14 Jul 2004 06:05:15 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.208] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BkctG-0001Bu-00; Wed, 14 Jul 2004 08:05:14 +0200 Received: from [217.83.13.82] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1BkctG-0006du-00; Wed, 14 Jul 2004 08:05:14 +0200 From: Max Laier To: Murray Stokely Date: Wed, 14 Jul 2004 08:02:51 +0200 User-Agent: KMail/1.6.2 References: <200407140523.i6E5NGmr090783@repoman.freebsd.org> In-Reply-To: <200407140523.i6E5NGmr090783@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_SyM9A2SIWVASPcm"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407140802.58627.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 06:05:16 -0000 --Boundary-02=_SyM9A2SIWVASPcm Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 14 July 2004 07:23, Murray Stokely wrote: > murray 2004-07-14 05:23:16 UTC > > FreeBSD src repository > > Modified files: > share/dict freebsd > Log: > More technical terms. > > MFC After: 3 days > > Revision Changes Path > 1.8 +22 -2 src/share/dict/freebsd > ... > +curmudgeon > ... =2E.. should be in every good technical dictionary ;) I like it, but - as far as I see - it's in web2 as well so this would be=20 redundant? =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_SyM9A2SIWVASPcm Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBA9MySXyyEoT62BG0RApWSAJ4u1UaBOY+tQ0dGjWtWlpE63LuA9gCfYetc 9+xAI9QfPGvaUVufVpslmg4= =+ETo -----END PGP SIGNATURE----- --Boundary-02=_SyM9A2SIWVASPcm-- From owner-cvs-src@FreeBSD.ORG Wed Jul 14 06:47: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 DC66616A4CE; Wed, 14 Jul 2004 06:47:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCC7943D1D; Wed, 14 Jul 2004 06:47:32 +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 i6E6lWei093257; Wed, 14 Jul 2004 06:47:32 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E6lWG8093256; Wed, 14 Jul 2004 06:47:32 GMT (envelope-from alfred) Message-Id: <200407140647.i6E6lWG8093256@repoman.freebsd.org> From: Alfred Perlstein Date: Wed, 14 Jul 2004 06:47: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/sys event.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, 14 Jul 2004 06:47:33 -0000 alfred 2004-07-14 06:47:32 UTC FreeBSD src repository Modified files: sys/sys event.h Log: do { } while(0) KNOTE macro, whitespace Revision Changes Path 1.24 +3 -2 src/sys/sys/event.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 06: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 7000116A4CE; Wed, 14 Jul 2004 06:50:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5088F43D54; Wed, 14 Jul 2004 06:50: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 i6E6omwW093426; Wed, 14 Jul 2004 06:50:48 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E6om5m093425; Wed, 14 Jul 2004 06:50:48 GMT (envelope-from julian) Message-Id: <200407140650.i6E6om5m093425@repoman.freebsd.org> From: Julian Elischer Date: Wed, 14 Jul 2004 06:50:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 06:50:48 -0000 julian 2004-07-14 06:50:48 UTC FreeBSD src repository Modified files: . access Log: Add Gleb Smirnov (glebius) so that he can officially get awarded his own pointy hats. Approved by: core of course Revision Changes Path 1.669 +1 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Wed Jul 14 06:58: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 C018516A4CE; Wed, 14 Jul 2004 06:58:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0FA043D3F; Wed, 14 Jul 2004 06:58:39 +0000 (GMT) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6E6wdbu093682; Wed, 14 Jul 2004 06:58:39 GMT (envelope-from takawata@repoman.freebsd.org) Received: (from takawata@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E6wd4K093681; Wed, 14 Jul 2004 06:58:39 GMT (envelope-from takawata) Message-Id: <200407140658.i6E6wd4K093681@repoman.freebsd.org> From: Takanori Watanabe Date: Wed, 14 Jul 2004 06:58: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/dev/acpica acpi_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, 14 Jul 2004 06:58:39 -0000 takawata 2004-07-14 06:58:39 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c Log: Follow PnP location string change in acpi.c. Revision Changes Path 1.22 +1 -1 src/sys/dev/acpica/acpi_pci.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 06:59: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 0349116A4CE; Wed, 14 Jul 2004 06:59:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B5B43D2D; Wed, 14 Jul 2004 06:59:58 +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 i6E6xwhS093732; Wed, 14 Jul 2004 06:59:58 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E6xwXj093731; Wed, 14 Jul 2004 06:59:58 GMT (envelope-from imp) Message-Id: <200407140659.i6E6xwXj093731@repoman.freebsd.org> From: Warner Losh Date: Wed, 14 Jul 2004 06:59: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/dev/fdc fdc_isa.c fdc_pccard.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, 14 Jul 2004 06:59:59 -0000 imp 2004-07-14 06:59:58 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c fdc_pccard.c Log: Fix the pccard attachment to have a chance of working. Move the resource allocation into the bus front ends. Revision Changes Path 1.5 +165 -11 src/sys/dev/fdc/fdc_isa.c 1.6 +49 -21 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 07: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 42B2C16A4CE; Wed, 14 Jul 2004 07:02:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CBE43D3F; Wed, 14 Jul 2004 07:02:04 +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 i6E7246c093921; Wed, 14 Jul 2004 07:02:04 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E724mV093920; Wed, 14 Jul 2004 07:02:04 GMT (envelope-from alfred) Message-Id: <200407140702.i6E724mV093920@repoman.freebsd.org> From: Alfred Perlstein Date: Wed, 14 Jul 2004 07:02: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/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 07:02:04 -0000 alfred 2004-07-14 07:02:03 UTC FreeBSD src repository Modified files: sys/kern kern_event.c sys/sys eventvar.h Log: Make FIOASYNC, FIOSETOWN and FIOGETOWN work on kqueues. Revision Changes Path 1.71 +29 -2 src/sys/kern/kern_event.c 1.5 +4 -2 src/sys/sys/eventvar.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 07:04: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 6533216A4CE; Wed, 14 Jul 2004 07:04:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 466F043D39; Wed, 14 Jul 2004 07:04:18 +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 i6E74IOE094007; Wed, 14 Jul 2004 07:04:18 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E74I5P094006; Wed, 14 Jul 2004 07:04:18 GMT (envelope-from imp) Message-Id: <200407140704.i6E74I5P094006@repoman.freebsd.org> From: Warner Losh Date: Wed, 14 Jul 2004 07:04: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/dev/fdc fdc.c 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, 14 Jul 2004 07:04:18 -0000 imp 2004-07-14 07:04:18 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c fdc_isa.c Log: Remove fdc_alloc_resources, which should have happened in last commit. Revision Changes Path 1.280 +1 -143 src/sys/dev/fdc/fdc.c 1.6 +1 -0 src/sys/dev/fdc/fdc_isa.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 07:10: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 9D37316A4CE; Wed, 14 Jul 2004 07:10:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DDC843D49; Wed, 14 Jul 2004 07:10:15 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6E7AF9T094358; Wed, 14 Jul 2004 07:10:15 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E7AFYA094357; Wed, 14 Jul 2004 07:10:15 GMT (envelope-from murray) Message-Id: <200407140710.i6E7AFYA094357@repoman.freebsd.org> From: Murray Stokely Date: Wed, 14 Jul 2004 07:10: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/share/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 07:10:15 -0000 murray 2004-07-14 07:10:15 UTC FreeBSD src repository Modified files: share/dict freebsd Log: Remove duplicate entry. Submitted by: mlaier@ Revision Changes Path 1.9 +1 -2 src/share/dict/freebsd From owner-cvs-src@FreeBSD.ORG Wed Jul 14 07:13: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 DC10116A4CE; Wed, 14 Jul 2004 07:13:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3FC743D2F; Wed, 14 Jul 2004 07:13:35 +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 i6E7DZdK094487; Wed, 14 Jul 2004 07:13:35 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E7DZb8094486; Wed, 14 Jul 2004 07:13:35 GMT (envelope-from peter) Message-Id: <200407140713.i6E7DZb8094486@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Jul 2004 07:13: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/amd64/amd64 pmap.c src/sys/amd64/include pmap.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, 14 Jul 2004 07:13:36 -0000 peter 2004-07-14 07:13:35 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/amd64/include pmap.h Log: Like on i386, eliminate pv_ptem (which was suggested by alc). This reduces the size of the pv_entry structure a small but significant amount. This is implemented a little differently because it isn't so cheap to get the physical address of the page tabke page on amd64.. instead of it being directly accessible from the top level page directory, it is now two additional tree levels down. However.. In almost all cases, we recently had the physical address if the page table page a short while before we needed it, but it slipped through our fingers. This patch saves it for when we do need it. Also, for the one case where we do not have the ptp paddr, we are always running in curproc context and so we can do a vtopte-like trick. I've implemented vtopde() for this purpose. There is still a CYA entry in pmap_unuse_pt() that needs to be removed. I think it can be removed now but I forgot to test with it gone. Revision Changes Path 1.484 +58 -29 src/sys/amd64/amd64/pmap.c 1.121 +0 -1 src/sys/amd64/include/pmap.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 08: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 36C2B16A4CE; Wed, 14 Jul 2004 08:33:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1781943D48; Wed, 14 Jul 2004 08:33:15 +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 i6E8XEa5096893; Wed, 14 Jul 2004 08:33:14 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E8XEn8096892; Wed, 14 Jul 2004 08:33:14 GMT (envelope-from tjr) Message-Id: <200407140833.i6E8XEn8096892@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 08:33: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/usr.bin/tr cset.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, 14 Jul 2004 08:33:15 -0000 tjr 2004-07-14 08:33:14 UTC FreeBSD src repository Modified files: usr.bin/tr cset.c Log: Splay the left and right subtrees on min - 1 and max + 1, respectively, before trying to coalesce. Forgetting to splay caused us to miss many opportunities for coalescing. Revision Changes Path 1.3 +20 -34 src/usr.bin/tr/cset.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 08:35: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 EFFC516A4CE; Wed, 14 Jul 2004 08:35:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1A8E43D49; Wed, 14 Jul 2004 08:35: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 i6E8ZBJP096991; Wed, 14 Jul 2004 08:35:11 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E8ZB1F096990; Wed, 14 Jul 2004 08:35:11 GMT (envelope-from tjr) Message-Id: <200407140835.i6E8ZB1F096990@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 08:35: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.bin/tr cset.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, 14 Jul 2004 08:35:12 -0000 tjr 2004-07-14 08:35:11 UTC FreeBSD src repository Modified files: usr.bin/tr cset.h Log: Remove unused member of struct csclass: csc_value. Revision Changes Path 1.2 +0 -1 src/usr.bin/tr/cset.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 08:36: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 E931B16A4CE; Wed, 14 Jul 2004 08:36:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9D1443D1F; Wed, 14 Jul 2004 08:36:09 +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 i6E8a9ar097101; Wed, 14 Jul 2004 08:36:09 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6E8a9GX097100; Wed, 14 Jul 2004 08:36:09 GMT (envelope-from tjr) Message-Id: <200407140836.i6E8a9GX097100@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 08:36: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.bin/tr cmap.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, 14 Jul 2004 08:36:10 -0000 tjr 2004-07-14 08:36:09 UTC FreeBSD src repository Modified files: usr.bin/tr cmap.c Log: Fix description of cmap_lookup_hard(). Revision Changes Path 1.2 +1 -1 src/usr.bin/tr/cmap.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 09:35: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 0E3FA16A4CE; Wed, 14 Jul 2004 09:35:54 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 215A843D45; Wed, 14 Jul 2004 09:35:53 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from herring.rabson.org (herring [10.0.0.2]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i6E9Zn9G001348; Wed, 14 Jul 2004 10:35:50 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Hidetoshi Shimokawa Date: Wed, 14 Jul 2004 10:35:49 +0100 User-Agent: KMail/1.6.1 References: <200407130941.i6D9fjx0056509@repoman.freebsd.org> In-Reply-To: <200407130941.i6D9fjx0056509@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407141035.49681.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/dcons dcons.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, 14 Jul 2004 09:35:54 -0000 On Tuesday 13 July 2004 10:41, Hidetoshi Shimokawa wrote: > simokawa 2004-07-13 09:41:45 UTC > > FreeBSD src repository > > Modified files: > sys/dev/dcons dcons.c > Log: > Re-enable debugger port. Thanks! I might actually be able to update some of my systems without hosing anything now :-) From owner-cvs-src@FreeBSD.ORG Wed Jul 14 10:06: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 2430116A4CF; Wed, 14 Jul 2004 10:06:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05FAD43D53; Wed, 14 Jul 2004 10:06:23 +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 i6EA6MpY000292; Wed, 14 Jul 2004 10:06:22 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EA6M5i000291; Wed, 14 Jul 2004 10:06:22 GMT (envelope-from tjr) Message-Id: <200407141006.i6EA6M5i000291@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 10:06: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/usr.bin/sed compile.c defs.h main.c misc.c process.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, 14 Jul 2004 10:06:23 -0000 tjr 2004-07-14 10:06:22 UTC FreeBSD src repository Modified files: usr.bin/sed compile.c defs.h main.c misc.c process.c Log: Make the 'y' (translate) command aware of multibyte characters. Revision Changes Path 1.25 +69 -13 src/usr.bin/sed/compile.c 1.4 +15 -1 src/usr.bin/sed/defs.h 1.33 +1 -0 src/usr.bin/sed/main.c 1.9 +1 -0 src/usr.bin/sed/misc.c 1.37 +59 -3 src/usr.bin/sed/process.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 10:33: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 D9FB316A4CE; Wed, 14 Jul 2004 10:33:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC8743D45; Wed, 14 Jul 2004 10:33:29 +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 i6EAXTcD000981; Wed, 14 Jul 2004 10:33:29 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EAXTHl000980; Wed, 14 Jul 2004 10:33:29 GMT (envelope-from tjr) Message-Id: <200407141033.i6EAXTHl000980@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 10:33: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/usr.bin/sed sed.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: Wed, 14 Jul 2004 10:33:30 -0000 tjr 2004-07-14 10:33:29 UTC FreeBSD src repository Modified files: usr.bin/sed sed.1 Log: Update BUGS section to reflect current state of multibyte character support. Revision Changes Path 1.35 +11 -4 src/usr.bin/sed/sed.1 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 10: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 C0BB716A4CE; Wed, 14 Jul 2004 10:37:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A329743D2F; Wed, 14 Jul 2004 10:37:21 +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 i6EAbLjs001159; Wed, 14 Jul 2004 10:37:21 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EAbLCS001158; Wed, 14 Jul 2004 10:37:21 GMT (envelope-from tjr) Message-Id: <200407141037.i6EAbLCS001158@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 14 Jul 2004 10:37: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/usr.bin/sed sed.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: Wed, 14 Jul 2004 10:37:21 -0000 tjr 2004-07-14 10:37:21 UTC FreeBSD src repository Modified files: usr.bin/sed sed.1 Log: Document the -E and -a options as being extensions. Revision Changes Path 1.36 +5 -2 src/usr.bin/sed/sed.1 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:25: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 1553816A4CE; Wed, 14 Jul 2004 13:25:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC22A43D53; Wed, 14 Jul 2004 13:25:10 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6EDPA9X006373; Wed, 14 Jul 2004 13:25:10 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDPA9K006372; Wed, 14 Jul 2004 13:25:10 GMT (envelope-from brian) Message-Id: <200407141325.i6EDPA9K006372@repoman.freebsd.org> From: Brian Somers Date: Wed, 14 Jul 2004 13:25:10 +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/usr.sbin/ppp ppp.8.m4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 13:25:11 -0000 brian 2004-07-14 13:25:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp ppp.8.m4 Log: MFC: Mention that ``set mtu max'' is necessary for PPPoE. Assorted whitespace & linefeed tweaks. Revision Changes Path 1.301.2.7 +23 -14 src/usr.sbin/ppp/ppp.8.m4 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:26: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 8990616A4CE; Wed, 14 Jul 2004 13:26:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C61443D2F; Wed, 14 Jul 2004 13:26:24 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6EDQONG006447; Wed, 14 Jul 2004 13:26:24 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDQOsF006446; Wed, 14 Jul 2004 13:26:24 GMT (envelope-from brian) Message-Id: <200407141326.i6EDQOsF006446@repoman.freebsd.org> From: Brian Somers Date: Wed, 14 Jul 2004 13:26:24 +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/usr.sbin/ppp tcpmss.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, 14 Jul 2004 13:26:24 -0000 brian 2004-07-14 13:26:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp tcpmss.c Log: MFC: Reduce MAXMSS limit by 12 bytes to allow for rfc 1323. Revision Changes Path 1.1.4.5 +1 -1 src/usr.sbin/ppp/tcpmss.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:30: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 4507E16A4CE; Wed, 14 Jul 2004 13:30:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2814443D39; Wed, 14 Jul 2004 13:30:16 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6EDUGB7006525; Wed, 14 Jul 2004 13:30:16 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDUFcP006524; Wed, 14 Jul 2004 13:30:15 GMT (envelope-from brian) Message-Id: <200407141330.i6EDUFcP006524@repoman.freebsd.org> From: Brian Somers Date: Wed, 14 Jul 2004 13:30:15 +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/usr.sbin/ppp radius.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, 14 Jul 2004 13:30:16 -0000 brian 2004-07-14 13:30:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp radius.c Log: MFC: If HISMACADDR is set in the environment (by pppoed), pass the value to the RADIUS server as RAD_CALLING_STATION_ID. Revision Changes Path 1.11.2.11 +16 -0 src/usr.sbin/ppp/radius.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:31: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 3E9A216A4CE; Wed, 14 Jul 2004 13:31:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20B6043D2F; Wed, 14 Jul 2004 13:31:18 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6EDVInL006647; Wed, 14 Jul 2004 13:31:18 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDVIlX006646; Wed, 14 Jul 2004 13:31:18 GMT (envelope-from brian) Message-Id: <200407141331.i6EDVIlX006646@repoman.freebsd.org> From: Brian Somers Date: Wed, 14 Jul 2004 13:31: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/usr.sbin/ppp radius.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, 14 Jul 2004 13:31:18 -0000 brian 2004-07-14 13:31:17 UTC FreeBSD src repository Modified files: usr.sbin/ppp radius.c Log: Remove a stray backslash Revision Changes Path 1.46 +1 -1 src/usr.sbin/ppp/radius.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:31: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 D762616A4CE; Wed, 14 Jul 2004 13:31:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAB8F43D53; Wed, 14 Jul 2004 13:31:41 +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 i6EDVfbj006677; Wed, 14 Jul 2004 13:31:41 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDVf52006676; Wed, 14 Jul 2004 13:31:41 GMT (envelope-from mlaier) Message-Id: <200407141331.i6EDVf52006676@repoman.freebsd.org> From: Max Laier Date: Wed, 14 Jul 2004 13:31: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/sys/net if_var.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, 14 Jul 2004 13:31:42 -0000 mlaier 2004-07-14 13:31:41 UTC FreeBSD src repository Modified files: sys/net if_var.h Log: Fix a copy-and-paste-o in IFQ_DRV_PREPEND - all pointyhats to me. While here also fix a (not less stupid) braino in IFQ_DRV_PURGE. Reported-by: clement Tested-by: clement (_PREPEND in sis(4)) Revision Changes Path 1.81 +5 -5 src/sys/net/if_var.h From owner-cvs-src@FreeBSD.ORG Wed Jul 14 13:32: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 093D616A4CE; Wed, 14 Jul 2004 13:32:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC31E43D5A; Wed, 14 Jul 2004 13:32: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 i6EDW0vs006718; Wed, 14 Jul 2004 13:32:00 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EDW0tm006717; Wed, 14 Jul 2004 13:32:00 GMT (envelope-from pjd) Message-Id: <200407141332.i6EDW0tm006717@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 14 Jul 2004 13:32: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/core geom.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Jul 2004 13:32:01 -0000 pjd 2004-07-14 13:32:00 UTC FreeBSD src repository Modified files: sbin/geom/core geom.8 Log: Add a reference to glabel(8). Revision Changes Path 1.3 +1 -0 src/sbin/geom/core/geom.8 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 14:19: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 B2BEB16A4CE; Wed, 14 Jul 2004 14:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96DF543D3F; Wed, 14 Jul 2004 14:19:32 +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 i6EEJWU2008365; Wed, 14 Jul 2004 14:19:32 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EEJWik008364; Wed, 14 Jul 2004 14:19:32 GMT (envelope-from phk) Message-Id: <200407141419.i6EEJWik008364@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 14 Jul 2004 14:19: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/ufs/ffs ffs_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: Wed, 14 Jul 2004 14:19:32 -0000 phk 2004-07-14 14:19:32 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_vfsops.c Log: Make sure to update the mnt_stats before UFS1 extattr tried to do I/O on the device. Otherwise the blocksize is undefined in the buffer cache. Revision Changes Path 1.237 +4 -5 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 14:43: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 AC98016A4CE; Wed, 14 Jul 2004 14:43:40 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57E5043D49; Wed, 14 Jul 2004 14:43:40 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6EEhN6n053202; Wed, 14 Jul 2004 10:43:23 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6EEhNWW053198; Wed, 14 Jul 2004 10:43:23 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 14 Jul 2004 10:43:23 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Alfred Perlstein In-Reply-To: <200407140702.i6E724mV093920@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 14:43:40 -0000 On Wed, 14 Jul 2004, Alfred Perlstein wrote: > Log: > Make FIOASYNC, FIOSETOWN and FIOGETOWN work on kqueues. Have you tried testing this on a kqueue used to monitor signals? I'd draw your particular attention to the following newly enabled code path: pgsigio() -> psignal() -> tdsignal() -> do_tdsignal() -> KNOTE() -> knote() -> KNOTE_ACTIVATE() -> knote_enqueue() -> kqueue_wakeup() -> pgsigio() It strikes me that adding sigio support to kqueue opens a massive can of worms, not least of which is how you prevent the above from causing the system to panic, not to mention how you handle locking in what is otherwise a set of leaf functions in kqueue. I'd like it if you could back this out until locking for kqueue is resolved, as while this is no doubt a useful feature, having the locking working is much more useful to us for 5.3. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Wed Jul 14 14:57: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 AB20516A4CE for ; Wed, 14 Jul 2004 14:57:51 +0000 (GMT) Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A92743D2D for ; Wed, 14 Jul 2004 14:57:51 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 9838 invoked from network); 14 Jul 2004 14:57:50 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 14 Jul 2004 14:57:50 -0000 Received: from 10.50.41.229 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i6EEvj0d025433; Wed, 14 Jul 2004 10:57:45 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: "Daniel Eriksson" Date: Wed, 14 Jul 2004 10:59:00 -0400 User-Agent: KMail/1.6 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407141059.00907.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org Subject: Re: 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: Wed, 14 Jul 2004 14:57:51 -0000 On Tuesday 13 July 2004 05:36 pm, Daniel Eriksson wrote: > John Baldwin wrote: > > Set TDF_NEEDRESCHED when a higher priority thread is scheduled in > > sched_add() rather than just doing it in sched_wakeup(). The old > > ithread preemption code used to set NEEDRESCHED > > unconditionally if it > > didn't preempt which masked this bug in SCHED_4BSD. > > Does this mean it should be safe to turn preemption back on in param.h (for > a kernel using SHED_4BSD)? Or is this not related to the hard hangs > reported over the last week? I haven't yet had time to sit down and look at the hard hangs. It is probably still not quite safe to turn preemption back on. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Jul 14 17:35:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2B9616A4CE; Wed, 14 Jul 2004 17:35:45 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i6EHZjpd066846; Wed, 14 Jul 2004 13:35:45 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.12.11/8.12.11/Submit) id i6EHZjb4066845; Wed, 14 Jul 2004 13:35:45 -0400 (EDT) (envelope-from green) Date: Wed, 14 Jul 2004 13:35:44 -0400 From: Brian Fundakowski Feldman To: Robert Watson Message-ID: <20040714173544.GU1626@green.homeunix.org> References: <200407140702.i6E724mV093920@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 17:35:46 -0000 On Wed, Jul 14, 2004 at 10:43:23AM -0400, Robert Watson wrote: > > On Wed, 14 Jul 2004, Alfred Perlstein wrote: > > > Log: > > Make FIOASYNC, FIOSETOWN and FIOGETOWN work on kqueues. > > Have you tried testing this on a kqueue used to monitor signals? I'd draw > your particular attention to the following newly enabled code path: > > pgsigio() -> psignal() -> tdsignal() -> do_tdsignal() -> KNOTE() -> > knote() -> KNOTE_ACTIVATE() -> knote_enqueue() -> kqueue_wakeup() -> > pgsigio() > > It strikes me that adding sigio support to kqueue opens a massive can of > worms, not least of which is how you prevent the above from causing the > system to panic, not to mention how you handle locking in what is > otherwise a set of leaf functions in kqueue. I'd like it if you could > back this out until locking for kqueue is resolved, as while this is no > doubt a useful feature, having the locking working is much more useful to > us for 5.3. Agreed. Much of kqueue "barely works" as is (that is, other than pretty much all of it which is broken with regard to concurrency); adding more interfaces, especially this one, is not a good idea (right now?). -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Wed Jul 14 17:50: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 46C0D16A4CE; Wed, 14 Jul 2004 17:50:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A52543D2F; Wed, 14 Jul 2004 17:50:09 +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 i6EHo9BF014330; Wed, 14 Jul 2004 17:50:09 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EHo8fl014329; Wed, 14 Jul 2004 17:50:08 GMT (envelope-from des) Message-Id: <200407141750.i6EHo8fl014329@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 14 Jul 2004 17:50: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/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: Wed, 14 Jul 2004 17:50:09 -0000 des 2004-07-14 17:50:08 UTC FreeBSD src repository Modified files: sys/pc98/conf NOTES Log: Unbreak LINT: device card no longer takes a count. Revision Changes Path 1.41 +1 -1 src/sys/pc98/conf/NOTES From owner-cvs-src@FreeBSD.ORG Wed Jul 14 18:12: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 5712216A4CE; Wed, 14 Jul 2004 18:12:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C90C43D41; Wed, 14 Jul 2004 18:12:16 +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 i6EICGU9015135; Wed, 14 Jul 2004 18:12:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EICGwF015134; Wed, 14 Jul 2004 18:12:16 GMT (envelope-from jhb) Message-Id: <200407141812.i6EICGwF015134@repoman.freebsd.org> From: John Baldwin Date: Wed, 14 Jul 2004 18:12: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/sys/i386/i386 local_apic.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, 14 Jul 2004 18:12:16 -0000 jhb 2004-07-14 18:12:16 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c Log: Correct bounds check in lapic_create(). Submitted by: "Ted Unangst" tedu at coverity.com Revision Changes Path 1.9 +1 -1 src/sys/i386/i386/local_apic.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 18:44: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 B7E6A16A4CE; Wed, 14 Jul 2004 18:44:45 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D8743D2F; Wed, 14 Jul 2004 18:44:45 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 9CA745C89B; Wed, 14 Jul 2004 11:44:45 -0700 (PDT) Date: Wed, 14 Jul 2004 11:44:45 -0700 From: Alfred Perlstein To: Robert Watson Message-ID: <20040714184445.GC95729@elvis.mu.org> References: <200407140702.i6E724mV093920@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/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 18:44:45 -0000 * Robert Watson [040714 07:43] wrote: > > On Wed, 14 Jul 2004, Alfred Perlstein wrote: > > > Log: > > Make FIOASYNC, FIOSETOWN and FIOGETOWN work on kqueues. > > Have you tried testing this on a kqueue used to monitor signals? I'd draw > your particular attention to the following newly enabled code path: > > pgsigio() -> psignal() -> tdsignal() -> do_tdsignal() -> KNOTE() -> > knote() -> KNOTE_ACTIVATE() -> knote_enqueue() -> kqueue_wakeup() -> > pgsigio() > > It strikes me that adding sigio support to kqueue opens a massive can of > worms, not least of which is how you prevent the above from causing the > system to panic, not to mention how you handle locking in what is > otherwise a set of leaf functions in kqueue. I'd like it if you could > back this out until locking for kqueue is resolved, as while this is no > doubt a useful feature, having the locking working is much more useful to > us for 5.3. I'm sure that was a fun panic to hit. :) I can fix this by setting a "sigio in progress" on the kqeue and not calling pgsigio() while one is in progress. As far as the locking, we can address that when locking for kqueues are done, with the idea that SIGIO _should_ work for kqueues. Do we have this on the plate? Or are you stalling my work based simply on wishful thinking? :) -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 18:56: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 620A616A4CE; Wed, 14 Jul 2004 18:56:25 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC57543D46; Wed, 14 Jul 2004 18:56:24 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6EIu7Qn058818; Wed, 14 Jul 2004 14:56:07 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6EIu7vI058815; Wed, 14 Jul 2004 14:56:07 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 14 Jul 2004 14:56:07 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Alfred Perlstein In-Reply-To: <20040714184445.GC95729@elvis.mu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 18:56:25 -0000 On Wed, 14 Jul 2004, Alfred Perlstein wrote: > I'm sure that was a fun panic to hit. :) Thrilling :-). Actually, I didn't hit the panic, I merely reasoned that it might exist and then read more kqueue code than I've read in a while :-). > I can fix this by setting a "sigio in progress" on the kqeue and not > calling pgsigio() while one is in progress. My worry is the inter-subsystem calling. We often call KNOTE() while holding existing locks in the calling subsystem that we can't drop. Generally, kqueue is a leaf node subsystem in that it's called from many places under many circumstances, and needs to not disrupt the calling state by doing "weird things". What's there before your change is not too disruptive/weird; afterwards, we call into the body of the process signalling code which requires additional process locks. Note that there are other paths to the same suffering: if any other signal is delivered to a process that's monitoring for signals with kqueue causing a sigio, you're still recursing into the signal subsystem. > As far as the locking, we can address that when locking for kqueues are > done, with the idea that SIGIO _should_ work for kqueues. > > Do we have this on the plate? Or are you stalling my work based simply > on wishful thinking? :) There are two outstanding patch sets that add locking to kqueue: - Brian Feldman's "kqgiant" changes, which I'm in the process of updating in Perforce and adapting for your recent additions of fs kqueue events. - John-Mark Gurney's "data locking kqueue" changes, which he's currently working on extracting from his employer. In order for network stack locking without Giant to be real for 5.3, kqueue locking must be completed. The pgsigio do represent a serious obstacle to getting that locking done, both by virtue of adding an immediate coding obstacle to adapt around, but also by introducing an architectural construct that will be difficult to deal with cleanly. My goal is for us to have basic locking for kqueues in the sys tree in CVS within two weeks, using one or another of the two sets of changes above. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:01: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 B6AB816A4CE; Wed, 14 Jul 2004 19:01:31 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DEE443D45; Wed, 14 Jul 2004 19:01:28 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i6EJ1Phe001169; Wed, 14 Jul 2004 20:01:25 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Robert Watson Date: Wed, 14 Jul 2004 20:01:25 +0100 User-Agent: KMail/1.6.1 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407142001.25615.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:01:31 -0000 On Wednesday 14 July 2004 19:56, Robert Watson wrote: > On Wed, 14 Jul 2004, Alfred Perlstein wrote: > > I'm sure that was a fun panic to hit. :) > > Thrilling :-). Actually, I didn't hit the panic, I merely reasoned > that it might exist and then read more kqueue code than I've read in > a while > > :-). > : > > I can fix this by setting a "sigio in progress" on the kqeue and > > not calling pgsigio() while one is in progress. > > My worry is the inter-subsystem calling. We often call KNOTE() while > holding existing locks in the calling subsystem that we can't drop. > Generally, kqueue is a leaf node subsystem in that it's called from > many places under many circumstances, and needs to not disrupt the > calling state by doing "weird things". What's there before your > change is not too disruptive/weird; afterwards, we call into the body > of the process signalling code which requires additional process > locks. Note that there are other paths to the same suffering: if any > other signal is delivered to a process that's monitoring for signals > with kqueue causing a sigio, you're still recursing into the signal > subsystem. Seems to me that the best thing to do is to defer the psigio() to a taskqueue that will run in a simpler locking environment. From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:04: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 C176C16A4CE; Wed, 14 Jul 2004 19:04:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5F7B43D58; Wed, 14 Jul 2004 19:04:31 +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 i6EJ4V1T016423; Wed, 14 Jul 2004 19:04:31 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EJ4VKD016422; Wed, 14 Jul 2004 19:04:31 GMT (envelope-from csjp) Message-Id: <200407141904.i6EJ4VKD016422@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Wed, 14 Jul 2004 19:04: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/kern kern_descrip.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, 14 Jul 2004 19:04:31 -0000 csjp 2004-07-14 19:04:31 UTC FreeBSD src repository Modified files: sys/kern kern_descrip.c Log: In addition to the real user ID check, do an explicit jail check to ensure that the caller is not prison root. The intention is to fix file descriptor creation so that prison root can not use the last remaining file descriptors. This privilege should be reserved for non-jailed root users. Approved by: bmilekic (mentor) Revision Changes Path 1.236 +3 -2 src/sys/kern/kern_descrip.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:05: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 642AF16A4CE; Wed, 14 Jul 2004 19:05:29 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDFA43D49; Wed, 14 Jul 2004 19:05:28 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i6EJ5QbJ001365; Wed, 14 Jul 2004 20:05:26 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: "M. Warner Losh" Date: Wed, 14 Jul 2004 20:05:26 +0100 User-Agent: KMail/1.6.1 References: <40F43FB3.1030607@freebsd.org> <24292.1089749636@critter.freebsd.dk> <20040713.142128.41875243.imp@bsdimp.com> In-Reply-To: <20040713.142128.41875243.imp@bsdimp.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407142005.26368.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: scottl@FreeBSD.org cc: cvs-all@FreeBSD.org cc: phk@phk.freebsd.dk cc: nate@root.org Subject: Re: cvs commit: src/sbin/kldunload kldunload.8 kldunload.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, 14 Jul 2004 19:05:29 -0000 On Tuesday 13 July 2004 21:21, M. Warner Losh wrote: > In message: <24292.1089749636@critter.freebsd.dk> > > "Poul-Henning Kamp" writes: > : And since all of these things are involved in loadable modules, > : I think we should stop wasting time dreaming about the day the > : world will be one bit tangle of newbus. > > And I think you should spent less time attacking newbus. And besides, newbus isn't going to take over the world, kobj is ;-) From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:06: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 31E9316A4CE; Wed, 14 Jul 2004 19:06:40 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id D20E243D5F; Wed, 14 Jul 2004 19:06:37 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6EJ6arb018547 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 14 Jul 2004 12:06:36 -0700 Message-ID: <40F58403.5020600@root.org> Date: Wed, 14 Jul 2004 12:05:39 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Doug Rabson References: <200407142001.25615.dfr@nlsystems.com> In-Reply-To: <200407142001.25615.dfr@nlsystems.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: Robert Watson cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:06:40 -0000 Doug Rabson wrote: > On Wednesday 14 July 2004 19:56, Robert Watson wrote: >>On Wed, 14 Jul 2004, Alfred Perlstein wrote: >>>I can fix this by setting a "sigio in progress" on the kqeue and >>>not calling pgsigio() while one is in progress. >> >>My worry is the inter-subsystem calling. We often call KNOTE() while >>holding existing locks in the calling subsystem that we can't drop. >>Generally, kqueue is a leaf node subsystem in that it's called from >>many places under many circumstances, and needs to not disrupt the >>calling state by doing "weird things". What's there before your >>change is not too disruptive/weird; afterwards, we call into the body >>of the process signalling code which requires additional process >>locks. Note that there are other paths to the same suffering: if any >>other signal is delivered to a process that's monitoring for signals >>with kqueue causing a sigio, you're still recursing into the signal >>subsystem. > > Seems to me that the best thing to do is to defer the psigio() to a > taskqueue that will run in a simpler locking environment. In fact, the AIO task threads already provide a convenient context for this. -- -Nate From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:10: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 07F8416A4CE; Wed, 14 Jul 2004 19:10:03 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E814543D31; Wed, 14 Jul 2004 19:10:02 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id DFBBC5C8B2; Wed, 14 Jul 2004 12:10:02 -0700 (PDT) Date: Wed, 14 Jul 2004 12:10:02 -0700 From: Alfred Perlstein To: Robert Watson Message-ID: <20040714191002.GE95729@elvis.mu.org> References: <20040714184445.GC95729@elvis.mu.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/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:10:03 -0000 * Robert Watson [040714 11:56] wrote: > On Wed, 14 Jul 2004, Alfred Perlstein wrote: > > > Do we have this on the plate? Or are you stalling my work based simply > > on wishful thinking? :) > > There are two outstanding patch sets that add locking to kqueue: > > - Brian Feldman's "kqgiant" changes, which I'm in the process of updating > in Perforce and adapting for your recent additions of fs kqueue events. > > - John-Mark Gurney's "data locking kqueue" changes, which he's currently > working on extracting from his employer. > > In order for network stack locking without Giant to be real for 5.3, > kqueue locking must be completed. The pgsigio do represent a serious > obstacle to getting that locking done, both by virtue of adding an > immediate coding obstacle to adapt around, but also by introducing an > architectural construct that will be difficult to deal with cleanly. My > goal is for us to have basic locking for kqueues in the sys tree in CVS > within two weeks, using one or another of the two sets of changes above. Ok, I'll back it out. In the future I would appreciate a simple "we actually have code in progress to do this" rather than what I thought was wishful thinking. I know your brain is full right now, but is there any way you see this actually working? I know how to avoid the recursion, but, buh.. I think sigio needs an overhaul. I'll see if that works, for now I'll just #if 0 the ioctl code to enable it. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:11: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 CD31B16A4CE; Wed, 14 Jul 2004 19:11:20 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9CC143D41; Wed, 14 Jul 2004 19:11:18 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id AFBCB5C8D6; Wed, 14 Jul 2004 12:11:18 -0700 (PDT) Date: Wed, 14 Jul 2004 12:11:18 -0700 From: Alfred Perlstein To: Doug Rabson Message-ID: <20040714191118.GF95729@elvis.mu.org> References: <200407142001.25615.dfr@nlsystems.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407142001.25615.dfr@nlsystems.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Robert Watson cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:11:21 -0000 * Doug Rabson [040714 12:01] wrote: > On Wednesday 14 July 2004 19:56, Robert Watson wrote: > > On Wed, 14 Jul 2004, Alfred Perlstein wrote: > > > I'm sure that was a fun panic to hit. :) > > > > Thrilling :-). Actually, I didn't hit the panic, I merely reasoned > > that it might exist and then read more kqueue code than I've read in > > a while > > > > :-). > > : > > > I can fix this by setting a "sigio in progress" on the kqeue and > > > not calling pgsigio() while one is in progress. > > > > My worry is the inter-subsystem calling. We often call KNOTE() while > > holding existing locks in the calling subsystem that we can't drop. > > Generally, kqueue is a leaf node subsystem in that it's called from > > many places under many circumstances, and needs to not disrupt the > > calling state by doing "weird things". What's there before your > > change is not too disruptive/weird; afterwards, we call into the body > > of the process signalling code which requires additional process > > locks. Note that there are other paths to the same suffering: if any > > other signal is delivered to a process that's monitoring for signals > > with kqueue causing a sigio, you're still recursing into the signal > > subsystem. > > Seems to me that the best thing to do is to defer the psigio() to a > taskqueue that will run in a simpler locking environment. I was thinking that, but I'm worried about "stale delivery", perhaps we need to record the generation count (process start time) in the sigio as well as the request sent, so that we don't send a signal to the wrong process. ? -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:29: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 11DEB16A4CE; Wed, 14 Jul 2004 19:29:54 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96AC243D5F; Wed, 14 Jul 2004 19:29:53 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6EJTaNm059552; Wed, 14 Jul 2004 15:29:36 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6EJTa8i059549; Wed, 14 Jul 2004 15:29:36 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 14 Jul 2004 15:29:35 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Alfred Perlstein In-Reply-To: <20040714191002.GE95729@elvis.mu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:29:54 -0000 On Wed, 14 Jul 2004, Alfred Perlstein wrote: > Ok, I'll back it out. In the future I would appreciate a simple "we > actually have code in progress to do this" rather than what I thought > was wishful thinking. > > I know your brain is full right now, but is there any way you see this > actually working? I know how to avoid the recursion, but, buh.. I > think sigio needs an overhaul. I'll see if that works, for now I'll > just #if 0 the ioctl code to enable it. Sorry about that, I should have explained more fully in my original e-mail what the current state of the universe was. I'm not inherrently opposed to the notion of pgsigio getting launched relating to kqueue events, and I can see potential utility there, but I worry mostly about the immediate implementation consequences. I agree that the problem seems to be with pgsigio, and perhaps more generally with our notion of event management in the kernel. We have a lot of different event notification systems -- a perfect example of the level of suffering is sowakeup(), which I've slightly simplified here: selwakeuppri(&sb->sb_sel, PSOCK); sb->sb_flags &= ~SB_SEL; if (sb->sb_flags & SB_WAIT) { sb->sb_flags &= ~SB_WAIT; wakeup(&sb->sb_cc); } KNOTE(&sb->sb_sel.si_note, 0); if ((so->so_state & SS_ASYNC) && so->so_sigio != NULL) pgsigio(&so->so_sigio, SIGIO, 0); if (sb->sb_flags & SB_UPCALL) (*so->so_upcall)(so, so->so_upcallarg, M_DONTWAIT); if (sb->sb_flags & SB_AIO) aio_swake(so, sb); (This is a "See also: abstraction" sort of code quote) We send out notifications to select, socket buffer wakeups, kqueue, pgsigio, socket upcalls, and AIO. Each of these blithly assumes it's basically a "leaf subsystem" in that it's OK to call it at any point from any place that generates an event of interest. The problem you bumped into is one that I've already been running into with the socket upcalls: sometimes the so-called "leaf" subsystems go off and do a lot of stuff. For example, call back into the socket layer, send signals, etc. Kqueue is interesting in that, other than recursing back into the calling system to test the filter, it layers on top of relatively few other subsystems. By adding a layering above signaling, it ceases to become so very leafy, which makes it a lot harder to deal with. I like Doug's notion of using a task to handle some of the callbacks in a safe way. We're already using this notion to simplify locking in the Jail code, so as to avoid vrele() requiring Giant in the process context, and I'm using it now in SLIP to perform the slstart() from a context that can safely acquire Giant so it can enter the tty subsystem. Asynchrony, where sensible, can provide a clean solution to lock recursion/ordering issues. We use it for GEOM up/down threads, with ktrace, routing sockets, and so on. However, it has some limitations, in that it discards a lot of useful stack state for debugging, adds delays in notification (potentially somewhat unbounded) which can open up races itself, as well as other useful context. It could well be simply inserting a task queue here solves the problem, but we'll want to be careful. For example, in the SLIP code and Jail code, the 'struct task' used to perform the asynchronous notify is stored in the softc (or struct prison, which is basically a Jail softc). In the Jail case, we know that the container prison can't be free()'d, because that's what the asynchronous notify does. However, in the SLIP case I currently have no way to guarantee that the softc won't be free'd between the event being scheduled and running. Making sure this problem is cleanly addressed is going to be important in situations like pgsigio(), which involve pretty transient entities... FYI, here's my current thinking on kqueue locking -- I'm currently picking up Brian's pieces to update them to recent CURRENT and make sure they work well in my test environment. From my perspective, I'd prefer a data-based approach, but John-Mark has not yet been able to shake free his locking. If he does quickly, maybe we go with that, but Brian's code appears to largely work now, and is a strict dependency to run the network stack Giant-free out of the box. As it stands, if you run the socket code without Giant today, moderate kqueue use causes a panic -- very similar to the panic you get if you use kqueues with make world today. As such, we need to get something done soon so we can get more testing exposure of the network stack without Giant. I'd like to get something, be it Brian's or John-Mark's code, merged in the next two weeks. The reason I pick two weeks is that in two weeks, I'm going on vacation to India for two weeks, so the sooner it's done, the more is ready before I go away. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:29: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 8CB5016A4DB; Wed, 14 Jul 2004 19:29:59 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025BF43D66; Wed, 14 Jul 2004 19:29:59 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6EJTvrb018916 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 14 Jul 2004 12:29:58 -0700 Message-ID: <40F5897C.7010904@root.org> Date: Wed, 14 Jul 2004 12:29:00 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alfred Perlstein References: <200407142001.25615.dfr@nlsystems.com> <20040714191118.GF95729@elvis.mu.org> In-Reply-To: <20040714191118.GF95729@elvis.mu.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Robert Watson cc: src-committers@freebsd.org cc: Doug Rabson cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 19:29:59 -0000 Alfred Perlstein wrote: > * Doug Rabson [040714 12:01] wrote: >>On Wednesday 14 July 2004 19:56, Robert Watson wrote: >>>On Wed, 14 Jul 2004, Alfred Perlstein wrote: >>>>I can fix this by setting a "sigio in progress" on the kqeue and >>>>not calling pgsigio() while one is in progress. >>> >>>My worry is the inter-subsystem calling. We often call KNOTE() while >>>holding existing locks in the calling subsystem that we can't drop. >>>Generally, kqueue is a leaf node subsystem in that it's called from >>>many places under many circumstances, and needs to not disrupt the >>>calling state by doing "weird things". What's there before your >>>change is not too disruptive/weird; afterwards, we call into the body >>>of the process signalling code which requires additional process >>>locks. Note that there are other paths to the same suffering: if any >>>other signal is delivered to a process that's monitoring for signals >>>with kqueue causing a sigio, you're still recursing into the signal >>>subsystem. >> >>Seems to me that the best thing to do is to defer the psigio() to a >>taskqueue that will run in a simpler locking environment. > > I was thinking that, but I'm worried about "stale delivery", > perhaps we need to record the generation count (process start time) > in the sigio as well as the request sent, so that we don't send > a signal to the wrong process. Sorry, never mind my previous comments. I was recently working with kqueue AIO notifications and misread AIO for kqueue. Oops. -- -Nate From owner-cvs-src@FreeBSD.ORG Wed Jul 14 19:31: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 898E616A4CE; Wed, 14 Jul 2004 19:31:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F97D43D60; Wed, 14 Jul 2004 19:31:31 +0000 (GMT) (envelope-from marks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6EJVVRw017252; Wed, 14 Jul 2004 19:31:31 GMT (envelope-from marks@repoman.freebsd.org) Received: (from marks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EJVVDn017251; Wed, 14 Jul 2004 19:31:31 GMT (envelope-from marks) Message-Id: <200407141931.i6EJVVDn017251@repoman.freebsd.org> From: Mark Santcroos Date: Wed, 14 Jul 2004 19:31: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/dev/acpica acpi_cmbat.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, 14 Jul 2004 19:31:31 -0000 marks 2004-07-14 19:31:31 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cmbat.c Log: Some laptops report the "design-capacity" instead of the "real-capacity" when the battery is fully charged. That breaks some of the arithmetic in calculating the remaining capacity (ends up with more than 100%). This commit makes sure the max is 100. Approved by: njl Revision Changes Path 1.33 +9 -0 src/sys/dev/acpica/acpi_cmbat.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:24: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 E205C16A4CE; Wed, 14 Jul 2004 20:24:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C592543D46; Wed, 14 Jul 2004 20:24:26 +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 i6EKOLVC018597; Wed, 14 Jul 2004 20:24:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKOLKC018596; Wed, 14 Jul 2004 20:24:21 GMT (envelope-from rwatson) Message-Id: <200407142024.i6EKOLKC018596@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:24: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/netgraph ng_iface.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, 14 Jul 2004 20:24:27 -0000 rwatson 2004-07-14 20:24:21 UTC FreeBSD src repository Modified files: sys/netgraph ng_iface.c Log: Introduce a new mutex, ng_iface_mtx, to protect the global unit list lock used to synchronize allocation of unit numbers for new netgraph interfaces. Reviewed by: glebius Tested by: glebius Revision Changes Path 1.34 +12 -1 src/sys/netgraph/ng_iface.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:26: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 00D9D16A4CE; Wed, 14 Jul 2004 20:26:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D953643D39; Wed, 14 Jul 2004 20:26:37 +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 i6EKQTgw018754; Wed, 14 Jul 2004 20:26:29 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKQTbP018753; Wed, 14 Jul 2004 20:26:29 GMT (envelope-from rwatson) Message-Id: <200407142026.i6EKQTbP018753@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:26: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/netgraph ng_eiface.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, 14 Jul 2004 20:26:38 -0000 rwatson 2004-07-14 20:26:29 UTC FreeBSD src repository Modified files: sys/netgraph ng_eiface.c Log: Introduce a new mutex, ng_eiface_mtx, to protect the global unit list lock used to synchronize allocation of unit numbers for new netgraph ethernet interfaces. Reviewed by: glebius Revision Changes Path 1.17 +11 -1 src/sys/netgraph/ng_eiface.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:27: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 E274B16A4CE; Wed, 14 Jul 2004 20:27:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7EA443D48; Wed, 14 Jul 2004 20:27:33 +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 i6EKRXOQ018797; Wed, 14 Jul 2004 20:27:33 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKRXxS018796; Wed, 14 Jul 2004 20:27:33 GMT (envelope-from rwatson) Message-Id: <200407142027.i6EKRXxS018796@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:27: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/netgraph ng_fec.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, 14 Jul 2004 20:27:34 -0000 rwatson 2004-07-14 20:27:33 UTC FreeBSD src repository Modified files: sys/netgraph ng_fec.c Log: Introduce a new mutex, ng_fec_mtx, to protect the global unit list to synchronization allocation of FEC unit numbers. Reviewed by: glebius Revision Changes Path 1.13 +10 -1 src/sys/netgraph/ng_fec.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:29: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 D945F16A4CE; Wed, 14 Jul 2004 20:29:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF9C43D46; Wed, 14 Jul 2004 20:29:54 +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 i6EKTslI018848; Wed, 14 Jul 2004 20:29:54 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKTsti018847; Wed, 14 Jul 2004 20:29:54 GMT (envelope-from rwatson) Message-Id: <200407142029.i6EKTsti018847@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:29: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/netgraph ng_ppp.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, 14 Jul 2004 20:29:55 -0000 rwatson 2004-07-14 20:29:54 UTC FreeBSD src repository Modified files: sys/netgraph ng_ppp.c Log: Add ng_ppp_latencies_mtx, a global mutex to protect the latency list. Note that the table is a hack, and so is this mutex. Reviewed by: glebius Revision Changes Path 1.49 +11 -0 src/sys/netgraph/ng_ppp.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:31: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 C617716A4CF; Wed, 14 Jul 2004 20:31:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EDAC43D49; Wed, 14 Jul 2004 20:31:05 +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 i6EKV5uw019006; Wed, 14 Jul 2004 20:31:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKV57H019005; Wed, 14 Jul 2004 20:31:05 GMT (envelope-from rwatson) Message-Id: <200407142031.i6EKV57H019005@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:31: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/netgraph ng_tty.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, 14 Jul 2004 20:31:05 -0000 rwatson 2004-07-14 20:31:05 UTC FreeBSD src repository Modified files: sys/netgraph ng_tty.c Log: Add a mutex ng_tty_mtx to protect the global variable ngt_unit. Note that the locking of globals here isn't complete, and there's also a locking issue relating to calling into and out of the tty code. Revision Changes Path 1.29 +10 -0 src/sys/netgraph/ng_tty.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:31: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 A3BCE16A4CE; Wed, 14 Jul 2004 20:31:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 884D843D1D; Wed, 14 Jul 2004 20:31:37 +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 i6EKVbke019054; Wed, 14 Jul 2004 20:31:37 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EKVbYG019053; Wed, 14 Jul 2004 20:31:37 GMT (envelope-from rwatson) Message-Id: <200407142031.i6EKVbYG019053@repoman.freebsd.org> From: Robert Watson Date: Wed, 14 Jul 2004 20:31: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/netgraph ng_pppoe.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, 14 Jul 2004 20:31:37 -0000 rwatson 2004-07-14 20:31:37 UTC FreeBSD src repository Modified files: sys/netgraph ng_pppoe.c Log: Add a note indicating that the eh_prototype field used to construct ethernet headers is unsynchronized. Revision Changes Path 1.65 +4 -0 src/sys/netgraph/ng_pppoe.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 20:37: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 C4A2E16A4CE; Wed, 14 Jul 2004 20:37:48 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7410D43D1F; Wed, 14 Jul 2004 20:37:48 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i6EKba0E026064; Wed, 14 Jul 2004 13:37:40 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200407142037.i6EKba0E026064@gw.catspoiler.org> Date: Wed, 14 Jul 2004 13:37:36 -0700 (PDT) From: Don Lewis To: alfred@FreeBSD.org In-Reply-To: <20040714191118.GF95729@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: rwatson@FreeBSD.org cc: src-committers@FreeBSD.org cc: dfr@nlsystems.com cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 20:37:49 -0000 On 14 Jul, Alfred Perlstein wrote: > * Doug Rabson [040714 12:01] wrote: >> Seems to me that the best thing to do is to defer the psigio() to a >> taskqueue that will run in a simpler locking environment. > > I was thinking that, but I'm worried about "stale delivery", > perhaps we need to record the generation count (process start time) > in the sigio as well as the request sent, so that we don't send > a signal to the wrong process. This is already handled in the sigio infrastructure. Both struct proc and struct pgrp have a list of their potential sigio sources. When the process or process group goes away, the exit code disables sigio delivery. From owner-cvs-src@FreeBSD.ORG Wed Jul 14 21: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 92FA916A4CE; Wed, 14 Jul 2004 21:01:32 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F1A943D62; Wed, 14 Jul 2004 21:01:32 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 72DEA5C8E1; Wed, 14 Jul 2004 14:01:32 -0700 (PDT) Date: Wed, 14 Jul 2004 14:01:32 -0700 From: Alfred Perlstein To: Don Lewis Message-ID: <20040714210132.GI95729@elvis.mu.org> References: <20040714191118.GF95729@elvis.mu.org> <200407142037.i6EKba0E026064@gw.catspoiler.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407142037.i6EKba0E026064@gw.catspoiler.org> User-Agent: Mutt/1.4.2.1i cc: rwatson@FreeBSD.org cc: src-committers@FreeBSD.org cc: dfr@nlsystems.com cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 21:01:32 -0000 * Don Lewis [040714 13:38] wrote: > On 14 Jul, Alfred Perlstein wrote: > > * Doug Rabson [040714 12:01] wrote: > > >> Seems to me that the best thing to do is to defer the psigio() to a > >> taskqueue that will run in a simpler locking environment. > > > > I was thinking that, but I'm worried about "stale delivery", > > perhaps we need to record the generation count (process start time) > > in the sigio as well as the request sent, so that we don't send > > a signal to the wrong process. > > This is already handled in the sigio infrastructure. Both struct proc > and struct pgrp have a list of their potential sigio sources. When the > process or process group goes away, the exit code disables sigio > delivery. Yes, but if the delivery of the signal becomes async, then we lose this. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 21:58: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 92B6216A4CE; Wed, 14 Jul 2004 21:58:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7774843D31; Wed, 14 Jul 2004 21:58:17 +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 i6ELwHDm021445; Wed, 14 Jul 2004 21:58:17 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6ELwHfo021444; Wed, 14 Jul 2004 21:58:17 GMT (envelope-from simon) Message-Id: <200407142158.i6ELwHfo021444@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Wed, 14 Jul 2004 21:58: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/man/man4 adw.4 amr.4 asr.4 ed.4 my.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: Wed, 14 Jul 2004 21:58:17 -0000 simon 2004-07-14 21:58:17 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 adw.4 amr.4 asr.4 ed.4 my.4 Log: Add a HARDWARE section which lists supported devices. The actual device listings has been moved (and in some cases more or less rewritten) from the DESCRIPTION section. Revision Changes Path 1.17 +18 -8 src/share/man/man4/adw.4 1.21 +21 -18 src/share/man/man4/amr.4 1.23 +24 -21 src/share/man/man4/asr.4 1.36 +24 -7 src/share/man/man4/ed.4 1.4 +8 -4 src/share/man/man4/my.4 From owner-cvs-src@FreeBSD.ORG Wed Jul 14 22:09: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 5B94316A4CE; Wed, 14 Jul 2004 22:09:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC2443D31; Wed, 14 Jul 2004 22:09:32 +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 i6EM9Wkk021768; Wed, 14 Jul 2004 22:09:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EM9WwQ021767; Wed, 14 Jul 2004 22:09:32 GMT (envelope-from njl) Message-Id: <200407142209.i6EM9WwQ021767@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Jul 2004 22:09: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/dev/fdc fdc_pccard.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, 14 Jul 2004 22:09:32 -0000 njl 2004-07-14 22:09:32 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_pccard.c Log: Add a comment separator. Revision Changes Path 1.7 +1 -1 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Wed Jul 14 22:23: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 7DDB016A4CE; Wed, 14 Jul 2004 22:23:26 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCB7A43D31; Wed, 14 Jul 2004 22:23:25 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i6EMNNAd003573; Wed, 14 Jul 2004 23:23:23 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Robert Watson Date: Wed, 14 Jul 2004 23:23:18 +0100 User-Agent: KMail/1.6.1 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407142323.18324.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 14 Jul 2004 22:23:26 -0000 On Wednesday 14 July 2004 20:29, Robert Watson wrote: > I like Doug's notion of using a task to handle some of the callbacks > in a safe way. We're already using this notion to simplify locking > in the Jail code, so as to avoid vrele() requiring Giant in the > process context, and I'm using it now in SLIP to perform the > slstart() from a context that can safely acquire Giant so it can > enter the tty subsystem. Asynchrony, where sensible, can provide a > clean solution to lock recursion/ordering issues. We use it for GEOM > up/down threads, with ktrace, routing sockets, and so on. > > However, it has some limitations, in that it discards a lot of useful > stack state for debugging, adds delays in notification (potentially > somewhat unbounded) which can open up races itself, as well as other > useful context. It could well be simply inserting a task queue here > solves the problem, but we'll want to be careful. For example, in > the SLIP code and Jail code, the 'struct task' used to perform the > asynchronous notify is stored in the softc (or struct prison, which > is basically a Jail softc). In the Jail case, we know that the > container prison can't be free()'d, because that's what the > asynchronous notify does. However, in the SLIP case I currently have > no way to guarantee that the softc won't be free'd between the event > being scheduled and running. Making sure this problem is cleanly > addressed is going to be important in situations like pgsigio(), > which involve pretty transient entities... Given that the kernel eventually has good and predictable latencies for running swi threads, it seems to me that the main problem here is the race between posting a task on a queue and freeing that task. It ought to be possible to use the ta_pending count to detect the fact that a task is queued to help close up that class of race conditions (ta_pending is protected by the taskqueue mutex which implies that a given task must only ever be used with a single queue). From owner-cvs-src@FreeBSD.ORG Wed Jul 14 22: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 4C6C416A4CE; Wed, 14 Jul 2004 22:37:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30BED43D2D; Wed, 14 Jul 2004 22:37:37 +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 i6EMbb26022621; Wed, 14 Jul 2004 22:37:37 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6EMbbfY022620; Wed, 14 Jul 2004 22:37:37 GMT (envelope-from phk) Message-Id: <200407142237.i6EMbbfY022620@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 14 Jul 2004 22: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/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: Wed, 14 Jul 2004 22:37:37 -0000 phk 2004-07-14 22:37:36 UTC FreeBSD src repository Modified files: sys/kern kern_module.c Log: A module with no modevent function gets modevent_nop() as default. Until now the function has just returned zero for any event, but that is downright wrong for MOD_UNLOAD and not very useful for any future events we add where it may be crucial to be able to tell if the event was unhandled or successful. Change the function to return as follows: MOD_LOAD -> 0 MOD_UNLOAD -> EBUSY anything else -> EOPNOTSUPP Revision Changes Path 1.44 +9 -1 src/sys/kern/kern_module.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:13: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 299D916A4CE; Thu, 15 Jul 2004 03:13:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBB843D48; Thu, 15 Jul 2004 03:13:28 +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 i6F3DRip035311; Thu, 15 Jul 2004 03:13:27 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3DRej035310; Thu, 15 Jul 2004 03:13:27 GMT (envelope-from kientzle) Message-Id: <200407150313.i6F3DRej035310@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Jul 2004 03:13: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/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, 15 Jul 2004 03:13:28 -0000 kientzle 2004-07-15 03:13:27 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_extract.c Log: Style: rename 'mkdirpath' so it's clearer exactly what it does. (To be precise, it creates the parent dir of the provided path.) Revision Changes Path 1.31 +27 -22 src/lib/libarchive/archive_read_extract.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03: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 4FF5816A4CE; Thu, 15 Jul 2004 03:14:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3065243D54; Thu, 15 Jul 2004 03:14: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 i6F3ElR7035427; Thu, 15 Jul 2004 03:14:47 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3ElI0035426; Thu, 15 Jul 2004 03:14:47 GMT (envelope-from kientzle) Message-Id: <200407150314.i6F3ElI0035426@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Jul 2004 03: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/usr.bin/tar bsdtar.c bsdtar.h bsdtar_platform.h 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, 15 Jul 2004 03:14:47 -0000 kientzle 2004-07-15 03:14:47 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h bsdtar_platform.h read.c Log: Make the day/month ordering dependent on the current locale by testing the locale at program startup and setting a flag, then using that flag to determine appropriate strftime() arguments. Revision Changes Path 1.38 +6 -0 src/usr.bin/tar/bsdtar.c 1.14 +1 -0 src/usr.bin/tar/bsdtar.h 1.4 +3 -0 src/usr.bin/tar/bsdtar_platform.h 1.14 +7 -4 src/usr.bin/tar/read.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:20: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 912AF16A4CE; Thu, 15 Jul 2004 03:20:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7209A43D1D; Thu, 15 Jul 2004 03:20:00 +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 i6F3K0et035739; Thu, 15 Jul 2004 03:20:00 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3K05C035738; Thu, 15 Jul 2004 03:20:00 GMT (envelope-from alc) Message-Id: <200407150320.i6F3K05C035738@repoman.freebsd.org> From: Alan Cox Date: Thu, 15 Jul 2004 03:20: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/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: Thu, 15 Jul 2004 03:20:00 -0000 alc 2004-07-15 03:20:00 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c Log: A loop in pmap_remove() should use TAILQ_FOREACH_SAFE(), not TAILQ_FOREACH(), because the loop deletes elements from the list. Reviewed by: marcel@ Revision Changes Path 1.139 +2 -2 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:20: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 102C516A56D; Thu, 15 Jul 2004 03:20:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E520443D55; Thu, 15 Jul 2004 03:20:08 +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 i6F3K8nX035776; Thu, 15 Jul 2004 03:20:08 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3K8oB035775; Thu, 15 Jul 2004 03:20:08 GMT (envelope-from njl) Message-Id: <200407150320.i6F3K8oB035775@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 03:20: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/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: Thu, 15 Jul 2004 03:20:09 -0000 njl 2004-07-15 03:20:08 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c Log: Clean up the output on reboot by keeping completion messages on the same line as the announcement. Someone should probably update the "buffers remaining" message since we now no longer should have any buffers remaining at that point. Revision Changes Path 1.155 +2 -2 src/sys/kern/kern_shutdown.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:36: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 02D4C16A4CE; Thu, 15 Jul 2004 03:36:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF1B543D2F; Thu, 15 Jul 2004 03:36:35 +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 i6F3aZiC036416; Thu, 15 Jul 2004 03:36:35 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3aZIw036415; Thu, 15 Jul 2004 03:36:35 GMT (envelope-from davidxu) Message-Id: <200407150336.i6F3aZIw036415@repoman.freebsd.org> From: David Xu Date: Thu, 15 Jul 2004 03:36: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/lib/libthread_db Makefilesrc/lib/libthread_db/include thread_db.h thread_db_int.h src/lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h pthread_db_i386.c src/lib/libthread_db/src Makefile thread_db.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, 15 Jul 2004 03:36:36 -0000 davidxu 2004-07-15 03:36:35 UTC FreeBSD src repository Added files: lib/libthread_db Makefile lib/libthread_db/include thread_db.h thread_db_int.h lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h pthread_db_i386.c lib/libthread_db/src Makefile thread_db.c Log: Add my initial work of libthread_db. The library is used by gdb to debug threaded process. Current, only libpthread is supported, but macrel will work on it to support libthr and libc_r. Revision Changes Path 1.1 +5 -0 src/lib/libthread_db/Makefile (new) 1.1 +287 -0 src/lib/libthread_db/include/thread_db.h (new) 1.1 +93 -0 src/lib/libthread_db/include/thread_db_int.h (new) 1.1 +19 -0 src/lib/libthread_db/pthread/Makefile (new) 1.1 +1087 -0 src/lib/libthread_db/pthread/pthread_db.c (new) 1.1 +60 -0 src/lib/libthread_db/pthread/pthread_db.h (new) 1.1 +105 -0 src/lib/libthread_db/pthread/pthread_db_i386.c (new) 1.1 +15 -0 src/lib/libthread_db/src/Makefile (new) 1.1 +359 -0 src/lib/libthread_db/src/thread_db.c (new) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:43: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 5E26E16A4CE; Thu, 15 Jul 2004 03:43:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB1543D41; Thu, 15 Jul 2004 03:43:18 +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 i6F3hINC036617; Thu, 15 Jul 2004 03:43:18 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3hIW2036616; Thu, 15 Jul 2004 03:43:18 GMT (envelope-from davidxu) Message-Id: <200407150343.i6F3hIW2036616@repoman.freebsd.org> From: David Xu Date: Thu, 15 Jul 2004 03:43: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/include Makefile proc_service.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, 15 Jul 2004 03:43:18 -0000 davidxu 2004-07-15 03:43:18 UTC FreeBSD src repository Modified files: include Makefile Added files: include proc_service.h Log: Add proc_service.h, the common file both debugger and libthread_db will use, program wants to load libthread_db.so should provid proc service interface. Revision Changes Path 1.217 +1 -1 src/include/Makefile 1.1 +103 -0 src/include/proc_service.h (new) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03: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 4B1D416A4CE; Thu, 15 Jul 2004 03:49:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D4EC43D2D; Thu, 15 Jul 2004 03:49: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 i6F3nroc036783; Thu, 15 Jul 2004 03:49:53 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3nr93036782; Thu, 15 Jul 2004 03:49:53 GMT (envelope-from alfred) Message-Id: <200407150349.i6F3nr93036782@repoman.freebsd.org> From: Alfred Perlstein Date: Thu, 15 Jul 2004 03: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/kern kern_event.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, 15 Jul 2004 03:49:53 -0000 alfred 2004-07-15 03:49:53 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: Disable SIGIO for now, leave a comment as to why it's busted and hard to fix. Revision Changes Path 1.72 +20 -0 src/sys/kern/kern_event.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:50: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 3D6AC16A4CE; Thu, 15 Jul 2004 03:50:46 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id C30FB43D1D; Thu, 15 Jul 2004 03:50:45 +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 i6F3uGGB034822; Wed, 14 Jul 2004 21:56:17 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F5FED0.8050908@freebsd.org> Date: Wed, 14 Jul 2004 21:49:36 -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 Xu References: <200407150336.i6F3aZIw036415@repoman.freebsd.org> In-Reply-To: <200407150336.i6F3aZIw036415@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/lib/libthread_db Makefilesrc/lib/libthread_db/include thread_db.h thread_db_int.h src/lib/libthread_db/pthread Makefile src/lib/libthread_db/src Makefile thread_db.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, 15 Jul 2004 03:50:46 -0000 David Xu wrote: > davidxu 2004-07-15 03:36:35 UTC > > FreeBSD src repository > > Added files: > lib/libthread_db Makefile > lib/libthread_db/include thread_db.h thread_db_int.h > lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h > pthread_db_i386.c > lib/libthread_db/src Makefile thread_db.c > Log: > Add my initial work of libthread_db. The library is used by gdb to debug > threaded process. Current, only libpthread is supported, but macrel will > work on it to support libthr and libc_r. > This is excellent! Can you give a quick summary of what one should expect from this when using GDB? Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:52: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 8B20916A4CE; Thu, 15 Jul 2004 03:52:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CDCD43D41; Thu, 15 Jul 2004 03:52:17 +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 i6F3qHmB036950; Thu, 15 Jul 2004 03:52:17 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3qHeU036949; Thu, 15 Jul 2004 03:52:17 GMT (envelope-from davidxu) Message-Id: <200407150352.i6F3qHeU036949@repoman.freebsd.org> From: David Xu Date: Thu, 15 Jul 2004 03:52: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/sys procfs.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, 15 Jul 2004 03:52:17 -0000 davidxu 2004-07-15 03:52:17 UTC FreeBSD src repository Modified files: sys/sys procfs.h Log: type prgregset_t really should be an array. this is odd, however, other systems defined interfaces in thread_db.h use prgregset_t but not prgregset_t * to be a output parameter, this is the only way to maintain source code compatible with them. Revision Changes Path 1.5 +1 -1 src/sys/sys/procfs.h From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:52: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 EEE0A16A4CF; Thu, 15 Jul 2004 03:52:58 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB97943D41; Thu, 15 Jul 2004 03:52:58 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id D38225C90F; Wed, 14 Jul 2004 20:52:58 -0700 (PDT) Date: Wed, 14 Jul 2004 20:52:58 -0700 From: Alfred Perlstein To: Nate Lawson Message-ID: <20040715035258.GK95729@elvis.mu.org> References: <200407150320.i6F3K8oB035775@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407150320.i6F3K8oB035775@repoman.freebsd.org> 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/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: Thu, 15 Jul 2004 03:52:59 -0000 * Nate Lawson [040714 20:21] wrote: > njl 2004-07-15 03:20:08 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_shutdown.c > Log: > Clean up the output on reboot by keeping completion messages on the same > line as the announcement. Someone should probably update the "buffers > remaining" message since we now no longer should have any buffers remaining > at that point. > > Revision Changes Path > 1.155 +2 -2 src/sys/kern/kern_shutdown.c The output kinda sucks since the change went in, can anyone please make it pretty again? Where and how did it change? I saw the commit, but I don't rember where and how it was done. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:00: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 ED53716A4CE; Thu, 15 Jul 2004 04:00:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE81543D2F; Thu, 15 Jul 2004 04:00:52 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F40qlo037191; Thu, 15 Jul 2004 04:00:52 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F40qvo037190; Thu, 15 Jul 2004 04:00:52 GMT (envelope-from murray) Message-Id: <200407150400.i6F40qvo037190@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 04:00:52 +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/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 04:00:53 -0000 murray 2004-07-15 04:00:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) share/dict freebsd Log: MFC: r1.7 - r1.9 : technical terms for automated spellchecking of docs Revision Changes Path 1.2.2.4 +85 -3 src/share/dict/freebsd From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04: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 4F48116A4CE; Thu, 15 Jul 2004 04:03:58 +0000 (GMT) Received: from exchhz01.viatech.com.cn (ip-40-162-97-218.anlai.com [218.97.162.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6306743D1F; Thu, 15 Jul 2004 04:03:54 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freebsd.org (DAVIDWNT [10.4.1.99]) by exchhz01.viatech.com.cn with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id NVXA926V; Thu, 15 Jul 2004 12:03:15 +0800 Message-ID: <40F602EE.4060103@freebsd.org> Date: Thu, 15 Jul 2004 12:07:10 +0800 From: David Xu User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030723 Thunderbird/0.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Long References: <40F5FED0.8050908@freebsd.org> In-Reply-To: <40F5FED0.8050908@freebsd.org> 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/lib/libthread_db Makefile src/lib/libthread_d b/include thread_db.h thread_db_int.h src/lib/libthread_db/pthrea d Makefile pthread_db.c pthread_db.h pthread_db_i386.c sr c/lib/libthread_db/src Makefile thread_db.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, 15 Jul 2004 04:03:58 -0000 Scott Long wrote: > David Xu wrote: > >>davidxu 2004-07-15 03:36:35 UTC >> >> FreeBSD src repository >> >> Added files: >> lib/libthread_db Makefile >> lib/libthread_db/include thread_db.h thread_db_int.h >> lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h >> pthread_db_i386.c >> lib/libthread_db/src Makefile thread_db.c >> Log: >> Add my initial work of libthread_db. The library is used by gdb to > > debug > >> threaded process. Current, only libpthread is supported, but macrel > > will > >> work on it to support libthr and libc_r. >> > > > This is excellent! Can you give a quick summary of what one should > expect from this when using GDB? > When you are debugging a program linked with libpthread, you can see a list of threads when you type 'info threads', you can get info about how to debug threaded process by typing 'info gdb' on command line. Here is an example: avidxu@davidbsd:/home/davidxu/ptest> gdb ./crew GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... (gdb) break worker_routine Breakpoint 1 at 0x8048dae: file crew.c, line 73. (gdb) run node /usr/src/sys Starting program: /usr/home/davidxu/ptest/crew node /usr/src/sys setenv SSH_AUTH_SOCK /tmp/ssh-jKcG3qxNRo/agent.1292; setenv SSH_AGENT_PID 1293; echo Agent pid 1293; [Switching to Thread 1 (LWP 100082)] Breakpoint 1, worker_routine (arg=0xbfbfeab4) at crew.c:73 73 worker_p mine = (worker_t*)arg; (gdb) info threads 11 Thread 10 (sleeping) 0x280964d6 in pthread_mutexattr_init () from /usr/lib/libpthread.so.1 10 Thread 9 (LWP 100116) 0x2809e94b in pthread_testcancel () from /usr/lib/libpthread.so.1 9 Thread 8 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 8 Thread 7 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 7 Thread 6 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 6 Thread 5 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 5 Thread 4 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 4 Thread 3 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 3 Thread 2 (runnable) 0x2814b3b0 in _ctx_start () from /lib/libc.so.5 * 2 Thread 1 (LWP 100082) worker_routine (arg=0xbfbfeab4) at crew.c:73 (gdb) After I commit source code for gdb, you can do it same as me. > Scott > David Xu From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:29: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 252C316A4CE; Thu, 15 Jul 2004 04:29:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DCB43D2D; Thu, 15 Jul 2004 04:29:49 +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 i6F4TmSK037892; Thu, 15 Jul 2004 04:29:48 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4Tm6U037891; Thu, 15 Jul 2004 04:29:48 GMT (envelope-from alfred) Message-Id: <200407150429.i6F4Tm6U037891@repoman.freebsd.org> From: Alfred Perlstein Date: Thu, 15 Jul 2004 04:29: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/kern kern_shutdown.c 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: Thu, 15 Jul 2004 04:29:49 -0000 alfred 2004-07-15 04:29:48 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c vfs_subr.c Log: Tidy up system shutdown. Revision Changes Path 1.156 +13 -5 src/sys/kern/kern_shutdown.c 1.511 +11 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:39: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 E796816A4CE; Thu, 15 Jul 2004 04:39:24 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 962A943D1D; Thu, 15 Jul 2004 04:39:24 +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 i6F4dNrb027908 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 14 Jul 2004 21:39:23 -0700 Message-ID: <40F60A42.2060607@root.org> Date: Wed, 14 Jul 2004 21:38:26 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alfred Perlstein References: <20040715042952.C726216A541@hub.freebsd.org> In-Reply-To: <20040715042952.C726216A541@hub.freebsd.org> 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/kern kern_shutdown.c 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: Thu, 15 Jul 2004 04:39:25 -0000 Alfred Perlstein wrote: > alfred 2004-07-15 04:29:48 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_shutdown.c vfs_subr.c > Log: > Tidy up system shutdown. > > Revision Changes Path > 1.156 +13 -5 src/sys/kern/kern_shutdown.c > 1.511 +11 -1 src/sys/kern/vfs_subr.c This is a step backwards with more newlines and duplicate output (i.e., procname). Please revert. -- -Nate From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:42: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 56ADA16A4CE; Thu, 15 Jul 2004 04:42:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38B2A43D3F; Thu, 15 Jul 2004 04:42:47 +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 i6F4glIk038358; Thu, 15 Jul 2004 04:42:47 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4glbJ038357; Thu, 15 Jul 2004 04:42:47 GMT (envelope-from tjr) Message-Id: <200407150442.i6F4glbJ038357@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 04:42: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/usr.bin/checknr checknr.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, 15 Jul 2004 04:42:47 -0000 tjr 2004-07-15 04:42:47 UTC FreeBSD src repository Modified files: usr.bin/checknr checknr.c Log: Use warn() instead of perror(). Revision Changes Path 1.9 +2 -1 src/usr.bin/checknr/checknr.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04: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 E034816A4CE; Thu, 15 Jul 2004 04:45:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C25B243D31; Thu, 15 Jul 2004 04:45:24 +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 i6F4jOCh038470; Thu, 15 Jul 2004 04:45:24 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4jOOW038469; Thu, 15 Jul 2004 04:45:24 GMT (envelope-from tjr) Message-Id: <200407150445.i6F4jOOW038469@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 04:45: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/usr.bin/fmt fmt.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, 15 Jul 2004 04:45:25 -0000 tjr 2004-07-15 04:45:24 UTC FreeBSD src repository Modified files: usr.bin/fmt fmt.c Log: Use warn() instead of perror(). Revision Changes Path 1.20 +3 -3 src/usr.bin/fmt/fmt.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:51: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 5B84716A4CE; Thu, 15 Jul 2004 04:51:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CB3C43D4C; Thu, 15 Jul 2004 04:51: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 i6F4p4xq038679; Thu, 15 Jul 2004 04:51:04 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4p4Za038678; Thu, 15 Jul 2004 04:51:04 GMT (envelope-from davidxu) Message-Id: <200407150451.i6F4p4Za038678@repoman.freebsd.org> From: David Xu Date: Thu, 15 Jul 2004 04:51: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/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: Thu, 15 Jul 2004 04:51:05 -0000 davidxu 2004-07-15 04:51:04 UTC FreeBSD src repository Added files: gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: Add libthread_db assisted debugging support module. Revision Changes Path 1.1 +1095 -0 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c (new) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:51: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 C9CF116A4CE; Thu, 15 Jul 2004 04:51:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB8AC43D2F; Thu, 15 Jul 2004 04:51:21 +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 i6F4pLKJ038708; Thu, 15 Jul 2004 04:51:21 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4pLbr038707; Thu, 15 Jul 2004 04:51:21 GMT (envelope-from tjr) Message-Id: <200407150451.i6F4pLbr038707@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 04:51: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/usr.bin/lockf lockf.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, 15 Jul 2004 04:51:22 -0000 tjr 2004-07-15 04:51:21 UTC FreeBSD src repository Modified files: usr.bin/lockf lockf.c Log: Use warn() instead of perror(). Revision Changes Path 1.11 +1 -1 src/usr.bin/lockf/lockf.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:52: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 EECA416A4CE; Thu, 15 Jul 2004 04:52:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E86E043D1D; Thu, 15 Jul 2004 04:52:57 +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 i6F4qvAY038787; Thu, 15 Jul 2004 04:52:57 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4qvGB038786; Thu, 15 Jul 2004 04:52:57 GMT (envelope-from jhb) Message-Id: <200407150452.i6F4qvGB038786@repoman.freebsd.org> From: John Baldwin Date: Thu, 15 Jul 2004 04:52: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/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: Thu, 15 Jul 2004 04:52:58 -0000 jhb 2004-07-15 04:52:57 UTC FreeBSD src repository Modified files: release Makefile Log: Remove some serious foot-shooting potential from the release Makefile. For some unknown reason, when LOCAL_PATCHES and LOCAL_SCRIPT were originally added, they were silently ignored if the actual file did not exist. As a result, if one mistyped the pathname to a patch or script, then the release silently succeeded. However, it was not built with the desired changes and no warning was given to inform the builder either. This commit explicitly checks to see that all of the defined patches and scripts exist up front and bails if any of them do not exist. I lost several hours of valuable sleeping time this evening due to this "feature" so I've finally gone and ripped out. I've tripped over this in the past several other times as well. Glanced at by: scottl Revision Changes Path 1.846 +13 -3 src/release/Makefile From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04: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 678C516A4CE; Thu, 15 Jul 2004 04:54:06 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1367943D2D; Thu, 15 Jul 2004 04:54:06 +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 i6F4xbsg035042; Wed, 14 Jul 2004 22:59:37 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F60DA9.8000206@freebsd.org> Date: Wed, 14 Jul 2004 22:52:57 -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: Nate Lawson References: <20040715042952.C726216A541@hub.freebsd.org> <40F60A42.2060607@root.org> In-Reply-To: <40F60A42.2060607@root.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: Alfred Perlstein cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 04:54:06 -0000 Nate Lawson wrote: > Alfred Perlstein wrote: > >> alfred 2004-07-15 04:29:48 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern kern_shutdown.c vfs_subr.c Log: >> Tidy up system shutdown. >> Revision Changes Path >> 1.156 +13 -5 src/sys/kern/kern_shutdown.c >> 1.511 +11 -1 src/sys/kern/vfs_subr.c > > > This is a step backwards with more newlines and duplicate output (i.e., > procname). Please revert. > It's getting a little tedious that whenever someone objects to a commit, their response includes (sometimes little more than) 'please revert.' What don't you like about it? How would you change it? Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 15 04:56: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 4EAED16A4CE; Thu, 15 Jul 2004 04:56:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EBBA43D39; Thu, 15 Jul 2004 04:56:42 +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 i6F4ug0r038920; Thu, 15 Jul 2004 04:56:42 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F4ugkY038919; Thu, 15 Jul 2004 04:56:42 GMT (envelope-from tjr) Message-Id: <200407150456.i6F4ugkY038919@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 04:56: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/usr.bin/xstr xstr.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, 15 Jul 2004 04:56:42 -0000 tjr 2004-07-15 04:56:42 UTC FreeBSD src repository Modified files: usr.bin/xstr xstr.c Log: Use err() instead of perror(), exit(). Revision Changes Path 1.9 +1 -1 src/usr.bin/xstr/xstr.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:00: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 791CC16A4CE; Thu, 15 Jul 2004 05:00:54 +0000 (GMT) Received: from exchhz01.viatech.com.cn (ip-40-162-97-218.anlai.com [218.97.162.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2A5F43D1F; Thu, 15 Jul 2004 05:00:51 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freebsd.org (DAVIDWNT [10.4.1.99]) by exchhz01.viatech.com.cn with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id NVXA9JDX; Thu, 15 Jul 2004 13:00:08 +0800 Message-ID: <40F61043.4010602@freebsd.org> Date: Thu, 15 Jul 2004 13:04:03 +0800 From: David Xu User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030723 Thunderbird/0.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200407150451.i6F4p4Za038678@repoman.freebsd.org> In-Reply-To: <200407150451.i6F4p4Za038678@repoman.freebsd.org> 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/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: Thu, 15 Jul 2004 05:00:54 -0000 David Xu wrote: > davidxu 2004-07-15 04:51:04 UTC > > FreeBSD src repository > > Added files: > gnu/usr.bin/gdb/libgdb fbsd-threads.c > Log: > Add libthread_db assisted debugging support module. > > Revision Changes Path > 1.1 +1095 -0 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c (new) > This is not hooked into gdb build process, Marcel will do all works left there, these include .core file support, and make sure it works on other architectures other than i386, however if you want to try it on i386, here is the patch: http://people.freebsd.org/~davidxu/kse/dbg/gdb.diffs Work has only been done for i386, this does not include AMD64, because I don't have hardware. David Xu From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:02: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 C4B3F16A4CE; Thu, 15 Jul 2004 05:02:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDC3D43D46; Thu, 15 Jul 2004 05:02:25 +0000 (GMT) (envelope-from bmilekic@FreeBSD.org) Received: from freefall.freebsd.org (bmilekic@localhost [127.0.0.1]) i6F52PaF087752; Thu, 15 Jul 2004 05:02:25 GMT (envelope-from bmilekic@freefall.freebsd.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6F52P8e087751; Thu, 15 Jul 2004 05:02:25 GMT (envelope-from bmilekic) Date: Thu, 15 Jul 2004 05:02:25 +0000 From: Bosko Milekic To: Alfred Perlstein Message-ID: <20040715050225.GA87532@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:02:25 -0000 Why on earth would you move that first printf in boot() to inside the loop and introduce a variable to not reprint it after the first iteration? Also, why do you copy the proc name to the stack lower in kern_shutdown.c? Do you fear that the proc might change from under you when you're at the bottom and you can't therefore only keep a reference to the proc instead? -Bosko alfred 2004-07-15 04:29:48 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c vfs_subr.c Log: Tidy up system shutdown. Revision Changes Path 1.156 +13 -5 src/sys/kern/kern_shutdown.c 1.511 +11 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:04: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 9EF2116A4CE; Thu, 15 Jul 2004 05:04:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 828C643D55; Thu, 15 Jul 2004 05:04:39 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F54dQU039100; Thu, 15 Jul 2004 05:04:39 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F54dgo039099; Thu, 15 Jul 2004 05:04:39 GMT (envelope-from murray) Message-Id: <200407150504.i6F54dgo039099@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 05:04: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/share/examples/worm README makecdfs.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: Thu, 15 Jul 2004 05:04:39 -0000 murray 2004-07-15 05:04:39 UTC FreeBSD src repository Removed files: share/examples/worm README makecdfs.sh Log: Remove Walnut Creek CDROM script that Jordan wrote in the 90s. This functionality is largely in src/release/${ARCH}/mkisofs.sh now. PR: docs/43569 Revision Changes Path 1.4 +0 -15 src/share/examples/worm/README (dead) 1.7 +0 -29 src/share/examples/worm/makecdfs.sh (dead) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:12: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 1036816A4CE; Thu, 15 Jul 2004 05:12:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8A3443D1F; Thu, 15 Jul 2004 05:12:04 +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 i6F5C4Gc039392; Thu, 15 Jul 2004 05:12:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F5C4wT039391; Thu, 15 Jul 2004 05:12:04 GMT (envelope-from tjr) Message-Id: <200407150512.i6F5C4wT039391@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 05: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/usr.bin/column column.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: Thu, 15 Jul 2004 05:12:05 -0000 tjr 2004-07-15 05:12:04 UTC FreeBSD src repository Modified files: usr.bin/column column.1 Log: Document line length and multibyte character limitations. Revision Changes Path 1.10 +5 -2 src/usr.bin/column/column.1 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:12: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 B5FA716A4CF; Thu, 15 Jul 2004 05:12:48 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E1A43D39; Thu, 15 Jul 2004 05:12:46 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.11] (junior-wifi.samsco.home [192.168.0.11]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i6F5IHSV035126; Wed, 14 Jul 2004 23:18:17 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <40F6124A.9000409@samsco.org> Date: Wed, 14 Jul 2004 23:12:42 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040702 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200407150451.i6F4p4Za038678@repoman.freebsd.org> <40F61043.4010602@freebsd.org> In-Reply-To: <40F61043.4010602@freebsd.org> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime 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/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: Thu, 15 Jul 2004 05:12:48 -0000 David Xu wrote: > David Xu wrote: > >> davidxu 2004-07-15 04:51:04 UTC >> >> FreeBSD src repository >> >> Added files: >> gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: >> Add libthread_db assisted debugging support module. >> Revision Changes Path >> 1.1 +1095 -0 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c (new) >> > > This is not hooked into gdb build process, Marcel will do > all works left there, these include .core file support, and > make sure it works on other architectures other than i386, > however if you want to try it on i386, here is the patch: > http://people.freebsd.org/~davidxu/kse/dbg/gdb.diffs > > Work has only been done for i386, this does not include > AMD64, because I don't have hardware. > > David Xu > > Can you give an outline of what needs to be done for amd64 and sparc64? I'm sure that there are people who could help if you give them a pointer of where to start. Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:29: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 BC63216A4CE; Thu, 15 Jul 2004 05:29:30 +0000 (GMT) Received: from exchhz01.viatech.com.cn (ip-40-162-97-218.anlai.com [218.97.162.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C95FA43D46; Thu, 15 Jul 2004 05:29:26 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freebsd.org (DAVIDWNT [10.4.1.99]) by exchhz01.viatech.com.cn with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id NVXA9JHF; Thu, 15 Jul 2004 13:28:50 +0800 Message-ID: <40F616FC.4080604@freebsd.org> Date: Thu, 15 Jul 2004 13:32:44 +0800 From: David Xu User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5b) Gecko/20030723 Thunderbird/0.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Long References: <40F6124A.9000409@samsco.org> In-Reply-To: <40F6124A.9000409@samsco.org> 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/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: Thu, 15 Jul 2004 05:29:30 -0000 Scott Long wrote: > David Xu wrote: > >>David Xu wrote: >> >> >>>davidxu 2004-07-15 04:51:04 UTC >>> >>> FreeBSD src repository >>> >>> Added files: >>> gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: >>> Add libthread_db assisted debugging support module. >>> Revision Changes Path >>> 1.1 +1095 -0 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c > > (new) > >>This is not hooked into gdb build process, Marcel will do >>all works left there, these include .core file support, and >>make sure it works on other architectures other than i386, >>however if you want to try it on i386, here is the patch: >>http://people.freebsd.org/~davidxu/kse/dbg/gdb.diffs >> >>Work has only been done for i386, this does not include >>AMD64, because I don't have hardware. >> >>David Xu >> >> > > > Can you give an outline of what needs to be done for amd64 and sparc64? > I'm sure that there are people who could help if you give them a pointer > of where to start. > Implement code as src/lib/libthread_db/pthread/pthread_db_i386.c, this code does conversion work between struct reg and struct ucontext, used for M:N thread. In kernel, make sure ptrace_single_step and ptrace_clear_single_step work, they are in machdep.c, and used by M:N thread too. > Scott > From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:29: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 4BAA916A4CE; Thu, 15 Jul 2004 05:29:41 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 366F943D2D; Thu, 15 Jul 2004 05:29:41 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 2E9D75C86D; Wed, 14 Jul 2004 22:29:41 -0700 (PDT) Date: Wed, 14 Jul 2004 22:29:41 -0700 From: Alfred Perlstein To: Bosko Milekic Message-ID: <20040715052941.GL95729@elvis.mu.org> References: <20040715050225.GA87532@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040715050225.GA87532@freefall.freebsd.org> 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/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:29:41 -0000 * Bosko Milekic [040714 22:02] wrote: > > Why on earth would you move that first printf in boot() to inside > the loop and introduce a variable to not reprint it after the first > iteration? Because there may be no bufs. > Also, why do you copy the proc name to the stack lower in > kern_shutdown.c? Do you fear that the proc might change from > under you when you're at the bottom and you can't therefore > only keep a reference to the proc instead? Because I don't know if the proc will be there after it nukes itself. So glad to be back, -Alfred From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:33: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 6FD0016A4CE; Thu, 15 Jul 2004 05:33:17 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3238C43D45; Thu, 15 Jul 2004 05:33:17 +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 i6F5XFrb028518 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 14 Jul 2004 22:33:16 -0700 Message-ID: <40F616E2.7030601@root.org> Date: Wed, 14 Jul 2004 22:32:18 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Long References: <20040715042952.C726216A541@hub.freebsd.org> <40F60A42.2060607@root.org> <40F60DA9.8000206@freebsd.org> In-Reply-To: <40F60DA9.8000206@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:33:17 -0000 Scott Long wrote: > Nate Lawson wrote: > >> Alfred Perlstein wrote: >> >>> alfred 2004-07-15 04:29:48 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/kern kern_shutdown.c vfs_subr.c Log: >>> Tidy up system shutdown. >>> Revision Changes Path >>> 1.156 +13 -5 src/sys/kern/kern_shutdown.c >>> 1.511 +11 -1 src/sys/kern/vfs_subr.c >> >> This is a step backwards with more newlines and duplicate output >> (i.e., procname). Please revert. > > It's getting a little tedious that whenever someone objects to a commit, > their response includes (sometimes little more than) 'please revert.' > What don't you like about it? How would you change it? As I said above, at a minimum it adds more newlines (which my commit 1 hour before had just removed) and duplicates output. But since you want the full analysis, which is as long as the commit itself: #### @@ -245,6 +245,9 @@ static void boot(int howto) { + int first_buf_printf; + + first_buf_printf = 1; /* collect extra flags that shutdown_nice might have set */ howto |= shutdown_howto; ### Adding unnecessary loop variable. ### @@ -272,7 +275,6 @@ #endif waittime = 0; - printf("syncing disks, buffers remaining... "); sync(&thread0, NULL); @@ -295,6 +297,10 @@ } if (nbusy == 0) break; + if (first_buf_printf) { + printf("syncing disks, buffers remaining... "); + first_buf_printf = 0; + } printf("%d ", nbusy); if (nbusy < pbusy) iter = 0; ### Moving one-time printf into a loop protected by useless flag. ### @@ -576,20 +582,22 @@ kproc_shutdown(void *arg, int howto) { struct proc *p; + char procname[MAXCOMLEN + 1]; int error; if (panicstr) return; p = (struct proc *)arg; - printf("Waiting (max %d seconds) for system process `%s' to stop...", - kproc_shutdown_wait, p->p_comm); + strlcpy(procname, p->p_comm, sizeof(procname)); + printf("Waiting (max %d seconds) for system process `%s' to stop...\n", + kproc_shutdown_wait, procname); error = kthread_suspend(p, kproc_shutdown_wait * hz); ### Adds unnecessary stack variable and copy of an informational name when the proc can't be switched out. ### if (error == EWOULDBLOCK) - printf("timed out\n"); + printf("Stop of '%s' timed out\n", procname); else - printf("stopped\n"); + printf("Process '%s' stopped\n", procname); } ### Adds unnecessary repetition of previous word on line ("stop..."), the proc's name, and an extra line (instead of keeping the result on the same line. Just in case that isn't clear, this makes the output: Waiting (max 60 seconds) for system process `foo' to stop... Process 'foo' stopped Versus what has been there forever: Waiting (max 60 seconds) for system process `foo' to stop... stopped ### @@ -1546,10 +1546,12 @@ int last_work_seen; int net_worklist_len; int syncer_final_iter; + int first_printf; mtx_lock(&Giant); last_work_seen = 0; syncer_final_iter = 0; + first_printf = 1; syncer_state = SYNCER_RUNNING; starttime = time_second; ### Another useless loop variable. ### @@ -1561,12 +1563,20 @@ if (syncer_state == SYNCER_FINAL_DELAY && syncer_final_iter == 0) { mtx_unlock(&sync_mtx); + printf("done.\n"); kthread_suspend_check(td->td_proc); mtx_lock(&sync_mtx); } net_worklist_len = syncer_worklist_len - sync_vnode_count; - if (syncer_state != SYNCER_RUNNING && starttime != time_second) + if (syncer_state != SYNCER_RUNNING && + starttime != time_second) { + if (first_printf) { + printf("Syncer syncing disks, " + "buffers remaining... "); + first_printf = 0; + } printf("%d ", net_worklist_len); + } starttime = time_second; ### Probably unneeded style change (was at 80 cols before). Moving single shot printf into loop. Remember, you asked for all the details. I thought a short email with a few comments should have been enough for this change and less likely to be taken as confrontational. It appears Bosko thought the same thing. -- -Nate From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05: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 1078916A4CE; Thu, 15 Jul 2004 05:43:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E72B743D5F; Thu, 15 Jul 2004 05:43:10 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F5hAZb040322; Thu, 15 Jul 2004 05:43:10 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F5hA7x040321; Thu, 15 Jul 2004 05:43:10 GMT (envelope-from murray) Message-Id: <200407150543.i6F5hA7x040321@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 05:43:10 +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/syscons/keymaps INDEX.keymaps Makefile lat-amer.iso.acc.kbd lat-amer.kbd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 05:43:11 -0000 murray 2004-07-15 05:43:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) share/syscons/keymaps INDEX.keymaps Makefile lat-amer.kbd Added files: (Branch: RELENG_4) share/syscons/keymaps lat-amer.iso.acc.kbd Log: MFC: latin american keymap improvements. submitted by maintainer. PR: misc/53327 Revision Changes Path 1.37.2.11 +4 -0 src/share/syscons/keymaps/INDEX.keymaps 1.44.2.14 +1 -1 src/share/syscons/keymaps/Makefile 1.1.2.1 +139 -0 src/share/syscons/keymaps/lat-amer.iso.acc.kbd (new) 1.4.2.2 +4 -4 src/share/syscons/keymaps/lat-amer.kbd From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:46: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 BF43B16A4CE; Thu, 15 Jul 2004 05:46:14 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8841243D48; Thu, 15 Jul 2004 05:46:14 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i6F5k4mK026902; Wed, 14 Jul 2004 22:46:09 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200407150546.i6F5k4mK026902@gw.catspoiler.org> Date: Wed, 14 Jul 2004 22:46:04 -0700 (PDT) From: Don Lewis To: alfred@FreeBSD.org In-Reply-To: <200407150429.i6F4Tm6U037891@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:46:14 -0000 On 15 Jul, Alfred Perlstein wrote: > alfred 2004-07-15 04:29:48 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_shutdown.c vfs_subr.c > Log: > Tidy up system shutdown. > > Revision Changes Path > 1.156 +13 -5 src/sys/kern/kern_shutdown.c > 1.511 +11 -1 src/sys/kern/vfs_subr.c The message in sched_sync should refer to "vnodes remaining" since that is what it is counting. "Syncer syncing disks" sounds somewhat redundant, since that is its only purpose. Maybe "Syncer doing final sync" would be better if verbosity is desirable. I'd prefer skipping the the final sync() in boot() if there are no dirty buffers, with a message something like "skipping final sync because no dirty buffers remain". From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:48: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 13C8616A4CE; Thu, 15 Jul 2004 05:48:40 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6E8643D1F; Thu, 15 Jul 2004 05:48:39 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id DEA915C870; Wed, 14 Jul 2004 22:48:39 -0700 (PDT) Date: Wed, 14 Jul 2004 22:48:39 -0700 From: Alfred Perlstein To: Nate Lawson Message-ID: <20040715054839.GM95729@elvis.mu.org> References: <20040715042952.C726216A541@hub.freebsd.org> <40F60A42.2060607@root.org> <40F60DA9.8000206@freebsd.org> <40F616E2.7030601@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40F616E2.7030601@root.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Scott Long cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:48:40 -0000 hooboy... * Nate Lawson [040714 22:33] wrote: > > As I said above, at a minimum it adds more newlines (which my commit 1 > hour before had just removed) and duplicates output. But since you want > the full analysis, which is as long as the commit itself: > > #### > @@ -245,6 +245,9 @@ > static void > boot(int howto) > { > + int first_buf_printf; > + > + first_buf_printf = 1; > > /* collect extra flags that shutdown_nice might have set */ > howto |= shutdown_howto; > ### > > Adding unnecessary loop variable. > > ### > @@ -272,7 +275,6 @@ > #endif > > waittime = 0; > - printf("syncing disks, buffers remaining... "); > > sync(&thread0, NULL); > > @@ -295,6 +297,10 @@ > } > if (nbusy == 0) > break; > + if (first_buf_printf) { > + printf("syncing disks, buffers remaining... > "); > + first_buf_printf = 0; > + } > printf("%d ", nbusy); > if (nbusy < pbusy) > iter = 0; > ### > > Moving one-time printf into a loop protected by useless flag. So we one time print .. buffers remaining.. but then nothing? That's confusing and not acceptable. > ### > @@ -576,20 +582,22 @@ > kproc_shutdown(void *arg, int howto) > { > struct proc *p; > + char procname[MAXCOMLEN + 1]; > int error; > > if (panicstr) > return; > > p = (struct proc *)arg; > - printf("Waiting (max %d seconds) for system process `%s' to stop...", > - kproc_shutdown_wait, p->p_comm); > + strlcpy(procname, p->p_comm, sizeof(procname)); > + printf("Waiting (max %d seconds) for system process `%s' to > stop...\n", > + kproc_shutdown_wait, procname); > error = kthread_suspend(p, kproc_shutdown_wait * hz); > ### > > Adds unnecessary stack variable and copy of an informational name when > the proc can't be switched out. If you look later that stack variable is used because the process may be gone. Even if it is not gone, that's not the impression I get. > ### > if (error == EWOULDBLOCK) > - printf("timed out\n"); > + printf("Stop of '%s' timed out\n", procname); > else > - printf("stopped\n"); > + printf("Process '%s' stopped\n", procname); > } > ### > > Adds unnecessary repetition of previous word on line ("stop..."), the > proc's name, and an extra line (instead of keeping the result on the > same line. > > Just in case that isn't clear, this makes the output: > Waiting (max 60 seconds) for system process `foo' to stop... > Process 'foo' stopped > > Versus what has been there forever: > Waiting (max 60 seconds) for system process `foo' to stop... stopped Forever defined as "the last six months or year". Change is good, although change with some proper punctuation would be nice. I'll have to add the periods at the end of those printfs now. :) > ### > @@ -1546,10 +1546,12 @@ > int last_work_seen; > int net_worklist_len; > int syncer_final_iter; > + int first_printf; > > mtx_lock(&Giant); > last_work_seen = 0; > syncer_final_iter = 0; > + first_printf = 1; > syncer_state = SYNCER_RUNNING; > starttime = time_second; > ### > > Another useless loop variable. > > ### > @@ -1561,12 +1563,20 @@ > if (syncer_state == SYNCER_FINAL_DELAY && > syncer_final_iter == 0) { > mtx_unlock(&sync_mtx); > + printf("done.\n"); > kthread_suspend_check(td->td_proc); > mtx_lock(&sync_mtx); > } > net_worklist_len = syncer_worklist_len - sync_vnode_count; > - if (syncer_state != SYNCER_RUNNING && starttime != > time_second) > + if (syncer_state != SYNCER_RUNNING && > + starttime != time_second) { > + if (first_printf) { > + printf("Syncer syncing disks, " > + "buffers remaining... "); > + first_printf = 0; > + } > printf("%d ", net_worklist_len); > + } > starttime = time_second; > ### > > Probably unneeded style change (was at 80 cols before). Moving single > shot printf into loop. > > Remember, you asked for all the details. I thought a short email with a > few comments should have been enough for this change and less likely to > be taken as confrontational. It appears Bosko thought the same thing. What a bikeshed. Not interested anymore. If you have a way to make it suck less go ahead and fix it. Otherwise... hi. :) -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:49: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 33C2916A4CF; Thu, 15 Jul 2004 05:49:39 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A31543D1D; Thu, 15 Jul 2004 05:49:39 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 20D035C86D; Wed, 14 Jul 2004 22:49:39 -0700 (PDT) Date: Wed, 14 Jul 2004 22:49:39 -0700 From: Alfred Perlstein To: Don Lewis Message-ID: <20040715054939.GN95729@elvis.mu.org> References: <200407150429.i6F4Tm6U037891@repoman.freebsd.org> <200407150546.i6F5k4mK026902@gw.catspoiler.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407150546.i6F5k4mK026902@gw.catspoiler.org> 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/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 05:49:39 -0000 * Don Lewis [040714 22:46] wrote: > On 15 Jul, Alfred Perlstein wrote: > > alfred 2004-07-15 04:29:48 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_shutdown.c vfs_subr.c > > Log: > > Tidy up system shutdown. > > > > Revision Changes Path > > 1.156 +13 -5 src/sys/kern/kern_shutdown.c > > 1.511 +11 -1 src/sys/kern/vfs_subr.c > > The message in sched_sync should refer to "vnodes remaining" since that > is what it is counting. "Syncer syncing disks" sounds somewhat > redundant, since that is its only purpose. Maybe "Syncer doing final > sync" would be better if verbosity is desirable. Noted. I'll fix that. > I'd prefer skipping the the final sync() in boot() if there are no dirty > buffers, with a message something like "skipping final sync because no > dirty buffers remain". Diffs welcome! -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:50: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 9483C16A4CE; Thu, 15 Jul 2004 05:50:41 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D05743D41; Thu, 15 Jul 2004 05:50:41 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i6F5oTFx026920; Wed, 14 Jul 2004 22:50:33 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200407150550.i6F5oTFx026920@gw.catspoiler.org> Date: Wed, 14 Jul 2004 22:50:29 -0700 (PDT) From: Don Lewis To: alfred@FreeBSD.org In-Reply-To: <20040714210132.GI95729@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: rwatson@FreeBSD.org cc: src-committers@FreeBSD.org cc: dfr@nlsystems.com cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 15 Jul 2004 05:50:41 -0000 On 14 Jul, Alfred Perlstein wrote: > * Don Lewis [040714 13:38] wrote: >> On 14 Jul, Alfred Perlstein wrote: >> > * Doug Rabson [040714 12:01] wrote: >> >> >> Seems to me that the best thing to do is to defer the psigio() to a >> >> taskqueue that will run in a simpler locking environment. >> > >> > I was thinking that, but I'm worried about "stale delivery", >> > perhaps we need to record the generation count (process start time) >> > in the sigio as well as the request sent, so that we don't send >> > a signal to the wrong process. >> >> This is already handled in the sigio infrastructure. Both struct proc >> and struct pgrp have a list of their potential sigio sources. When the >> process or process group goes away, the exit code disables sigio >> delivery. > > Yes, but if the delivery of the signal becomes async, then we lose > this. Push a reference to the struct sigio onto the taskqueue would be a quick and dirty way of dealing with this. The ugly part is that it would mean adding a reference count and a valid flag to the struct sigio. From owner-cvs-src@FreeBSD.ORG Thu Jul 15 05:53: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 29A5916A4CE; Thu, 15 Jul 2004 05:53:38 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA2543D41; Thu, 15 Jul 2004 05:53:38 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 147835C85C; Wed, 14 Jul 2004 22:53:38 -0700 (PDT) Date: Wed, 14 Jul 2004 22:53:38 -0700 From: Alfred Perlstein To: Don Lewis Message-ID: <20040715055338.GO95729@elvis.mu.org> References: <20040714210132.GI95729@elvis.mu.org> <200407150550.i6F5oTFx026920@gw.catspoiler.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407150550.i6F5oTFx026920@gw.catspoiler.org> User-Agent: Mutt/1.4.2.1i cc: rwatson@FreeBSD.org cc: src-committers@FreeBSD.org cc: dfr@nlsystems.com cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_event.c src/sys/sys eventvar.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, 15 Jul 2004 05:53:38 -0000 * Don Lewis [040714 22:50] wrote: > > Push a reference to the struct sigio onto the taskqueue would be a quick > and dirty way of dealing with this. The ugly part is that it would mean > adding a reference count and a valid flag to the struct sigio. Yah, one day... :) -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 06:13: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 6793D16A4CE; Thu, 15 Jul 2004 06:13:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BF3243D1F; Thu, 15 Jul 2004 06:13:43 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F6DhG8041133; Thu, 15 Jul 2004 06:13:43 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F6Dh8a041132; Thu, 15 Jul 2004 06:13:43 GMT (envelope-from murray) Message-Id: <200407150613.i6F6Dh8a041132@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 06:13:43 +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/release/sysinstall Makefile 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: Thu, 15 Jul 2004 06:13:43 -0000 murray 2004-07-15 06:13:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/sysinstall Makefile menus.c Log: Make latin american keymap with accent keys available in sysinstall. PR: 67365 Revision Changes Path 1.92.2.24 +1 -1 src/release/sysinstall/Makefile 1.252.2.72 +1 -0 src/release/sysinstall/menus.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 06:15: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 8E26B16A4CE; Thu, 15 Jul 2004 06:15:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 714F343D2F; Thu, 15 Jul 2004 06:15:10 +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 i6F6FAGX041184; Thu, 15 Jul 2004 06:15:10 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F6FAhR041183; Thu, 15 Jul 2004 06:15:10 GMT (envelope-from tjr) Message-Id: <200407150615.i6F6FAhR041183@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 06: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/usr.bin/basename basename.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, 15 Jul 2004 06:15:10 -0000 tjr 2004-07-15 06:15:10 UTC FreeBSD src repository Modified files: usr.bin/basename basename.c Log: Ensure that suffix matches occur on character boundaries. Revision Changes Path 1.15 +32 -4 src/usr.bin/basename/basename.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 06:43: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 F1A0616A4CE; Thu, 15 Jul 2004 06:43:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D733743D2F; Thu, 15 Jul 2004 06:43:52 +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 i6F6hqna042198; Thu, 15 Jul 2004 06:43:52 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F6hqJG042197; Thu, 15 Jul 2004 06:43:52 GMT (envelope-from tjr) Message-Id: <200407150643.i6F6hqJG042197@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 06:43: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/usr.bin/col col.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: Thu, 15 Jul 2004 06:43:53 -0000 tjr 2004-07-15 06:43:52 UTC FreeBSD src repository Modified files: usr.bin/col col.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.14 +5 -1 src/usr.bin/col/col.1 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 06:57: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 412F316A4CE; Thu, 15 Jul 2004 06:57:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2533943D39; Thu, 15 Jul 2004 06:57:37 +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 i6F6vbNI042627; Thu, 15 Jul 2004 06:57:37 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F6vbBj042626; Thu, 15 Jul 2004 06:57:37 GMT (envelope-from tjr) Message-Id: <200407150657.i6F6vbBj042626@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 06:57: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/usr.bin/colcrt colcrt.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, 15 Jul 2004 06:57:37 -0000 tjr 2004-07-15 06:57:37 UTC FreeBSD src repository Modified files: usr.bin/colcrt colcrt.c Log: Use freopen() instead of a nasty hack. Revision Changes Path 1.15 +1 -2 src/usr.bin/colcrt/colcrt.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 06:59: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 34E5716A4CE; Thu, 15 Jul 2004 06:59:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 188AA43D3F; Thu, 15 Jul 2004 06:59:35 +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 i6F6xYLR042678; Thu, 15 Jul 2004 06:59:34 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F6xYWk042677; Thu, 15 Jul 2004 06:59:34 GMT (envelope-from tjr) Message-Id: <200407150659.i6F6xYWk042677@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 06:59: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/usr.bin/colcrt colcrt.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: Thu, 15 Jul 2004 06:59:35 -0000 tjr 2004-07-15 06:59:34 UTC FreeBSD src repository Modified files: usr.bin/colcrt colcrt.1 Log: Add incorrect multibyte character handling to the already long list of bugs. Revision Changes Path 1.11 +3 -1 src/usr.bin/colcrt/colcrt.1 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:26: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 372C616A4CE; Thu, 15 Jul 2004 07:26:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B46343D49; Thu, 15 Jul 2004 07:26:21 +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 i6F7QKj1043581; Thu, 15 Jul 2004 07:26:20 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7QKTO043580; Thu, 15 Jul 2004 07:26:20 GMT (envelope-from tjr) Message-Id: <200407150726.i6F7QKTO043580@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 07:26: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/usr.bin/killall killall.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, 15 Jul 2004 07:26:21 -0000 tjr 2004-07-15 07:26:20 UTC FreeBSD src repository Modified files: usr.bin/killall killall.c Log: Respect locale settings from the environment. Revision Changes Path 1.28 +3 -0 src/usr.bin/killall/killall.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:30: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 5236416A640; Thu, 15 Jul 2004 07:30:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3765A43D2F; Thu, 15 Jul 2004 07:30:16 +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 i6F7UGeD043699; Thu, 15 Jul 2004 07:30:16 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7UFAi043698; Thu, 15 Jul 2004 07:30:15 GMT (envelope-from tjr) Message-Id: <200407150730.i6F7UFAi043698@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 07:30: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/usr.bin/killall killall.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, 15 Jul 2004 07:30:16 -0000 tjr 2004-07-15 07:30:15 UTC FreeBSD src repository Modified files: usr.bin/killall killall.c Log: Print size_t with %zu, not %d. Revision Changes Path 1.29 +1 -1 src/usr.bin/killall/killall.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:33: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 1A08316A4CE; Thu, 15 Jul 2004 07:33:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F308143D3F; Thu, 15 Jul 2004 07:33:56 +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 i6F7Xu6x043830; Thu, 15 Jul 2004 07:33:56 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7XulQ043829; Thu, 15 Jul 2004 07:33:56 GMT (envelope-from tjr) Message-Id: <200407150733.i6F7XulQ043829@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 07:33: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/usr.bin/killall killall.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, 15 Jul 2004 07:33:57 -0000 tjr 2004-07-15 07:33:56 UTC FreeBSD src repository Modified files: usr.bin/killall killall.c Log: Don't pass negative values into functions on machines with signed chars. Revision Changes Path 1.30 +3 -3 src/usr.bin/killall/killall.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:34: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 F10EA16A4CE; Thu, 15 Jul 2004 07:34:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D658D43D45; Thu, 15 Jul 2004 07:34:14 +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 i6F7YEis043863; Thu, 15 Jul 2004 07:34:14 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7YEPF043862; Thu, 15 Jul 2004 07:34:14 GMT (envelope-from roam) Message-Id: <200407150734.i6F7YEPF043862@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 15 Jul 2004 07:34: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/usr.sbin/usbd usbd.conf.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: Thu, 15 Jul 2004 07:34:15 -0000 roam 2004-07-15 07:34:14 UTC FreeBSD src repository (doc,ports committer) Modified files: usr.sbin/usbd usbd.conf.5 Log: Fix 'camcontrol rescan' syntax and use the proper indentation for the FILES list. PR: 66827 Submitted by: Michel Lavondes MFC after: 2 weeks Revision Changes Path 1.14 +2 -2 src/usr.sbin/usbd/usbd.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:46: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 9FE3316A4CE; Thu, 15 Jul 2004 07:46:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8556F43D49; Thu, 15 Jul 2004 07:46:24 +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 i6F7kOZq044319; Thu, 15 Jul 2004 07:46:24 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7kO9b044318; Thu, 15 Jul 2004 07:46:24 GMT (envelope-from roam) Message-Id: <200407150746.i6F7kO9b044318@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 15 Jul 2004 07:46:24 +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/sys/i386/conf LINT X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 07:46:24 -0000 roam 2004-07-15 07:46:24 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) sys/i386/conf LINT Log: MFC the relevant spelling fixes from mpp's rev. 1.1234 of src/sys/conf/NOTES. Revision Changes Path 1.749.2.170 +6 -6 src/sys/i386/conf/LINT From owner-cvs-src@FreeBSD.ORG Thu Jul 15 07:52: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 7B33F16A4CE; Thu, 15 Jul 2004 07:52:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6064843D1F; Thu, 15 Jul 2004 07:52:28 +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 i6F7qSfK044514; Thu, 15 Jul 2004 07:52:28 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F7qSXM044513; Thu, 15 Jul 2004 07:52:28 GMT (envelope-from roam) Message-Id: <200407150752.i6F7qSXM044513@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 15 Jul 2004 07:52: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/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, 15 Jul 2004 07:52:28 -0000 roam 2004-07-15 07:52:28 UTC FreeBSD src repository (doc,ports committer) Modified files: sys/conf NOTES Log: A couple of grammar fixes in the bktr options section. PR: 66828 (mostly) Submitted by: Michel Lavondes MFC after: 2 weeks Revision Changes Path 1.1245 +4 -4 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08:01: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 08D6E16A4CE; Thu, 15 Jul 2004 08:01:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E199C43D49; Thu, 15 Jul 2004 08:01: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 i6F810Ar044944; Thu, 15 Jul 2004 08:01:00 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F810at044943; Thu, 15 Jul 2004 08:01:00 GMT (envelope-from alfred) Message-Id: <200407150801.i6F810at044943@repoman.freebsd.org> From: Alfred Perlstein Date: Thu, 15 Jul 2004 08:01: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/kern kern_shutdown.c 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: Thu, 15 Jul 2004 08:01:01 -0000 alfred 2004-07-15 08:01:00 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c vfs_subr.c Log: Cleanup shutdown output. Revision Changes Path 1.157 +3 -5 src/sys/kern/kern_shutdown.c 1.512 +1 -2 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08:10: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 7A2A016A4CE; Thu, 15 Jul 2004 08:10:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F76A43D46; Thu, 15 Jul 2004 08:10:26 +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 i6F8AQRj045294; Thu, 15 Jul 2004 08:10:26 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8AQA7045293; Thu, 15 Jul 2004 08:10:26 GMT (envelope-from tjr) Message-Id: <200407150810.i6F8AQA7045293@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 08:10: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/usr.bin/pkill pkill.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, 15 Jul 2004 08:10:26 -0000 tjr 2004-07-15 08:10:26 UTC FreeBSD src repository Modified files: usr.bin/pkill pkill.c Log: Respect locale settings from the environment. Revision Changes Path 1.18 +3 -0 src/usr.bin/pkill/pkill.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08:13: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 572B916A4CE; Thu, 15 Jul 2004 08:13:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AED843D1F; Thu, 15 Jul 2004 08:13:56 +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 i6F8DuBG045400; Thu, 15 Jul 2004 08:13:56 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8Du74045399; Thu, 15 Jul 2004 08:13:56 GMT (envelope-from tjr) Message-Id: <200407150813.i6F8Du74045399@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 08:13: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/usr.bin/whereis whereis.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, 15 Jul 2004 08:13:56 -0000 tjr 2004-07-15 08:13:56 UTC FreeBSD src repository Modified files: usr.bin/whereis whereis.c Log: Respect locale settings from the environment. Revision Changes Path 1.13 +3 -0 src/usr.bin/whereis/whereis.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08: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 45FA616A4CE; Thu, 15 Jul 2004 08:26:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C00643D5D; Thu, 15 Jul 2004 08:26:08 +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 i6F8Q81j046772; Thu, 15 Jul 2004 08:26:08 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8Q8Kx046771; Thu, 15 Jul 2004 08:26:08 GMT (envelope-from phk) Message-Id: <200407150826.i6F8Q8Kx046771@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 15 Jul 2004 08:26: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/alpha/linux linux_sysvec.c src/sys/cam cam_periph.h cam_xpt.c src/sys/coda coda_fbsd.c src/sys/compat/svr4 svr4_sysvec.c src/sys/dev/aic7xxx aic79xx_osm.c aic7xxx_osm.c src/sys/dev/bktr bktr_mem.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, 15 Jul 2004 08:26:08 -0000 phk 2004-07-15 08:26:08 UTC FreeBSD src repository Modified files: sys/alpha/linux linux_sysvec.c sys/cam cam_periph.h cam_xpt.c sys/coda coda_fbsd.c sys/compat/svr4 svr4_sysvec.c sys/dev/aic7xxx aic79xx_osm.c aic7xxx_osm.c sys/dev/bktr bktr_mem.c sys/dev/dcons dcons.c sys/dev/fb fb.c splashreg.h sys/dev/firewire firewire.c sys/dev/harp if_harp.c sys/dev/hfa hfa_freebsd.c sys/dev/ispfw ispfw.c sys/dev/md md.c sys/dev/null null.c sys/dev/ofw openpromio.c sys/dev/random randomdev.c sys/dev/snp snp.c sys/dev/sound driver.c sys/dev/streams streams.c sys/dev/syscons syscons.h sys/dev/utopia utopia.c sys/dev/vinum vinum.c sys/fs/pseudofs pseudofs.c sys/fs/unionfs union_subr.c sys/geom/gate g_gate.c sys/i386/ibcs2 ibcs2_sysvec.c sys/i386/isa vesa.c sys/i386/linux linux_sysvec.c sys/i4b/include i4b_global.h sys/kern kern_mac.c kern_module.c kern_syscalls.c subr_bus.c vfs_init.c sys/net if_disc.c if_ef.c if_faith.c if_gif.c if_gre.c if_loop.c if_ppp.c if_sl.c if_spppsubr.c if_stf.c if_tun.c if_vlan.c sys/netgraph ng_base.c sys/netinet ip_dummynet.c ip_fw2.c ip_mroute.c sys/netinet6 ip6_fw.c sys/nfsserver nfs_srvsubs.c sys/sys exec.h Log: Do a pass over all modules in the kernel and make them return EOPNOTSUPP for unknown events. A number of modules return EINVAL in this instance, and I have left those alone for now and instead taught MOD_QUIESCE to accept this as "didn't do anything". Revision Changes Path 1.93 +1 -0 src/sys/alpha/linux/linux_sysvec.c 1.14 +2 -0 src/sys/cam/cam_periph.h 1.142 +2 -0 src/sys/cam/cam_xpt.c 1.36 +2 -2 src/sys/coda/coda_fbsd.c 1.37 +1 -0 src/sys/compat/svr4/svr4_sysvec.c 1.17 +1 -0 src/sys/dev/aic7xxx/aic79xx_osm.c 1.40 +1 -0 src/sys/dev/aic7xxx/aic7xxx_osm.c 1.11 +1 -0 src/sys/dev/bktr/bktr_mem.c 1.15 +3 -0 src/sys/dev/dcons/dcons.c 1.32 +2 -0 src/sys/dev/fb/fb.c 1.6 +3 -1 src/sys/dev/fb/splashreg.h 1.77 +2 -0 src/sys/dev/firewire/firewire.c 1.5 +2 -0 src/sys/dev/harp/if_harp.c 1.9 +1 -0 src/sys/dev/hfa/hfa_freebsd.c 1.13 +1 -0 src/sys/dev/ispfw/ispfw.c 1.125 +1 -0 src/sys/dev/md/md.c 1.27 +2 -0 src/sys/dev/null/null.c 1.5 +1 -1 src/sys/dev/ofw/openpromio.c 1.56 +4 -0 src/sys/dev/random/randomdev.c 1.92 +1 -0 src/sys/dev/snp/snp.c 1.12 +1 -0 src/sys/dev/sound/driver.c 1.47 +1 -0 src/sys/dev/streams/streams.c 1.79 +2 -0 src/sys/dev/syscons/syscons.h 1.7 +2 -0 src/sys/dev/utopia/utopia.c 1.66 +1 -0 src/sys/dev/vinum/vinum.c 1.21 +1 -1 src/sys/fs/pseudofs/pseudofs.c 1.79 +1 -0 src/sys/fs/unionfs/union_subr.c 1.10 +1 -0 src/sys/geom/gate/g_gate.c 1.28 +1 -1 src/sys/i386/ibcs2/ibcs2_sysvec.c 1.47 +1 -1 src/sys/i386/isa/vesa.c 1.132 +1 -1 src/sys/i386/linux/linux_sysvec.c 1.12 +2 -0 src/sys/i4b/include/i4b_global.h 1.113 +1 -0 src/sys/kern/kern_mac.c 1.45 +1 -1 src/sys/kern/kern_module.c 1.11 +3 -0 src/sys/kern/kern_syscalls.c 1.155 +5 -0 src/sys/kern/subr_bus.c 1.70 +2 -1 src/sys/kern/vfs_init.c 1.44 +2 -0 src/sys/net/if_disc.c 1.31 +1 -1 src/sys/net/if_ef.c 1.32 +2 -0 src/sys/net/if_faith.c 1.49 +2 -0 src/sys/net/if_gif.c 1.27 +2 -0 src/sys/net/if_gre.c 1.100 +2 -0 src/sys/net/if_loop.c 1.100 +2 -0 src/sys/net/if_ppp.c 1.121 +2 -0 src/sys/net/if_sl.c 1.113 +1 -2 src/sys/net/if_spppsubr.c 1.42 +2 -0 src/sys/net/if_stf.c 1.144 +2 -0 src/sys/net/if_tun.c 1.70 +2 -0 src/sys/net/if_vlan.c 1.81 +1 -1 src/sys/netgraph/ng_base.c 1.82 +1 -0 src/sys/netinet/ip_dummynet.c 1.64 +1 -0 src/sys/netinet/ip_fw2.c 1.103 +2 -0 src/sys/netinet/ip_mroute.c 1.32 +1 -0 src/sys/netinet6/ip6_fw.c 1.130 +8 -5 src/sys/nfsserver/nfs_srvsubs.c 1.31 +1 -0 src/sys/sys/exec.h From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08: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 C7AF216A4CE; Thu, 15 Jul 2004 08:27:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA5AB43D58; Thu, 15 Jul 2004 08:27:04 +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 i6F8R4ZY046842; Thu, 15 Jul 2004 08:27:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8R4cR046841; Thu, 15 Jul 2004 08:27:04 GMT (envelope-from tjr) Message-Id: <200407150827.i6F8R4cR046841@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 08:27: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/usr.bin/fmt fmt.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, 15 Jul 2004 08:27:05 -0000 tjr 2004-07-15 08:27:04 UTC FreeBSD src repository Modified files: usr.bin/fmt fmt.c Log: Avoid passing negative values to isspace() on systems with signed chars. Revision Changes Path 1.21 +1 -1 src/usr.bin/fmt/fmt.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08:45: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 7790316A4CE; Thu, 15 Jul 2004 08:45:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BE7D43D55; Thu, 15 Jul 2004 08:45:05 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F8j5a0047575; Thu, 15 Jul 2004 08:45:05 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8j5gH047574; Thu, 15 Jul 2004 08:45:05 GMT (envelope-from murray) Message-Id: <200407150845.i6F8j5gH047574@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 08:45:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access.unclassified X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 08:45:05 -0000 murray 2004-07-15 08:45:05 UTC FreeBSD src repository Modified files: . access.unclassified Log: Retire logo's bit for safekeeping. It's been 2 years since he committed anything, and he hasn't responded to my pings about the status of his account. With hats: mentor, doceng Revision Changes Path 1.645 +0 -1 CVSROOT/access.unclassified From owner-cvs-src@FreeBSD.ORG Thu Jul 15 08: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 802FD16A4CE; Thu, 15 Jul 2004 08:54:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 653F643D39; Thu, 15 Jul 2004 08:54:41 +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 i6F8sfhN047841; Thu, 15 Jul 2004 08:54:41 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F8sfD2047840; Thu, 15 Jul 2004 08:54:41 GMT (envelope-from tjr) Message-Id: <200407150854.i6F8sfD2047840@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 08: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/usr.bin/du du.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, 15 Jul 2004 08:54:41 -0000 tjr 2004-07-15 08:54:41 UTC FreeBSD src repository Modified files: usr.bin/du du.c Log: Respect locale settings from the environment. Revision Changes Path 1.35 +3 -0 src/usr.bin/du/du.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 09:23: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 8F0B016A4CE; Thu, 15 Jul 2004 09:23:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71EC943D4C; Thu, 15 Jul 2004 09:23:04 +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 i6F9N4aF048623; Thu, 15 Jul 2004 09:23:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F9N49o048622; Thu, 15 Jul 2004 09:23:04 GMT (envelope-from tjr) Message-Id: <200407150923.i6F9N49o048622@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 09: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/usr.bin/column column.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, 15 Jul 2004 09:23:04 -0000 tjr 2004-07-15 09:23:04 UTC FreeBSD src repository Modified files: usr.bin/column column.c Log: Avoid passing negative values to isspace() on machines with signed chars. Revision Changes Path 1.12 +1 -1 src/usr.bin/column/column.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 09:28: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 D9C2116A4CE; Thu, 15 Jul 2004 09:28:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D524943D2F; Thu, 15 Jul 2004 09:28:03 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F9S3fD048925; Thu, 15 Jul 2004 09:28:03 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F9S3n5048924; Thu, 15 Jul 2004 09:28:03 GMT (envelope-from murray) Message-Id: <200407150928.i6F9S3n5048924@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Jul 2004 09:28: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/release/alpha mkisoimages.sh src/release/amd64 mkisoimages.sh src/release/i386 mkisoimages.sh src/release/ia64 mkisoimages.sh src/release/sparc64 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: Thu, 15 Jul 2004 09:28:04 -0000 murray 2004-07-15 09:28:03 UTC FreeBSD src repository Modified files: release/alpha mkisoimages.sh release/amd64 mkisoimages.sh release/i386 mkisoimages.sh release/ia64 mkisoimages.sh release/sparc64 mkisoimages.sh Log: Add a publisher variable with the URL for the FreeBSD Project, and put this into the ISO headers by specifying the -P option to mkisofs. Obtained from: share/examples/worm/makecdfs.sh Revision Changes Path 1.10 +3 -1 src/release/alpha/mkisoimages.sh 1.10 +2 -1 src/release/amd64/mkisoimages.sh 1.11 +3 -1 src/release/i386/mkisoimages.sh 1.8 +2 -1 src/release/ia64/mkisoimages.sh 1.6 +2 -1 src/release/sparc64/mkisoimages.sh From owner-cvs-src@FreeBSD.ORG Thu Jul 15 09:42: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 661E616A4CE; Thu, 15 Jul 2004 09:42:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B60A43D1D; Thu, 15 Jul 2004 09:42:17 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6F9gHMY049409; Thu, 15 Jul 2004 09:42:17 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F9gH1Y049408; Thu, 15 Jul 2004 09:42:17 GMT (envelope-from brian) Message-Id: <200407150942.i6F9gH1Y049408@repoman.freebsd.org> From: Brian Somers Date: Thu, 15 Jul 2004 09:42: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/usr.sbin/ppp command.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, 15 Jul 2004 09:42:17 -0000 brian 2004-07-15 09:42:17 UTC FreeBSD src repository Modified files: usr.sbin/ppp command.c Log: Fix ``set ifaddr''. The code was actually using an uninitialised variable, but conveniently, because ncpaddr.ncpaddr_family != AF_INET, the call to ncpaddr_getip4addr() became a no-op leaving the local address as it was (defaulting to whatever my hostname resolves to). PR: 62050 Submitted by: Peter Jeremy MFC after: 3 days Revision Changes Path 1.298 +1 -1 src/usr.sbin/ppp/command.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 10: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 36A8F16A4CE; Thu, 15 Jul 2004 10:26:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A8EB43D2F; Thu, 15 Jul 2004 10:26:39 +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 i6FAQckE050515; Thu, 15 Jul 2004 10:26:39 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FAQcxY050514; Thu, 15 Jul 2004 10:26:38 GMT (envelope-from tjr) Message-Id: <200407151026.i6FAQcxY050514@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 10:26: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.bin/rs rs.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, 15 Jul 2004 10:26:39 -0000 tjr 2004-07-15 10:26:38 UTC FreeBSD src repository Modified files: usr.bin/rs rs.c Log: Avoid passing negative values to isdigit() on machines with signed chars. Revision Changes Path 1.12 +5 -5 src/usr.bin/rs/rs.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 11:10: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 AC92216A4CF; Thu, 15 Jul 2004 11:10:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FC7143D41; Thu, 15 Jul 2004 11:10:09 +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 i6FBA9FM051763; Thu, 15 Jul 2004 11:10:09 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FBA922051762; Thu, 15 Jul 2004 11:10:09 GMT (envelope-from tjr) Message-Id: <200407151110.i6FBA922051762@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 15 Jul 2004 11:10: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.bin/colrm colrm.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: Thu, 15 Jul 2004 11:10:09 -0000 tjr 2004-07-15 11:10:09 UTC FreeBSD src repository Modified files: usr.bin/colrm colrm.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.8 +5 -1 src/usr.bin/colrm/colrm.1 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 13:24: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 3B00016A4CE; Thu, 15 Jul 2004 13:24:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E39B43D3F; Thu, 15 Jul 2004 13:24:45 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6FDOjpL055836; Thu, 15 Jul 2004 13:24:45 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FDOjAd055835; Thu, 15 Jul 2004 13:24:45 GMT (envelope-from mbr) Message-Id: <200407151324.i6FDOjAd055835@repoman.freebsd.org> From: Martin Blapp Date: Thu, 15 Jul 2004 13:24: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/usr.sbin/amd/include config.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, 15 Jul 2004 13:24:45 -0000 mbr 2004-07-15 13:24:44 UTC FreeBSD src repository Modified files: usr.sbin/amd/include config.h Log: Reenable nullfs for local links. The change from 'struct vfsconf' to 'struct xvfsconf' broke auto configuration. Patches have been submitted to the vendor. Revision Changes Path 1.30 +3 -3 src/usr.sbin/amd/include/config.h From owner-cvs-src@FreeBSD.ORG Thu Jul 15 13: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 A52FA16A4CE; Thu, 15 Jul 2004 13:43:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8975643D41; Thu, 15 Jul 2004 13:43:49 +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 i6FDhn22056571; Thu, 15 Jul 2004 13:43:49 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FDhnmt056570; Thu, 15 Jul 2004 13:43:49 GMT (envelope-from roam) Message-Id: <200407151343.i6FDhnmt056570@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 15 Jul 2004 13:43:49 +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 pnp.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: Thu, 15 Jul 2004 13:43:49 -0000 roam 2004-07-15 13:43:49 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man4/man4.i386 pnp.4 Log: Several grammatical fixes. PR: 66826 (partially) Submitted by: Michel Lavondes Revision Changes Path 1.5.2.8 +12 -12 src/share/man/man4/man4.i386/pnp.4 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 13:44: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 9A12116A4CE; Thu, 15 Jul 2004 13:44:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D15143D55; Thu, 15 Jul 2004 13:44:45 +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 i6FDijI0056631; Thu, 15 Jul 2004 13:44:45 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FDij3Y056630; Thu, 15 Jul 2004 13:44:45 GMT (envelope-from roam) Message-Id: <200407151344.i6FDij3Y056630@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 15 Jul 2004 13:44:45 +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 pnp.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: Thu, 15 Jul 2004 13:44:45 -0000 roam 2004-07-15 13:44:45 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) share/man/man4/man4.i386 pnp.4 Log: Fix yet another hard sentence break. No content changes. Revision Changes Path 1.5.2.9 +2 -1 src/share/man/man4/man4.i386/pnp.4 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 15:00: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 E9CBE16A4CE; Thu, 15 Jul 2004 15:00:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE97B43D3F; Thu, 15 Jul 2004 15:00:02 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6FF023f058881; Thu, 15 Jul 2004 15:00:02 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FF02RS058880; Thu, 15 Jul 2004 15:00:02 GMT (envelope-from nyan) Message-Id: <200407151500.i6FF02RS058880@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Thu, 15 Jul 2004 15:00: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/pc98/pc98 fd.c fdc_cbus.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, 15 Jul 2004 15:00:03 -0000 nyan 2004-07-15 15:00:02 UTC FreeBSD src repository Modified files: sys/pc98/pc98 fd.c fdc_cbus.c Log: Move the fdc_alloc_resources function into the bus front end. Revision Changes Path 1.152 +1 -203 src/sys/pc98/pc98/fd.c 1.3 +82 -3 src/sys/pc98/pc98/fdc_cbus.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 15:17: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 DF95716A4CE; Thu, 15 Jul 2004 15:17:04 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49A7D43D1F; Thu, 15 Jul 2004 15:17:04 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i6FFH3U4090600; Fri, 16 Jul 2004 00:17:03 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Fri, 16 Jul 2004 00:17:03 +0900 From: Norikatsu Shigemura To: Murray Stokely Message-Id: <20040716001703.79c72a33.nork@FreeBSD.org> In-Reply-To: <200407150504.i6F54dgo039099@repoman.freebsd.org> References: <200407150504.i6F54dgo039099@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.4.4; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.3 (sakura.ninth-nine.com [219.127.74.121]); Fri, 16 Jul 2004 00:17:03 +0900 (JST) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/worm README makecdfs.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: Thu, 15 Jul 2004 15:17:05 -0000 On Thu, 15 Jul 2004 05:04:39 +0000 (UTC) Murray Stokely wrote: > murray 2004-07-15 05:04:39 UTC > FreeBSD src repository > Removed files: > share/examples/worm README makecdfs.sh > Log: > Remove Walnut Creek CDROM script that Jordan wrote in the 90s. > This functionality is largely in src/release/${ARCH}/mkisofs.sh now. > PR: docs/43569 Oops, please remove worm/* in src/share/examples/Makefile. So `make installworld' will be fixed:-). > Revision Changes Path > 1.4 +0 -15 src/share/examples/worm/README (dead) > 1.7 +0 -29 src/share/examples/worm/makecdfs.sh (dead) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 15:37: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 3D95F16A4CE; Thu, 15 Jul 2004 15:37:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2316143D3F; Thu, 15 Jul 2004 15:37:57 +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 i6FFbvEn059953; Thu, 15 Jul 2004 15:37:57 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FFbvbG059952; Thu, 15 Jul 2004 15:37:57 GMT (envelope-from scottl) Message-Id: <200407151537.i6FFbvbG059952@repoman.freebsd.org> From: Scott Long Date: Thu, 15 Jul 2004 15:37: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/share/examples 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, 15 Jul 2004 15:37:57 -0000 scottl 2004-07-15 15:37:57 UTC FreeBSD src repository Modified files: share/examples Makefile Log: Move references to the recently removed worm directory. Revision Changes Path 1.42 +2 -5 src/share/examples/Makefile From owner-cvs-src@FreeBSD.ORG Thu Jul 15 15: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 7CBCA16A4CF; Thu, 15 Jul 2004 15:56:47 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDEEC43D1D; Thu, 15 Jul 2004 15:56:46 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i6FFujgD091575; Fri, 16 Jul 2004 00:56:46 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Fri, 16 Jul 2004 00:56:45 +0900 From: Norikatsu Shigemura To: Scott Long Message-Id: <20040716005645.42292ded.nork@FreeBSD.org> In-Reply-To: <200407151537.i6FFbvbG059952@repoman.freebsd.org> References: <200407151537.i6FFbvbG059952@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.4.4; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.3 (sakura.ninth-nine.com [219.127.74.121]); Fri, 16 Jul 2004 00:56:46 +0900 (JST) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples 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, 15 Jul 2004 15:56:47 -0000 On Thu, 15 Jul 2004 15:37:57 +0000 (UTC) Scott Long wrote: > scottl 2004-07-15 15:37:57 UTC > FreeBSD src repository > Modified files: > share/examples Makefile > Log: > Move references to the recently removed worm directory. Thanks! > Revision Changes Path > 1.42 +2 -5 src/share/examples/Makefile From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:29: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 0311816A4CE; Thu, 15 Jul 2004 16:29:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC73443D45; Thu, 15 Jul 2004 16:29:08 +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 i6FGT8vC061202; Thu, 15 Jul 2004 16:29:08 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGT8Uv061201; Thu, 15 Jul 2004 16:29:08 GMT (envelope-from njl) Message-Id: <200407151629.i6FGT8Uv061201@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:29: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/dev/acpica acpi.c acpi_if.m X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 16:29:09 -0000 njl 2004-07-15 16:29:08 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c acpi_if.m Log: Update the interface for child drivers. Add acpi_scan_children, which allows a bus to re-enumerate its child handles and optionally replace them with new children, arranged to the bus's liking. (The current device space is flat with all devices immediately under acpi0). Add comments for each interface. Revision Changes Path 1.177 +77 -11 src/sys/dev/acpica/acpi.c 1.2 +69 -10 src/sys/dev/acpica/acpi_if.m From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:37: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 4094716A4CE; Thu, 15 Jul 2004 16:37:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 242FD43D46; Thu, 15 Jul 2004 16:37:49 +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 i6FGbnKZ061538; Thu, 15 Jul 2004 16:37:49 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGbnNb061537; Thu, 15 Jul 2004 16:37:49 GMT (envelope-from jhb) Message-Id: <200407151637.i6FGbnNb061537@repoman.freebsd.org> From: John Baldwin Date: Thu, 15 Jul 2004 16:37: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/i386/i386 swtch.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: Thu, 15 Jul 2004 16:37:49 -0000 jhb 2004-07-15 16:37:49 UTC FreeBSD src repository Modified files: sys/i386/i386 swtch.s Log: Fix a typo in a comment. Revision Changes Path 1.147 +1 -1 src/sys/i386/i386/swtch.s From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:38: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 E08E016A4CE; Thu, 15 Jul 2004 16:38:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C325D43D2F; Thu, 15 Jul 2004 16:38:07 +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 i6FGc7dp061578; Thu, 15 Jul 2004 16:38:07 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGc7Sb061577; Thu, 15 Jul 2004 16:38:07 GMT (envelope-from njl) Message-Id: <200407151638.i6FGc7Sb061577@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:38: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/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: Thu, 15 Jul 2004 16:38:08 -0000 njl 2004-07-15 16:38:07 UTC FreeBSD src repository Added files: sys/dev/fdc fdc_acpi.c Log: Add an ACPI floppy drive attachment that probes via the _FDE and _FDI methods. It also now handles ordinary floppy drive probing for drives attached to ACPI. Reviewed by: imp Revision Changes Path 1.1 +260 -0 src/sys/dev/fdc/fdc_acpi.c (new) From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:39: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 8024016A4D0; Thu, 15 Jul 2004 16:39:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63D1E43D45; Thu, 15 Jul 2004 16:39:40 +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 i6FGdeNS061738; Thu, 15 Jul 2004 16:39:40 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGdefk061737; Thu, 15 Jul 2004 16:39:40 GMT (envelope-from njl) Message-Id: <200407151639.i6FGdefk061737@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:39: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/dev/fdc fdc.c fdcvar.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, 15 Jul 2004 16:39:40 -0000 njl 2004-07-15 16:39:40 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c fdcvar.h Log: Re-work for fdc_acpi. Expose fdc_add_child() and move the static hints-based probe to fdc_hints_probe(). Also: * Fix some resource leaks when attach fails. * Remove the FDC_ATTACHED flag. It was supposed to prevent multiple unloads but this is not necessary. Revision Changes Path 1.281 +32 -25 src/sys/dev/fdc/fdc.c 1.3 +4 -2 src/sys/dev/fdc/fdcvar.h From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:41: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 D786C16A4CE; Thu, 15 Jul 2004 16:41:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC0843D39; Thu, 15 Jul 2004 16:41:07 +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 i6FGf7ht061968; Thu, 15 Jul 2004 16:41:07 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGf7Wf061967; Thu, 15 Jul 2004 16:41:07 GMT (envelope-from njl) Message-Id: <200407151641.i6FGf7Wf061967@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:41: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/fdc fdc_isa.c fdc_pccard.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, 15 Jul 2004 16:41:08 -0000 njl 2004-07-15 16:41:07 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c fdc_pccard.c Log: Clean up resources properly if attach fails. Always reset ISA drives on probe. Revision Changes Path 1.7 +19 -13 src/sys/dev/fdc/fdc_isa.c 1.8 +12 -2 src/sys/dev/fdc/fdc_pccard.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:43: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 677F816A4CE; Thu, 15 Jul 2004 16:43:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DA9443D41; Thu, 15 Jul 2004 16:43:52 +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 i6FGhqSS062166; Thu, 15 Jul 2004 16:43:52 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGhqmp062165; Thu, 15 Jul 2004 16:43:52 GMT (envelope-from njl) Message-Id: <200407151643.i6FGhqmp062165@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:43: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/conf files.amd64 files.i386 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Jul 2004 16:43:52 -0000 njl 2004-07-15 16:43:52 UTC FreeBSD src repository Modified files: sys/conf files.amd64 files.i386 Log: Hook up fdc_acpi for the kernel build. Revision Changes Path 1.42 +1 -0 src/sys/conf/files.amd64 1.499 +1 -0 src/sys/conf/files.i386 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:44: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 4D3C116A4CE; Thu, 15 Jul 2004 16:44:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32CE643D2D; Thu, 15 Jul 2004 16:44:14 +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 i6FGiEbg062225; Thu, 15 Jul 2004 16:44:14 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGiEJT062224; Thu, 15 Jul 2004 16:44:14 GMT (envelope-from njl) Message-Id: <200407151644.i6FGiEJT062224@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:44: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/modules/fdc 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, 15 Jul 2004 16:44:14 -0000 njl 2004-07-15 16:44:14 UTC FreeBSD src repository Modified files: sys/modules/fdc Makefile Log: Add fdc_acpi to module build, bump WARNS to 2. Revision Changes Path 1.11 +5 -2 src/sys/modules/fdc/Makefile From owner-cvs-src@FreeBSD.ORG Thu Jul 15 16:47: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 75B0A16A4CE; Thu, 15 Jul 2004 16:47:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A7E343D2F; Thu, 15 Jul 2004 16:47:31 +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 i6FGlV09062569; Thu, 15 Jul 2004 16:47:31 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FGlV9x062568; Thu, 15 Jul 2004 16:47:31 GMT (envelope-from njl) Message-Id: <200407151647.i6FGlV9x062568@repoman.freebsd.org> From: Nate Lawson Date: Thu, 15 Jul 2004 16:47: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/share/man/man4 fdc.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: Thu, 15 Jul 2004 16:47:31 -0000 njl 2004-07-15 16:47:31 UTC FreeBSD src repository Modified files: share/man/man4 fdc.4 Log: Add a few comments about ACPI probing. Revision Changes Path 1.34 +8 -4 src/share/man/man4/fdc.4 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 17:02: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 65F1516A4CE; Thu, 15 Jul 2004 17:02:00 +0000 (GMT) Received: from postman.ripe.net (postman.ripe.net [193.0.0.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id D720043D3F; Thu, 15 Jul 2004 17:01:59 +0000 (GMT) (envelope-from marks@dell-laptop.6bone.nl) Received: by postman.ripe.net (Postfix, from userid 8) id 21C6755E10; Thu, 15 Jul 2004 19:01:59 +0200 (CEST) Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by postman.ripe.net (Postfix) with ESMTP id EAAE24E551; Thu, 15 Jul 2004 19:01:57 +0200 (CEST) Received: from dell-laptop.6bone.nl (cow.ripe.net [193.0.1.239]) by birch.ripe.net (8.12.10/8.11.6) with SMTP id i6FH1v4c010312; Thu, 15 Jul 2004 19:01:57 +0200 Received: (nullmailer pid 881 invoked by uid 1001); Thu, 15 Jul 2004 16:14:03 -0000 Date: Thu, 15 Jul 2004 18:14:03 +0200 From: Mark Santcroos To: John Baldwin Message-ID: <20040715161403.GA741@laptop.6bone.nl> References: <200406231508.i5NF8egh052377@repoman.freebsd.org> <200406231122.04154.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200406231122.04154.jhb@FreeBSD.org> User-Agent: Mutt/1.4.2.1i X-Handles: MS6-6BONE, MS18417-RIPE X-RIPE-Spam-Level: X-RIPE-Spam-Status: N 0.000971 / 0.0 / 0.0 / disabled X-RIPE-Signature: 5d0ab904cfdc246689c2390bc00d86e4 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.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, 15 Jul 2004 17:02:00 -0000 On Wed, Jun 23, 2004 at 11:22:04AM -0400, John Baldwin wrote: > On Wednesday 23 June 2004 11:08 am, John Baldwin wrote: > > jhb 2004-06-23 15:08:40 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/acpica acpi_pci.c > > Log: > > Now that we associate a device_t with ACPI device handles, lookup the > > device associated with any PCI devices that are enumerated in the ACPI > > tree when adding children to an ACPI PCI bus and remove the duplicate > > ACPI-only device_t and replace the device_t associated with the handle > > with the ACPI and PCI aware device_t. > > Mostly this just means fewer unknown devices in devinfo -v output. You forgot to mention that this commit breaks acpi_video ;-) The fact that "\_SB_.PCI0.AGP_.VID_" now no longer is "unknown", means that it is not probed anymore. The result of that is that acpi_video can't attach anymore of course. Mark From owner-cvs-src@FreeBSD.ORG Thu Jul 15 17: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 3BD2116A4CE; Thu, 15 Jul 2004 17:03:23 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB27743D39; Thu, 15 Jul 2004 17:03:22 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id DB054ACAF1; Thu, 15 Jul 2004 19:03:20 +0200 (CEST) Date: Thu, 15 Jul 2004 19:03:20 +0200 From: Pawel Jakub Dawidek To: "Christian S.J. Peron" Message-ID: <20040715170320.GF12007@darkness.comp.waw.pl> References: <200407141904.i6EJ4VKD016422@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LqIGKb6ivCeGIB65" Content-Disposition: inline In-Reply-To: <200407141904.i6EJ4VKD016422@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: rwatson@freebsd.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.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, 15 Jul 2004 17:03:23 -0000 --LqIGKb6ivCeGIB65 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 14, 2004 at 07:04:31PM +0000, Christian S.J. Peron wrote: +> csjp 2004-07-14 19:04:31 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/kern kern_descrip.c=20 +> Log: +> In addition to the real user ID check, do an explicit jail +> check to ensure that the caller is not prison root. +> =20 +> The intention is to fix file descriptor creation so that +> prison root can not use the last remaining file descriptors. +> This privilege should be reserved for non-jailed root users. [...] +> fp =3D uma_zalloc(file_zone, M_WAITOK | M_ZERO); +> sx_xlock(&filelist_lock); +> - if ((nfiles >=3D maxuserfiles && td->td_ucred->cr_ruid !=3D 0) +> - || nfiles >=3D maxfiles) { +> + if ((nfiles >=3D maxuserfiles && (td->td_ucred->cr_ruid !=3D 0 || +> + jailed(td->td_ucred))) || nfiles >=3D maxfiles) { +> if (ppsratecheck(&lastfail, &curfail, 1)) { +> printf("kern.maxfiles limit exceeded by uid %i, please see tuning(7)= .\n", +> td->td_ucred->cr_ruid); Could we change 'td->td_ucred->cr_ruid !=3D 0 || jailed(td->td_ucred)' to 'suser(td) !=3D 0'? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --LqIGKb6ivCeGIB65 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA9rjYForvXbEpPzQRAhO+AJ9srXKrdVqBFw8GQAielszFG5LXfwCfS50s 3E2fcFPVfIXB630+SoDhJIs= =fHKN -----END PGP SIGNATURE----- --LqIGKb6ivCeGIB65-- From owner-cvs-src@FreeBSD.ORG Thu Jul 15 17:21: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 59AE816A4CE; Thu, 15 Jul 2004 17:21:30 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1040643D58; Thu, 15 Jul 2004 17:21:30 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6FHLABW089640; Thu, 15 Jul 2004 13:21:10 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6FHLAcJ089637; Thu, 15 Jul 2004 13:21:10 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 15 Jul 2004 13:21:09 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Pawel Jakub Dawidek In-Reply-To: <20040715170320.GF12007@darkness.comp.waw.pl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: "Christian S.J. Peron" cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.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, 15 Jul 2004 17:21:30 -0000 On Thu, 15 Jul 2004, Pawel Jakub Dawidek wrote: > On Wed, Jul 14, 2004 at 07:04:31PM +0000, Christian S.J. Peron wrote: > +> csjp 2004-07-14 19:04:31 UTC > +> > +> FreeBSD src repository > +> > +> Modified files: > +> sys/kern kern_descrip.c > +> Log: > +> In addition to the real user ID check, do an explicit jail > +> check to ensure that the caller is not prison root. > +> > +> The intention is to fix file descriptor creation so that > +> prison root can not use the last remaining file descriptors. > +> This privilege should be reserved for non-jailed root users. > [...] > +> fp = uma_zalloc(file_zone, M_WAITOK | M_ZERO); > +> sx_xlock(&filelist_lock); > +> - if ((nfiles >= maxuserfiles && td->td_ucred->cr_ruid != 0) > +> - || nfiles >= maxfiles) { > +> + if ((nfiles >= maxuserfiles && (td->td_ucred->cr_ruid != 0 || > +> + jailed(td->td_ucred))) || nfiles >= maxfiles) { > +> if (ppsratecheck(&lastfail, &curfail, 1)) { > +> printf("kern.maxfiles limit exceeded by uid %i, please see tuning(7).\n", > +> td->td_ucred->cr_ruid); > > Could we change 'td->td_ucred->cr_ruid != 0 || jailed(td->td_ucred)' to > 'suser(td) != 0'? No, because suser(td) checks the effective uid, not the real uid. Which is the reason I asked him to change it to that before committing, and why Colin had to back out his commit also :-). Colin is preparing patches to add a flag to suser_cred() to allow the caller to say they care about the real uid. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Thu Jul 15 17:35: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 8F6EB16A4CE; Thu, 15 Jul 2004 17:35:25 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4204443D45; Thu, 15 Jul 2004 17:35:25 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 17F1CACAEE; Thu, 15 Jul 2004 19:35:24 +0200 (CEST) Date: Thu, 15 Jul 2004 19:35:24 +0200 From: Pawel Jakub Dawidek To: Robert Watson Message-ID: <20040715173524.GG12007@darkness.comp.waw.pl> References: <20040715170320.GF12007@darkness.comp.waw.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rXoc3kw+CNDOk2Sr" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: "Christian S.J. Peron" cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.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, 15 Jul 2004 17:35:25 -0000 --rXoc3kw+CNDOk2Sr Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 15, 2004 at 01:21:09PM -0400, Robert Watson wrote: +> > Could we change 'td->td_ucred->cr_ruid !=3D 0 || jailed(td->td_ucred)'= to +> > 'suser(td) !=3D 0'? +>=20 +> No, because suser(td) checks the effective uid, not the real uid. Which +> is the reason I asked him to change it to that before committing, and why +> Colin had to back out his commit also :-). Colin is preparing patches to +> add a flag to suser_cred() to allow the caller to say they care about the +> real uid.=20 Thanks for clarification, but why actually do we care so much here about real uid? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --rXoc3kw+CNDOk2Sr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA9sBcForvXbEpPzQRAglrAJ9uV74GBh98Oy9x81T4lraDi2gXWwCcDHIz +dXA1ejgshnxabDbX51w6xs= =Jf0J -----END PGP SIGNATURE----- --rXoc3kw+CNDOk2Sr-- From owner-cvs-src@FreeBSD.ORG Thu Jul 15 18:00: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 AA0C916A4ED; Thu, 15 Jul 2004 18:00:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A378443D46; Thu, 15 Jul 2004 18:00:43 +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 i6FI0hdM064828; Thu, 15 Jul 2004 18:00:43 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FI0hhJ064827; Thu, 15 Jul 2004 18:00:43 GMT (envelope-from alc) Message-Id: <200407151800.i6FI0hhJ064827@repoman.freebsd.org> From: Alan Cox Date: Thu, 15 Jul 2004 18:00: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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/acpica acpi_wakeup.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/powerpc/powerpc pmap.c src/sys/sparc64/sparc64 pmap.c src/sys/vm vm_map.c vm_pageout.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, 15 Jul 2004 18:00:44 -0000 alc 2004-07-15 18:00:43 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/acpica acpi_wakeup.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/powerpc/powerpc pmap.c sys/sparc64/sparc64 pmap.c sys/vm vm_map.c vm_pageout.c Log: Push down the acquisition and release of the page queues lock into pmap_protect() and pmap_remove(). In general, they require the lock in order to modify a page's pv list or flags. In some cases, however, pmap_protect() can avoid acquiring the lock. Revision Changes Path 1.158 +5 -0 src/sys/alpha/alpha/pmap.c 1.485 +7 -2 src/sys/amd64/amd64/pmap.c 1.35 +0 -2 src/sys/i386/acpica/acpi_wakeup.c 1.485 +7 -2 src/sys/i386/i386/pmap.c 1.140 +7 -4 src/sys/ia64/ia64/pmap.c 1.80 +4 -0 src/sys/powerpc/powerpc/pmap.c 1.134 +4 -1 src/sys/sparc64/sparc64/pmap.c 1.342 +0 -8 src/sys/vm/vm_map.c 1.260 +0 -2 src/sys/vm/vm_pageout.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 18:22: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 BB23316A4CE; Thu, 15 Jul 2004 18:22:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F04443D48; Thu, 15 Jul 2004 18:22:21 +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 i6FIMLJM065486; Thu, 15 Jul 2004 18:22:21 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FIMLFa065485; Thu, 15 Jul 2004 18:22:21 GMT (envelope-from cperciva) Message-Id: <200407151822.i6FIMLFa065485@repoman.freebsd.org> From: Colin Percival Date: Thu, 15 Jul 2004 18:22: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/scripts print-cdrom-packages.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: Thu, 15 Jul 2004 18:22:21 -0000 cperciva 2004-07-15 18:22:21 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: Add security/freebsd-update back for non-ia64 releases. (The port is currently marked ONLY_FOR_ARCHS= i386 amd64 alpha sparc64.) Approved by: scottl Revision Changes Path 1.58 +3 -0 src/release/scripts/print-cdrom-packages.sh From owner-cvs-src@FreeBSD.ORG Thu Jul 15 18:55: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 699D116A4D0 for ; Thu, 15 Jul 2004 18:55:22 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D80843D53 for ; Thu, 15 Jul 2004 18:55:22 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 24894 invoked from network); 15 Jul 2004 18:55:21 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 15 Jul 2004 18:55:21 -0000 Received: from 10.50.41.229 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i6FItFGp083239; Thu, 15 Jul 2004 14:55:18 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Mark Santcroos Date: Thu, 15 Jul 2004 14:18:01 -0400 User-Agent: KMail/1.6 References: <200406231508.i5NF8egh052377@repoman.freebsd.org> <200406231122.04154.jhb@FreeBSD.org> <20040715161403.GA741@laptop.6bone.nl> In-Reply-To: <20040715161403.GA741@laptop.6bone.nl> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407151418.01839.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/dev/acpica acpi_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, 15 Jul 2004 18:55:22 -0000 On Thursday 15 July 2004 12:14 pm, Mark Santcroos wrote: > On Wed, Jun 23, 2004 at 11:22:04AM -0400, John Baldwin wrote: > > On Wednesday 23 June 2004 11:08 am, John Baldwin wrote: > > > jhb 2004-06-23 15:08:40 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/dev/acpica acpi_pci.c > > > Log: > > > Now that we associate a device_t with ACPI device handles, lookup the > > > device associated with any PCI devices that are enumerated in the > > > ACPI tree when adding children to an ACPI PCI bus and remove the > > > duplicate ACPI-only device_t and replace the device_t associated with > > > the handle with the ACPI and PCI aware device_t. > > > > Mostly this just means fewer unknown devices in devinfo -v output. > > You forgot to mention that this commit breaks acpi_video ;-) > > The fact that "\_SB_.PCI0.AGP_.VID_" now no longer is "unknown", means that > it is not probed anymore. > > The result of that is that acpi_video can't attach anymore of course. That's because acpi_video is really a PCI driver. :) The device it is attaching too is a PCI device, not an ACPI device, hence the confusion. I have some early work started on a vga_pci driver that would have child devices like acpi_video0, drm0, agp0 (for Intel onboard graphics), and dpms0. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Thu Jul 15 18:56: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 08CCC16A4CE for ; Thu, 15 Jul 2004 18:56:20 +0000 (GMT) Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8EF343D48 for ; Thu, 15 Jul 2004 18:56:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 9835 invoked from network); 15 Jul 2004 18:56:19 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 15 Jul 2004 18:56:18 -0000 Received: from 10.50.41.229 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i6FItFGo083239; Thu, 15 Jul 2004 14:55:15 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Alfred Perlstein Date: Thu, 15 Jul 2004 14:15:02 -0400 User-Agent: KMail/1.6 References: <20040715050225.GA87532@freefall.freebsd.org> <20040715052941.GL95729@elvis.mu.org> In-Reply-To: <20040715052941.GL95729@elvis.mu.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407151415.03555.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: Bosko Milekic cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 18:56:20 -0000 On Thursday 15 July 2004 01:29 am, Alfred Perlstein wrote: > > Also, why do you copy the proc name to the stack lower in > > kern_shutdown.c? Do you fear that the proc might change from > > under you when you're at the bottom and you can't therefore > > only keep a reference to the proc instead? > > Because I don't know if the proc will be there after it nukes itself. They don't nuke themselves, they just go to sleep. A quick look at the code would have revealed this. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Thu Jul 15 19:19: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 AC98416A4CE; Thu, 15 Jul 2004 19:19:25 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DE543D46; Thu, 15 Jul 2004 19:19:25 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6FJJOrb011151 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Jul 2004 12:19:24 -0700 Message-ID: <40F6D871.1090207@root.org> Date: Thu, 15 Jul 2004 12:18:09 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 Followup-To: acpi@freebsd.org To: John Baldwin References: <200406231508.i5NF8egh052377@repoman.freebsd.org> <200406231122.04154.jhb@FreeBSD.org> <20040715161403.GA741@laptop.6bone.nl> <200407151418.01839.jhb@FreeBSD.org> In-Reply-To: <200407151418.01839.jhb@FreeBSD.org> 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/acpica acpi_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, 15 Jul 2004 19:19:25 -0000 [Followups to the acpi list] John Baldwin wrote: > On Thursday 15 July 2004 12:14 pm, Mark Santcroos wrote: >>You forgot to mention that this commit breaks acpi_video ;-) >> >>The fact that "\_SB_.PCI0.AGP_.VID_" now no longer is "unknown", means that >>it is not probed anymore. >> >>The result of that is that acpi_video can't attach anymore of course. > > That's because acpi_video is really a PCI driver. :) The device it is > attaching too is a PCI device, not an ACPI device, hence the confusion. I > have some early work started on a vga_pci driver that would have child > devices like acpi_video0, drm0, agp0 (for Intel onboard graphics), and dpms0. I ran into this fundamental mismatch in building the infrastructure for the floppy attachment. You might have an ACPI handle namespace like this: _SB PCI0 LPC FDC0 FDD0 FOOBAR USB0 With a FreeBSD device hierarchy of: acpi0 fdc0 fd0 foobar pcib0 pci0 uhci0 Currently, we start with a flat device space when probing children: acpi0 pci0 isa0 fdc0 fd0 foobar uhci0 And then let each bus driver rework its children. PCI updates its child handles (USB0), deleting the initial device and adding a new one. FDC does the same thing. John is right in that acpi_video needs to attach to video_pci and not acpi directly. The new acpi_scan_children method should help do this without creating binary dependencies between drivers. -- -Nate From owner-cvs-src@FreeBSD.ORG Thu Jul 15 19:25: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 D6D7B16A4CE; Thu, 15 Jul 2004 19:25:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8D9943D2F; Thu, 15 Jul 2004 19:25:06 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6FJP6GY066965; Thu, 15 Jul 2004 19:25:06 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FJP6hK066964; Thu, 15 Jul 2004 19:25:06 GMT (envelope-from le) Message-Id: <200407151925.i6FJP6hK066964@repoman.freebsd.org> From: Lukas Ertl Date: Thu, 15 Jul 2004 19:25: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/dev/usb ehci.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, 15 Jul 2004 19:25:07 -0000 le 2004-07-15 19:25:06 UTC FreeBSD src repository Modified files: sys/dev/usb ehci.c Log: MFNetBSD. rev. 1.67, author: mycroft Fix a byte order error. rev. 1.68, author: mycroft Adjust some silliness that was causing us to do extra work for "frame list rollover" interrupts, which we pretty much ignore. Obtained from: NetBSD Revision Changes Path 1.10 +6 -6 src/sys/dev/usb/ehci.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 20:17: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 6F2EA16A4CE; Thu, 15 Jul 2004 20:17:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C43643D2F; Thu, 15 Jul 2004 20:17:32 +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 i6FKHWJx068413; Thu, 15 Jul 2004 20:17:32 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FKHVXL068412; Thu, 15 Jul 2004 20:17:31 GMT (envelope-from keramida) Message-Id: <200407152017.i6FKHVXL068412@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 15 Jul 2004 20:17:31 +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/usr.bin/lex lex.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: Thu, 15 Jul 2004 20:17:32 -0000 keramida 2004-07-15 20:17:31 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) usr.bin/lex lex.1 Log: MFC: 1.18 Correct a minor syntax mistake. Revision Changes Path 1.10.2.7 +1 -1 src/usr.bin/lex/lex.1 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 20:23: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 BC71416A4CE; Thu, 15 Jul 2004 20:23:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E65943D2D; Thu, 15 Jul 2004 20:23:18 +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 i6FKNIV3068572; Thu, 15 Jul 2004 20:23:18 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FKNIDN068571; Thu, 15 Jul 2004 20:23:18 GMT (envelope-from keramida) Message-Id: <200407152023.i6FKNIDN068571@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 15 Jul 2004 20:23:18 +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 fe.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: Thu, 15 Jul 2004 20:23:18 -0000 keramida 2004-07-15 20:23:18 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man4/man4.i386 fe.4 Log: MFC: 1.28 , 1.29 Fix various grammar knits. Revision Changes Path 1.14.2.10 +4 -4 src/share/man/man4/man4.i386/fe.4 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 20:30: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 D830B16A4CE; Thu, 15 Jul 2004 20:30:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B833843D41; Thu, 15 Jul 2004 20:30:02 +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 i6FKU2hR068767; Thu, 15 Jul 2004 20:30:02 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FKU2aE068766; Thu, 15 Jul 2004 20:30:02 GMT (envelope-from keramida) Message-Id: <200407152030.i6FKU2aE068766@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 15 Jul 2004 20:30:02 +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 ppbus.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: Thu, 15 Jul 2004 20:30:03 -0000 keramida 2004-07-15 20:30:02 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man4 ppbus.4 Log: MFC: 1.22 Fix some grammar-wording knit. Revision Changes Path 1.14.2.6 +4 -4 src/share/man/man4/ppbus.4 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 20:40: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 1D71316A4CE; Thu, 15 Jul 2004 20:40:00 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C275243D48; Thu, 15 Jul 2004 20:39:59 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i6FKddNb028343; Thu, 15 Jul 2004 16:39:39 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i6FKddBu028340; Thu, 15 Jul 2004 16:39:39 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 15 Jul 2004 16:39:39 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Pawel Jakub Dawidek In-Reply-To: <20040715173524.GG12007@darkness.comp.waw.pl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: "Christian S.J. Peron" cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.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, 15 Jul 2004 20:40:00 -0000 On Thu, 15 Jul 2004, Pawel Jakub Dawidek wrote: > Thanks for clarification, but why actually do we care so much here about > real uid? Because many resource limits are relative to the real uid, not the effective uid. In particular, to prevent things like setuid apps (lpr, etc) from gaining the resources of root, and run instead with the resources of the user who ran the app. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Thu Jul 15 20:47: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 C2CD316A4CE; Thu, 15 Jul 2004 20:47:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A14DD43D4C; Thu, 15 Jul 2004 20:47:41 +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 i6FKlfhH069851; Thu, 15 Jul 2004 20:47:41 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FKlfAU069850; Thu, 15 Jul 2004 20:47:41 GMT (envelope-from phk) Message-Id: <200407152047.i6FKlfAU069850@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 15 Jul 2004 20:47: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/sys/alpha/alpha promcons.c src/sys/alpha/tlsb zs_tlsb.c src/sys/dev/cx if_cx.c src/sys/dev/cy cy.c src/sys/dev/dcons dcons.c src/sys/dev/digi digi.c src/sys/dev/nmdm nmdm.c src/sys/dev/ofw ofw_console.c src/sys/dev/rc rc.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, 15 Jul 2004 20:47:41 -0000 phk 2004-07-15 20:47:41 UTC FreeBSD src repository Modified files: sys/alpha/alpha promcons.c sys/alpha/tlsb zs_tlsb.c sys/dev/cx if_cx.c sys/dev/cy cy.c sys/dev/dcons dcons.c sys/dev/digi digi.c sys/dev/nmdm nmdm.c sys/dev/ofw ofw_console.c sys/dev/rc rc.c sys/dev/rp rp.c sys/dev/sab sab.c sys/dev/si si.c sys/dev/sio sio.c sys/dev/snp snp.c sys/dev/sx sx.c sys/dev/syscons syscons.c sysmouse.c sys/dev/uart uart_tty.c sys/dev/usb ubser.c ucom.c sys/dev/zs zs.c sys/i386/isa/pcvt pcvt_drv.c sys/ia64/ia64 ssc.c sys/kern tty.c tty_conf.c tty_pty.c tty_subr.c sys/net ppp_tty.c sys/pc98/pc98 sio.c sys/sys tty.h Log: Preparation commit for the tty cleanups that will follow in the near future: rename ttyopen() -> tty_open() and ttyclose() -> tty_close(). We need the ttyopen() and ttyclose() for the new generic cdevsw functions for tty devices in order to have consistent naming. Revision Changes Path 1.40 +1 -1 src/sys/alpha/alpha/promcons.c 1.47 +1 -1 src/sys/alpha/tlsb/zs_tlsb.c 1.27 +1 -1 src/sys/dev/cx/if_cx.c 1.159 +1 -1 src/sys/dev/cy/cy.c 1.16 +2 -2 src/sys/dev/dcons/dcons.c 1.54 +1 -1 src/sys/dev/digi/digi.c 1.30 +1 -1 src/sys/dev/nmdm/nmdm.c 1.27 +1 -1 src/sys/dev/ofw/ofw_console.c 1.97 +1 -1 src/sys/dev/rc/rc.c 1.64 +1 -1 src/sys/dev/rp/rp.c 1.34 +2 -2 src/sys/dev/sab/sab.c 1.131 +1 -1 src/sys/dev/si/si.c 1.449 +2 -2 src/sys/dev/sio/sio.c 1.93 +1 -1 src/sys/dev/snp/snp.c 1.12 +1 -1 src/sys/dev/sx/sx.c 1.424 +1 -1 src/sys/dev/syscons/syscons.c 1.24 +1 -1 src/sys/dev/syscons/sysmouse.c 1.16 +2 -2 src/sys/dev/uart/uart_tty.c 1.11 +3 -3 src/sys/dev/usb/ubser.c 1.51 +3 -3 src/sys/dev/usb/ucom.c 1.26 +2 -2 src/sys/dev/zs/zs.c 1.89 +1 -1 src/sys/i386/isa/pcvt/pcvt_drv.c 1.23 +1 -1 src/sys/ia64/ia64/ssc.c 1.227 +4 -4 src/sys/kern/tty.c 1.24 +1 -1 src/sys/kern/tty_conf.c 1.129 +1 -1 src/sys/kern/tty_pty.c 1.42 +2 -2 src/sys/kern/tty_subr.c 1.61 +1 -1 src/sys/net/ppp_tty.c 1.226 +2 -2 src/sys/pc98/pc98/sio.c 1.89 +2 -2 src/sys/sys/tty.h From owner-cvs-src@FreeBSD.ORG Thu Jul 15 21:28: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 D28CF16A4CE; Thu, 15 Jul 2004 21:28:36 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B1A43D2D; Thu, 15 Jul 2004 21:28:36 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id BA06E5C8DE; Thu, 15 Jul 2004 14:28:36 -0700 (PDT) Date: Thu, 15 Jul 2004 14:28:36 -0700 From: Alfred Perlstein To: John Baldwin Message-ID: <20040715212836.GT95729@elvis.mu.org> References: <20040715050225.GA87532@freefall.freebsd.org> <20040715052941.GL95729@elvis.mu.org> <200407151415.03555.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407151415.03555.jhb@FreeBSD.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Bosko Milekic cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Thu, 15 Jul 2004 21:28:37 -0000 * John Baldwin [040715 11:56] wrote: > On Thursday 15 July 2004 01:29 am, Alfred Perlstein wrote: > > > Also, why do you copy the proc name to the stack lower in > > > kern_shutdown.c? Do you fear that the proc might change from > > > under you when you're at the bottom and you can't therefore > > > only keep a reference to the proc instead? > > > > Because I don't know if the proc will be there after it nukes itself. > > They don't nuke themselves, they just go to sleep. A quick look at the code > would have revealed this. y'know what, in the context of fixing a printf I wasn't really interested in looking that far into the scheduler. A 20 char stack variable and a string copy at shutdown isn't such a big deal. If it bugs you guys that much, why don't you just fix it? Or are you worried about getting 15 emails about how you inefficiently printing a non-critical string like I have? :) hugs, -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Jul 15 22:21: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 7D44C16A4CE; Thu, 15 Jul 2004 22:21:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EAE243D2F; Thu, 15 Jul 2004 22:21:25 +0000 (GMT) (envelope-from rees@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6FMLPsu072586; Thu, 15 Jul 2004 22:21:25 GMT (envelope-from rees@repoman.freebsd.org) Received: (from rees@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FMLPhl072585; Thu, 15 Jul 2004 22:21:25 GMT (envelope-from rees) Message-Id: <200407152221.i6FMLPhl072585@repoman.freebsd.org> From: Jim Rees Date: Thu, 15 Jul 2004 22:21: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/rpc rpcclnt.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, 15 Jul 2004 22:21:25 -0000 rees 2004-07-15 22:21:25 UTC FreeBSD src repository Modified files: sys/rpc rpcclnt.c Log: fix array index out of bounds in rpc->rc_srtt[], rpc->rc_sdrtt[] Noticed by: tedu Approved by: alfred Revision Changes Path 1.11 +3 -3 src/sys/rpc/rpcclnt.c From owner-cvs-src@FreeBSD.ORG Thu Jul 15 23:58: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 B368E16A4CE; Thu, 15 Jul 2004 23:58:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9501A43D49; Thu, 15 Jul 2004 23:58:23 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6FNwNBq075325; Thu, 15 Jul 2004 23:58:23 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6FNwNeJ075324; Thu, 15 Jul 2004 23:58:23 GMT (envelope-from glebius) Message-Id: <200407152358.i6FNwNeJ075324@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 15 Jul 2004 23:58: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/conf files src/sys/libkern qsort.c qsort_r.c src/sys/sys libkern.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, 15 Jul 2004 23:58:23 -0000 glebius 2004-07-15 23:58:23 UTC FreeBSD src repository Modified files: sys/conf files sys/libkern qsort.c sys/sys libkern.h Added files: sys/libkern qsort_r.c Log: Copy qsort_r(3) from libc to libkern. Reviewed by: phk Approved by: julian (mentor) Revision Changes Path 1.931 +1 -0 src/sys/conf/files 1.15 +41 -24 src/sys/libkern/qsort.c 1.1 +8 -0 src/sys/libkern/qsort_r.c (new) 1.46 +2 -0 src/sys/sys/libkern.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 00:07: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 C3E4516A4CE; Fri, 16 Jul 2004 00:07:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A53CB43D46; Fri, 16 Jul 2004 00:07:44 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G07iJW075644; Fri, 16 Jul 2004 00:07:44 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G07i6Y075643; Fri, 16 Jul 2004 00:07:44 GMT (envelope-from glebius) Message-Id: <200407160007.i6G07i6Y075643@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 16 Jul 2004 00:07: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/netgraph ng_ppp.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, 16 Jul 2004 00:07:44 -0000 glebius 2004-07-16 00:07:44 UTC FreeBSD src repository Modified files: sys/netgraph ng_ppp.c Log: Use qsort_r() instead of qsort() when sorting links by latency This helps us to remove a global variable and a mutex protecting it. Reviewed by: rwatson Approved by: julian (mentor) Revision Changes Path 1.50 +5 -20 src/sys/netgraph/ng_ppp.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 00:37: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 765A016A4CE; Fri, 16 Jul 2004 00:37:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58DBA43D31; Fri, 16 Jul 2004 00:37:34 +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 i6G0bYoZ076391; Fri, 16 Jul 2004 00:37:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G0bYfa076390; Fri, 16 Jul 2004 00:37:34 GMT (envelope-from rwatson) Message-Id: <200407160037.i6G0bYfa076390@repoman.freebsd.org> From: Robert Watson Date: Fri, 16 Jul 2004 00:37: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/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: Fri, 16 Jul 2004 00:37:34 -0000 rwatson 2004-07-16 00:37:34 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: When entering soclose(), assert that SS_NOFDREF is not already set. Revision Changes Path 1.204 +2 -0 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 01:07: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 CDC4116A4F3; Fri, 16 Jul 2004 01:07:29 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 914FA43D1D; Fri, 16 Jul 2004 01:07:29 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6G17Sra016821 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Jul 2004 18:07:28 -0700 Message-ID: <40F72A06.7080809@root.org> Date: Thu, 15 Jul 2004 18:06:14 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.6 (X11/20040518) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alfred Perlstein References: <20040715050225.GA87532@freefall.freebsd.org> <20040715052941.GL95729@elvis.mu.org> <200407151415.03555.jhb@FreeBSD.org> <20040715212836.GT95729@elvis.mu.org> In-Reply-To: <20040715212836.GT95729@elvis.mu.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Bosko Milekic cc: John Baldwin Subject: Re: cvs commit: src/sys/kern kern_shutdown.c 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: Fri, 16 Jul 2004 01:07:30 -0000 Alfred Perlstein wrote: > * John Baldwin [040715 11:56] wrote: >>On Thursday 15 July 2004 01:29 am, Alfred Perlstein wrote: >> >>>> Also, why do you copy the proc name to the stack lower in >>>> kern_shutdown.c? Do you fear that the proc might change from >>>> under you when you're at the bottom and you can't therefore >>>> only keep a reference to the proc instead? >>> >>>Because I don't know if the proc will be there after it nukes itself. >> >>They don't nuke themselves, they just go to sleep. A quick look at the code >>would have revealed this. > > y'know what, in the context of fixing a printf I wasn't really > interested in looking that far into the scheduler. A 20 char stack > variable and a string copy at shutdown isn't such a big deal. If it > bugs you guys that much, why don't you just fix it? > > Or are you worried about getting 15 emails about how you inefficiently > printing a non-critical string like I have? :) My concern is that this is an attempt to fix something which is not broken. The proc cannot disappear there, which is what I believe jhb@ was pointing out. What is there to fix? -Nate From owner-cvs-src@FreeBSD.ORG Fri Jul 16 01:18: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 591DA16A4CE; Fri, 16 Jul 2004 01:18:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B1AE43D1D; Fri, 16 Jul 2004 01:18:14 +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 i6G1IEIa077432; Fri, 16 Jul 2004 01:18:14 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G1IEmp077431; Fri, 16 Jul 2004 01:18:14 GMT (envelope-from alfred) Message-Id: <200407160118.i6G1IEmp077431@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 16 Jul 2004 01:18: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/lib/libc/sys getfsstat.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, 16 Jul 2004 01:18:14 -0000 alfred 2004-07-16 01:18:14 UTC FreeBSD src repository Modified files: lib/libc/sys getfsstat.2 Log: Clarify getfsstat(2) usage. The getfsstat(2) function expects a buffer and a count, and returns a count. The confusing part is that the count it takes is a byte count, while the return value is a count of the number of structures it has filled out. Spell this out. Revision Changes Path 1.17 +6 -1 src/lib/libc/sys/getfsstat.2 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 02:03: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 2F21216A4CE; Fri, 16 Jul 2004 02:03:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2533D43D58; Fri, 16 Jul 2004 02:03: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 i6G23oFq078695; Fri, 16 Jul 2004 02:03:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G23oaR078694; Fri, 16 Jul 2004 02:03:50 GMT (envelope-from rwatson) Message-Id: <200407160203.i6G23oaR078694@repoman.freebsd.org> From: Robert Watson Date: Fri, 16 Jul 2004 02:03: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/sys/security/mac_biba mac_biba.c mac_biba.h src/sys/security/mac_mls mac_mls.c mac_mls.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, 16 Jul 2004 02:03:51 -0000 rwatson 2004-07-16 02:03:50 UTC FreeBSD src repository Modified files: sys/security/mac_biba mac_biba.c mac_biba.h sys/security/mac_mls mac_mls.c mac_mls.h Log: Rename Biba and MLS _single label elements to _effective, which more accurately represents the intention of the 'single' label element in Biba and MLS labels. It also approximates the use of 'effective' in traditional UNIX credentials, and avoids confusion with 'singlelabel' in the context of file systems. Inspired by: trhodes Revision Changes Path 1.79 +175 -175 src/sys/security/mac_biba/mac_biba.c 1.7 +5 -5 src/sys/security/mac_biba/mac_biba.h 1.65 +168 -168 src/sys/security/mac_mls/mac_mls.c 1.8 +5 -5 src/sys/security/mac_mls/mac_mls.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 02: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 6FCA216A4CE; Fri, 16 Jul 2004 02:04:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52AD443D49; Fri, 16 Jul 2004 02:04:41 +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 i6G24fEr078740; Fri, 16 Jul 2004 02:04:41 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G24fL6078739; Fri, 16 Jul 2004 02:04:41 GMT (envelope-from rwatson) Message-Id: <200407160204.i6G24fL6078739@repoman.freebsd.org> From: Robert Watson Date: Fri, 16 Jul 2004 02:04: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 mac_biba.4 mac_mls.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, 16 Jul 2004 02:04:41 -0000 rwatson 2004-07-16 02:04:41 UTC FreeBSD src repository Modified files: share/man/man4 mac_biba.4 mac_mls.4 Log: Update Biba and MLS man pages to take into account recent renaming of the 'single' label element to 'effective. Revision Changes Path 1.17 +6 -6 src/share/man/man4/mac_biba.4 1.18 +6 -6 src/share/man/man4/mac_mls.4 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 02:20: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 2E21616A4CE; Fri, 16 Jul 2004 02:20:09 +0000 (GMT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id CACFD43D1F; Fri, 16 Jul 2004 02:20:08 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost.pittgoth.com ([192.168.0.5]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i6G2K7uq066946 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Jul 2004 22:20:08 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Thu, 15 Jul 2004 22:20:41 -0400 From: Tom Rhodes To: Robert Watson Message-Id: <20040715222041.6c533352@localhost.pittgoth.com> In-Reply-To: <200407160203.i6G23oaR078694@repoman.freebsd.org> References: <200407160203.i6G23oaR078694@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) 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/security/mac_biba mac_biba.c mac_biba.h src/sys/security/mac_mls mac_mls.c mac_mls.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, 16 Jul 2004 02:20:09 -0000 On Fri, 16 Jul 2004 02:03:50 +0000 (UTC) Robert Watson wrote: > rwatson 2004-07-16 02:03:50 UTC > > FreeBSD src repository > > Modified files: > sys/security/mac_biba mac_biba.c mac_biba.h > sys/security/mac_mls mac_mls.c mac_mls.h > Log: > Rename Biba and MLS _single label elements to _effective, which more > accurately represents the intention of the 'single' label element in > Biba and MLS labels. It also approximates the use of 'effective' in > traditional UNIX credentials, and avoids confusion with 'singlelabel' > in the context of file systems. > > Inspired by: trhodes Thanks!! PS: I'll get the handbook modifications over the weekend. -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Fri Jul 16 02:51: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 EEE0416A4CE; Fri, 16 Jul 2004 02:51:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0A7F43D39; Fri, 16 Jul 2004 02:51:28 +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 i6G2pSLs080489; Fri, 16 Jul 2004 02:51:28 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G2pSts080488; Fri, 16 Jul 2004 02:51:28 GMT (envelope-from marcel) Message-Id: <200407160251.i6G2pSts080488@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 16 Jul 2004 02:51: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 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, 16 Jul 2004 02:51:29 -0000 marcel 2004-07-16 02:51:28 UTC FreeBSD src repository Modified files: . Makefile Log: As per discussions on current@, protect unsuspecting users from trying to upgrade their system with make world instead of following the preferred and suggested sequence of commands. The fact remains that make world does not upgrade the kernel. Allow make world when DESTDIR has been specified, including when DESTDIR specifies the root file system. Otherwise, print a useful warning and fail. Reviewed, tested and scrutinized by: gad@ Revision Changes Path 1.301 +16 -2 src/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:42: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 9651C16A4CE; Fri, 16 Jul 2004 03:42:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7722743D48; Fri, 16 Jul 2004 03:42:45 +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 i6G3gjMW082319; Fri, 16 Jul 2004 03:42:45 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3gjAv082318; Fri, 16 Jul 2004 03:42:45 GMT (envelope-from alc) Message-Id: <200407160342.i6G3gjAv082318@repoman.freebsd.org> From: Alan Cox Date: Fri, 16 Jul 2004 03:42: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/sys/ia64/ia64 pmap.c src/sys/ia64/include pmap.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, 16 Jul 2004 03:42:45 -0000 alc 2004-07-16 03:42:45 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c sys/ia64/include pmap.h Log: Remove unused fields from the pmap. Revision Changes Path 1.141 +0 -2 src/sys/ia64/ia64/pmap.c 1.21 +0 -2 src/sys/ia64/include/pmap.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:58: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 11EF716A4CE; Fri, 16 Jul 2004 03:58:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7C3D43D41; Fri, 16 Jul 2004 03:58:25 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3wPLU082810; Fri, 16 Jul 2004 03:58:25 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3wPIl082809; Fri, 16 Jul 2004 03:58:25 GMT (envelope-from tanimura) Message-Id: <200407160358.i6G3wPIl082809@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:58: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/modules/sound/sound 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, 16 Jul 2004 03:58:26 -0000 tanimura 2004-07-16 03:58:25 UTC FreeBSD src repository Modified files: sys/modules/sound/sound Makefile Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.15 +1 -1 src/sys/modules/sound/sound/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:58: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 2D5C016A4CE; Fri, 16 Jul 2004 03:58:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB7D43D31; Fri, 16 Jul 2004 03:58:36 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3wZ44082843; Fri, 16 Jul 2004 03:58:35 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3wZA6082842; Fri, 16 Jul 2004 03:58:35 GMT (envelope-from tanimura) Message-Id: <200407160358.i6G3wZA6082842@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:58: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/modules/sound/pcm 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, 16 Jul 2004 03:58:36 -0000 tanimura 2004-07-16 03:58:35 UTC FreeBSD src repository Removed files: sys/modules/sound/pcm Makefile Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.15 +0 -17 src/sys/modules/sound/pcm/Makefile (dead) From owner-cvs-src@FreeBSD.ORG Fri Jul 16 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 6AD5916A4D0; Fri, 16 Jul 2004 03:58:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B33543D2F; Fri, 16 Jul 2004 03:58:46 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3wkpp082886; Fri, 16 Jul 2004 03:58:46 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3wk64082885; Fri, 16 Jul 2004 03:58:46 GMT (envelope-from tanimura) Message-Id: <200407160358.i6G3wk64082885@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:58: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/sys/modules/sound 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, 16 Jul 2004 03:58:46 -0000 tanimura 2004-07-16 03:58:46 UTC FreeBSD src repository Modified files: sys/modules/sound Makefile Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.2 +1 -1 src/sys/modules/sound/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:58: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 308E316A4CE; Fri, 16 Jul 2004 03:58:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10CA243D3F; Fri, 16 Jul 2004 03:58:58 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3wvo1082936; Fri, 16 Jul 2004 03:58:57 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3wvfs082935; Fri, 16 Jul 2004 03:58:57 GMT (envelope-from tanimura) Message-Id: <200407160358.i6G3wvfs082935@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:58: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/dev/sound/usb uaudio_pcm.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, 16 Jul 2004 03:58:58 -0000 tanimura 2004-07-16 03:58:57 UTC FreeBSD src repository Modified files: sys/dev/sound/usb uaudio_pcm.c Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.5 +1 -1 src/sys/dev/sound/usb/uaudio_pcm.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:59: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 DC9B516A4CE; Fri, 16 Jul 2004 03:59:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B17A543D45; Fri, 16 Jul 2004 03:59:09 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3x9Ju082990; Fri, 16 Jul 2004 03:59:09 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3x9w3082989; Fri, 16 Jul 2004 03:59:09 GMT (envelope-from tanimura) Message-Id: <200407160359.i6G3x9w3082989@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:59: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/dev/sound/pcm sound.c sound.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, 16 Jul 2004 03:59:10 -0000 tanimura 2004-07-16 03:59:09 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm sound.c sound.h Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.92 +12 -7 src/sys/dev/sound/pcm/sound.c 1.61 +4 -4 src/sys/dev/sound/pcm/sound.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:59: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 C22B916A4CE; Fri, 16 Jul 2004 03:59:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B934B43D31; Fri, 16 Jul 2004 03:59:27 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3xRqa083099; Fri, 16 Jul 2004 03:59:27 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3xRDv083098; Fri, 16 Jul 2004 03:59:27 GMT (envelope-from tanimura) Message-Id: <200407160359.i6G3xRDv083098@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:59: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/sound/pci als4000.c au88x0.c aureal.c cmi.c cs4281.c csa.c csapcm.c ds1.c emu10k1.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via8233.c via82c686.c vibes.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, 16 Jul 2004 03:59:28 -0000 tanimura 2004-07-16 03:59:27 UTC FreeBSD src repository Modified files: sys/dev/sound/pci als4000.c au88x0.c aureal.c cmi.c cs4281.c csa.c csapcm.c ds1.c emu10k1.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via8233.c via82c686.c vibes.c Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.16 +1 -1 src/sys/dev/sound/pci/als4000.c 1.8 +1 -1 src/sys/dev/sound/pci/au88x0.c 1.29 +1 -1 src/sys/dev/sound/pci/aureal.c 1.29 +1 -1 src/sys/dev/sound/pci/cmi.c 1.20 +1 -1 src/sys/dev/sound/pci/cs4281.c 1.30 +1 -1 src/sys/dev/sound/pci/csa.c 1.31 +1 -1 src/sys/dev/sound/pci/csapcm.c 1.40 +1 -1 src/sys/dev/sound/pci/ds1.c 1.51 +1 -1 src/sys/dev/sound/pci/emu10k1.c 1.51 +1 -1 src/sys/dev/sound/pci/es137x.c 1.23 +1 -1 src/sys/dev/sound/pci/fm801.c 1.42 +1 -1 src/sys/dev/sound/pci/ich.c 1.23 +1 -1 src/sys/dev/sound/pci/maestro.c 1.25 +1 -1 src/sys/dev/sound/pci/maestro3.c 1.33 +1 -1 src/sys/dev/sound/pci/neomagic.c 1.32 +1 -1 src/sys/dev/sound/pci/solo.c 1.44 +1 -1 src/sys/dev/sound/pci/t4dwave.c 1.17 +1 -1 src/sys/dev/sound/pci/via8233.c 1.31 +1 -1 src/sys/dev/sound/pci/via82c686.c 1.17 +1 -1 src/sys/dev/sound/pci/vibes.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 03:59: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 3AB0316A4CE; Fri, 16 Jul 2004 03:59:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32A2543D2F; Fri, 16 Jul 2004 03:59:55 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G3xt45083183; Fri, 16 Jul 2004 03:59:55 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G3xtS9083182; Fri, 16 Jul 2004 03:59:55 GMT (envelope-from tanimura) Message-Id: <200407160359.i6G3xtS9083182@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 03:59: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/sound/isa ad1816.c es1888.c ess.c gusc.c mss.c sb16.c sb8.c sbc.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, 16 Jul 2004 03:59:55 -0000 tanimura 2004-07-16 03:59:55 UTC FreeBSD src repository Modified files: sys/dev/sound/isa ad1816.c es1888.c ess.c gusc.c mss.c sb16.c sb8.c sbc.c Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.33 +1 -1 src/sys/dev/sound/isa/ad1816.c 1.11 +1 -1 src/sys/dev/sound/isa/es1888.c 1.31 +1 -1 src/sys/dev/sound/isa/ess.c 1.14 +1 -1 src/sys/dev/sound/isa/gusc.c 1.90 +3 -3 src/sys/dev/sound/isa/mss.c 1.87 +1 -1 src/sys/dev/sound/isa/sb16.c 1.77 +1 -1 src/sys/dev/sound/isa/sb8.c 1.42 +1 -1 src/sys/dev/sound/isa/sbc.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 04:00: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 CE3D716A4D0; Fri, 16 Jul 2004 04:00:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF51243D31; Fri, 16 Jul 2004 04:00:09 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G409k9083249; Fri, 16 Jul 2004 04:00:09 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G409Pa083248; Fri, 16 Jul 2004 04:00:09 GMT (envelope-from tanimura) Message-Id: <200407160400.i6G409Pa083248@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 04:00: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/conf NOTES 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: Fri, 16 Jul 2004 04:00:10 -0000 tanimura 2004-07-16 04:00:09 UTC FreeBSD src repository Modified files: sys/conf NOTES files Log: Rename the sound device drivers: - `sound' The generic sound driver, always required. - `snd_*' Device-dependent drivers, named after the sound module names. Configure accordingly to your hardware. In addition, rename the `snd_pcm' module to `sound' in order to sync with the driver names. Suggested by: cg Revision Changes Path 1.1246 +80 -41 src/sys/conf/NOTES 1.932 +50 -52 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Fri Jul 16 04:04: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 C1BCD16A4CE; Fri, 16 Jul 2004 04:04:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2B9943D1D; Fri, 16 Jul 2004 04:04:29 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G44Tv3083491; Fri, 16 Jul 2004 04:04:29 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G44TxH083490; Fri, 16 Jul 2004 04:04:29 GMT (envelope-from tanimura) Message-Id: <200407160404.i6G44TxH083490@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 04:04: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 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 04:04:29 -0000 tanimura 2004-07-16 04:04:29 UTC FreeBSD src repository Modified files: . UPDATING Log: Add the change of the sound drivers. Revision Changes Path 1.326 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Jul 16 05:03: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 C60BA16A4CE; Fri, 16 Jul 2004 05:03:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD4D043D5F; Fri, 16 Jul 2004 05:03: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 i6G53gLo085111; Fri, 16 Jul 2004 05:03:42 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G53gsR085110; Fri, 16 Jul 2004 05:03:42 GMT (envelope-from marcel) Message-Id: <200407160503.i6G53gsR085110@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 16 Jul 2004 05:03: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/arch/alpha config.h src/gnu/usr.bin/gdb/arch/amd64 config.h src/gnu/usr.bin/gdb/arch/i386 config.h src/gnu/usr.bin/gdb/arch/sparc64 config.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, 16 Jul 2004 05:03:42 -0000 marcel 2004-07-16 05:03:42 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/arch/alpha config.h gnu/usr.bin/gdb/arch/amd64 config.h gnu/usr.bin/gdb/arch/i386 config.h gnu/usr.bin/gdb/arch/ia64 config.h gnu/usr.bin/gdb/arch/sparc64 config.h Log: Update config.h to account for the prgregset_t and psaddr_t types that have been added to . This change has no effect because the source file that would be affected is not compiled on FreeBSD. Hence, this is for completeness only. Revision Changes Path 1.2 +2 -2 src/gnu/usr.bin/gdb/arch/alpha/config.h 1.2 +2 -2 src/gnu/usr.bin/gdb/arch/amd64/config.h 1.2 +2 -2 src/gnu/usr.bin/gdb/arch/i386/config.h 1.2 +2 -2 src/gnu/usr.bin/gdb/arch/ia64/config.h 1.2 +2 -2 src/gnu/usr.bin/gdb/arch/sparc64/config.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 05:08: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 18FA116A4CE; Fri, 16 Jul 2004 05:08:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECEE243D1F; Fri, 16 Jul 2004 05:08:16 +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 i6G58Gtl085279; Fri, 16 Jul 2004 05:08:16 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G58GQs085278; Fri, 16 Jul 2004 05:08:16 GMT (envelope-from tjr) Message-Id: <200407160508.i6G58GQs085278@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 05:08: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/usr.bin/ul ul.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, 16 Jul 2004 05:08:17 -0000 tjr 2004-07-16 05:08:16 UTC FreeBSD src repository Modified files: usr.bin/ul ul.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.13 +3 -1 src/usr.bin/ul/ul.1 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 05:10: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 C48A316A4CE; Fri, 16 Jul 2004 05:10:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A645B43D3F; Fri, 16 Jul 2004 05:10:46 +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 i6G5Akp2085414; Fri, 16 Jul 2004 05:10:46 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G5Akuq085413; Fri, 16 Jul 2004 05:10:46 GMT (envelope-from tjr) Message-Id: <200407160510.i6G5Akuq085413@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 05:10: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.bin/jot jot.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, 16 Jul 2004 05:10:46 -0000 tjr 2004-07-16 05:10:46 UTC FreeBSD src repository Modified files: usr.bin/jot jot.c Log: Avoid passing negative values to functions on machines with signed chars. Revision Changes Path 1.26 +3 -3 src/usr.bin/jot/jot.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 05:52: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 98A6D16A4CE; Fri, 16 Jul 2004 05:52:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 797C143D54; Fri, 16 Jul 2004 05:52:51 +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 i6G5qpQP086477; Fri, 16 Jul 2004 05:52:51 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G5qpnf086476; Fri, 16 Jul 2004 05:52:51 GMT (envelope-from tjr) Message-Id: <200407160552.i6G5qpnf086476@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 05:52: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/lib/libc/stdio fgetln.c local.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, 16 Jul 2004 05:52:51 -0000 tjr 2004-07-16 05:52:51 UTC FreeBSD src repository Modified files: lib/libc/stdio fgetln.c local.h Log: Rename slbexpand() to __slbexpand() and make it available outside of fgetln.c (non-static). Revision Changes Path 1.10 +4 -4 src/lib/libc/stdio/fgetln.c 1.26 +1 -0 src/lib/libc/stdio/local.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:06: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 ADC9A16A4CE; Fri, 16 Jul 2004 06:06:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D48B43D3F; Fri, 16 Jul 2004 06:06:09 +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 i6G6696r087010; Fri, 16 Jul 2004 06:06:09 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G669rt087009; Fri, 16 Jul 2004 06:06:09 GMT (envelope-from tjr) Message-Id: <200407160606.i6G669rt087009@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 06:06: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 wchar.h src/lib/libc/stdio Makefile.inc fgetwln.3 fgetwln.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, 16 Jul 2004 06:06:09 -0000 tjr 2004-07-16 06:06:09 UTC FreeBSD src repository Modified files: include wchar.h lib/libc/stdio Makefile.inc Added files: lib/libc/stdio fgetwln.3 fgetwln.c Log: Add fgetwln(), a wide character version of fgetln(). Revision Changes Path 1.42 +1 -0 src/include/wchar.h 1.33 +4 -2 src/lib/libc/stdio/Makefile.inc 1.1 +120 -0 src/lib/libc/stdio/fgetwln.3 (new) 1.1 +68 -0 src/lib/libc/stdio/fgetwln.c (new) From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:07: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 8F65016A4CE; Fri, 16 Jul 2004 06:07:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FD0D43D31; Fri, 16 Jul 2004 06:07:12 +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 i6G67Cgx087063; Fri, 16 Jul 2004 06:07:12 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G67C8R087062; Fri, 16 Jul 2004 06:07:12 GMT (envelope-from tjr) Message-Id: <200407160607.i6G67C8R087062@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 06:07:12 +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/stdio fgetln.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: Fri, 16 Jul 2004 06:07:12 -0000 tjr 2004-07-16 06:07:12 UTC FreeBSD src repository Modified files: lib/libc/stdio fgetln.3 Log: Add a cross reference to fgetwln(3). Revision Changes Path 1.8 +2 -1 src/lib/libc/stdio/fgetln.3 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:11: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 8DA7D16A4CE; Fri, 16 Jul 2004 06:11:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D8A143D49; Fri, 16 Jul 2004 06:11:48 +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 i6G6BmTQ087207; Fri, 16 Jul 2004 06:11:48 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G6Bm25087206; Fri, 16 Jul 2004 06:11:48 GMT (envelope-from davidxu) Message-Id: <200407160611.i6G6Bm25087206@repoman.freebsd.org> From: David Xu Date: Fri, 16 Jul 2004 06:11: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/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: Fri, 16 Jul 2004 06:11:48 -0000 davidxu 2004-07-16 06:11:48 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: ptrace's first parameter is command not pid. pointy hat to me. Revision Changes Path 1.2 +6 -2 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06: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 6399F16A4CE; Fri, 16 Jul 2004 06:21:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43AD343D2D; Fri, 16 Jul 2004 06:21:40 +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 i6G6LeZ3087499; Fri, 16 Jul 2004 06:21:40 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G6LeMM087498; Fri, 16 Jul 2004 06:21:40 GMT (envelope-from tjr) Message-Id: <200407160621.i6G6LeMM087498@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 06:21: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/usr.bin/rev rev.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, 16 Jul 2004 06:21:40 -0000 tjr 2004-07-16 06:21:40 UTC FreeBSD src repository Modified files: usr.bin/rev rev.c Log: Add support for multibyte characters. Revision Changes Path 1.7 +9 -4 src/usr.bin/rev/rev.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06: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 ABE5216A4CE; Fri, 16 Jul 2004 06:21:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D0D743D31; Fri, 16 Jul 2004 06:21:56 +0000 (GMT) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G6LufY087537; Fri, 16 Jul 2004 06:21:56 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G6LupW087536; Fri, 16 Jul 2004 06:21:56 GMT (envelope-from das) Message-Id: <200407160621.i6G6LupW087536@repoman.freebsd.org> From: David Schultz Date: Fri, 16 Jul 2004 06:21: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/lib/msun/src math.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, 16 Jul 2004 06:21:56 -0000 das 2004-07-16 06:21:56 UTC FreeBSD src repository Modified files: lib/msun/src math.h Log: Tweak the conditions under which certain gcc builtins are used: - Unlike the builtin relational operators, builtin floating-point constants were not available until gcc 3.3, so account for this.[1] - Apparently some versions of the Intel C Compiler fallaciously define __GNUC__ without actually being compatible with the claimed gcc version. Account for this, too.[2] [1] Noticed by: Christian Hiris <4711@chello.at> [2] Submitted by: Alexander Leidinger Revision Changes Path 1.41 +2 -2 src/lib/msun/src/math.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:23: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 F341D16A4CE; Fri, 16 Jul 2004 06:23:29 +0000 (GMT) Received: from VARK.homeunix.com (adsl-69-107-108-110.dsl.pltn13.pacbell.net [69.107.108.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EC0F43D39; Fri, 16 Jul 2004 06:23:29 +0000 (GMT) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.11/8.12.10) with ESMTP id i6G6Mwin072658; Thu, 15 Jul 2004 23:22:58 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.11/8.12.10/Submit) id i6G6Mwab072657; Thu, 15 Jul 2004 23:22:58 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Date: Thu, 15 Jul 2004 23:22:58 -0700 From: David Schultz To: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <20040716062258.GA72641@VARK.homeunix.com> Mail-Followup-To: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200407160621.i6G6LupW087536@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407160621.i6G6LupW087536@repoman.freebsd.org> Subject: Re: cvs commit: src/lib/msun/src math.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, 16 Jul 2004 06:23:30 -0000 On Fri, Jul 16, 2004, David Schultz wrote: > das 2004-07-16 06:21:56 UTC > > FreeBSD src repository > > Modified files: > lib/msun/src math.h > Log: > Tweak the conditions under which certain gcc builtins are used: > > - Unlike the builtin relational operators, builtin floating-point > constants were not available until gcc 3.3, so account for this.[1] This should fix the editors/openoffice-1.1 build when using gcc 3.2. From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:31: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 BACFE16A4CE; Fri, 16 Jul 2004 06:31:32 +0000 (GMT) Received: from VARK.homeunix.com (adsl-69-107-108-110.dsl.pltn13.pacbell.net [69.107.108.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 923A243D41; Fri, 16 Jul 2004 06:31:32 +0000 (GMT) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.11/8.12.10) with ESMTP id i6G6V1xM072729; Thu, 15 Jul 2004 23:31:01 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.11/8.12.10/Submit) id i6G6V1YQ072728; Thu, 15 Jul 2004 23:31:01 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Date: Thu, 15 Jul 2004 23:31:01 -0700 From: David Schultz To: Max Laier Message-ID: <20040716063101.GB72641@VARK.homeunix.com> Mail-Followup-To: Max Laier , Murray Stokely , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200407140523.i6E5NGmr090783@repoman.freebsd.org> <200407140802.58627.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407140802.58627.max@love2party.net> cc: cvs-src@FreeBSD.ORG cc: Murray Stokely cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/dict freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 06:31:33 -0000 On Wed, Jul 14, 2004, Max Laier wrote: > On Wednesday 14 July 2004 07:23, Murray Stokely wrote: > > murray 2004-07-14 05:23:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/dict freebsd > > Log: > > More technical terms. > > > > MFC After: 3 days > > > > Revision Changes Path > > 1.8 +22 -2 src/share/dict/freebsd > > > ... > > +curmudgeon > > ... > > ... should be in every good technical dictionary ;) > I like it, but - as far as I see - it's in web2 as well so this would be > redundant? Oh, now you're just being a...well...you know. ;-) From owner-cvs-src@FreeBSD.ORG Fri Jul 16 06:55: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 F0FC716A4CE; Fri, 16 Jul 2004 06:55:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D192743D2D; Fri, 16 Jul 2004 06:55:34 +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 i6G6tYN7088617; Fri, 16 Jul 2004 06:55:34 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G6tYcE088616; Fri, 16 Jul 2004 06:55:34 GMT (envelope-from tjr) Message-Id: <200407160655.i6G6tYcE088616@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 16 Jul 2004 06:55: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/share/examples/kld/cdev/module cdev.c cdevmod.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, 16 Jul 2004 06:55:35 -0000 tjr 2004-07-16 06:55:34 UTC FreeBSD src repository Modified files: share/examples/kld/cdev/module cdev.c cdevmod.c Log: Update for struct cdevsw and dev_t -> struct cdev * changes, plus one 64-bit portability fix. Revision Changes Path 1.8 +7 -6 src/share/examples/kld/cdev/module/cdev.c 1.6 +2 -1 src/share/examples/kld/cdev/module/cdevmod.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 07:24: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 DE6E016A4CE; Fri, 16 Jul 2004 07:24:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C032743D54; Fri, 16 Jul 2004 07:24:20 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G7OKbZ089483; Fri, 16 Jul 2004 07:24:20 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G7OKkl089482; Fri, 16 Jul 2004 07:24:20 GMT (envelope-from tanimura) Message-Id: <200407160724.i6G7OKkl089482@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 07:24: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/boot/forth loader.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: Fri, 16 Jul 2004 07:24:21 -0000 tanimura 2004-07-16 07:24:20 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: Rename snd_pcm as sound. Revision Changes Path 1.83 +1 -1 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Fri Jul 16 07:59: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 2186316A4CE; Fri, 16 Jul 2004 07:59:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02C4143D3F; Fri, 16 Jul 2004 07:59:24 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G7wrAZ090461; Fri, 16 Jul 2004 07:58:53 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G7wrk3090460; Fri, 16 Jul 2004 07:58:53 GMT (envelope-from tanimura) Message-Id: <200407160758.i6G7wrk3090460@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 07:58:53 +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/sys/modules/sound/driver/sbc 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, 16 Jul 2004 07:59:24 -0000 tanimura 2004-07-16 07:58:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/modules/sound/driver/sbc Makefile Log: snd_sbc depends on sbc_pcm. PR: kern/67426 Submitted by: Matthew Emmerton Obtained from: DragonFlyBSD Revision Changes Path 1.1.2.4 +1 -0 src/sys/modules/sound/driver/sbc/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jul 16 08:12: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 8173916A4CE; Fri, 16 Jul 2004 08:12:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B0343D49; Fri, 16 Jul 2004 08:12:15 +0000 (GMT) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6G8CFUY090930; Fri, 16 Jul 2004 08:12:15 GMT (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G8CFqc090929; Fri, 16 Jul 2004 08:12:15 GMT (envelope-from tanimura) Message-Id: <200407160812.i6G8CFqc090929@repoman.freebsd.org> From: Seigo Tanimura Date: Fri, 16 Jul 2004 08:12: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/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, 16 Jul 2004 08:12:15 -0000 tanimura 2004-07-16 08:12:15 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Sync the example of MODULES_OVERRIDE with the renamed sound drivers. Pointed out by: Christoph Mallon Revision Changes Path 1.1247 +1 -1 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Fri Jul 16 08: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 0FB6D16A4CF; Fri, 16 Jul 2004 08:53:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E53B243D58; Fri, 16 Jul 2004 08:53:25 +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 i6G8rPap091798; Fri, 16 Jul 2004 08:53:25 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G8rPEk091797; Fri, 16 Jul 2004 08:53:25 GMT (envelope-from keramida) Message-Id: <200407160853.i6G8rPEk091797@repoman.freebsd.org> From: Giorgos Keramidas Date: Fri, 16 Jul 2004 08: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/usr.sbin/burncd burncd.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 08:53:26 -0000 keramida 2004-07-16 08:53:25 UTC FreeBSD src repository (doc committer) Modified files: usr.sbin/burncd burncd.8 Log: Refer to the sysutils/cdrtools port now that the sysutils/mkisofs port has been merged into the former. PR: docs/69087 Submitted by: Janos Mohacsi MFC after: 3 days Revision Changes Path 1.32 +4 -1 src/usr.sbin/burncd/burncd.8 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 09:02: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 BB9C616A4CE; Fri, 16 Jul 2004 09:02:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3EC843D3F; Fri, 16 Jul 2004 09:02:47 +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 i6G92lWL092106; Fri, 16 Jul 2004 09:02:47 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6G92lTo092105; Fri, 16 Jul 2004 09:02:47 GMT (envelope-from yar) Message-Id: <200407160902.i6G92lTo092105@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 16 Jul 2004 09:02:47 +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/usr.bin/ftp 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: Fri, 16 Jul 2004 09:02:47 -0000 yar 2004-07-16 09:02:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/ftp fetch.c Log: Stop pretending we support full-blown HTTP/1.1 because we are not ready to handle all its aspects. Failure to deal with HTTP/1.1, with chunked transfer encoding in particular, led to broken transfers and data corruption. Fall back to using HTTP/1.0, which is safe. A point to note: While the "Host:" header had not been in the original HTTP/1.0 standard, it became a de-facto standard for HTTP/1.0 as well. It is understood by servers in HTTP/1.0 sessions if supported at all. This issue doesn't apply to CURRENT since lukemftp handles HTTP/1.1 correctly. PR: bin/68547 Reviewed by: vs Revision Changes Path 1.12.2.7 +1 -1 src/usr.bin/ftp/fetch.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 11:07: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 BDAEB16A4CF; Fri, 16 Jul 2004 11:07:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F36E43D46; Fri, 16 Jul 2004 11:07:07 +0000 (GMT) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GB772E095412; Fri, 16 Jul 2004 11:07:07 GMT (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GB77BW095411; Fri, 16 Jul 2004 11:07:07 GMT (envelope-from johan) Message-Id: <200407161107.i6GB77BW095411@repoman.freebsd.org> From: Johan Karlsson Date: Fri, 16 Jul 2004 11:07: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/usr.bin/hexdump Makefile conv.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, 16 Jul 2004 11:07:07 -0000 johan 2004-07-16 11:07:07 UTC FreeBSD src repository Modified files: usr.bin/hexdump Makefile conv.c Log: Include to get memset and strcmp prototype. Sort includes. This is now WARNS=2 clean, bump WARNS to keep it clean. Revision Changes Path 1.7 +1 -0 src/usr.bin/hexdump/Makefile 1.8 +2 -1 src/usr.bin/hexdump/conv.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 12:50: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 868D616A55B; Fri, 16 Jul 2004 12:50:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A82343D39; Fri, 16 Jul 2004 12:50:11 +0000 (GMT) (envelope-from mr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GCoBci098318; Fri, 16 Jul 2004 12:50:11 GMT (envelope-from mr@repoman.freebsd.org) Received: (from mr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GCoBuI098317; Fri, 16 Jul 2004 12:50:11 GMT (envelope-from mr) Message-Id: <200407161250.i6GCoBuI098317@repoman.freebsd.org> From: Michael Reifenberger Date: Fri, 16 Jul 2004 12:50: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/rpc.lockd lock_proc.c lockd.c lockd_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, 16 Jul 2004 12:50:11 -0000 mr 2004-07-16 12:50:11 UTC FreeBSD src repository Modified files: usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_lock.c Log: After talking to Colin, apply the patch of bin/61718 (which should include/elimatate kern/61122 also). It seems to fix a few annoying bugs. PR: bin/61718, kern/61122 Submitted by: bg@sics.se ohartman@mail.physik.uni-mainz.de Revision Changes Path 1.15 +5 -2 src/usr.sbin/rpc.lockd/lock_proc.c 1.17 +1 -1 src/usr.sbin/rpc.lockd/lockd.c 1.15 +64 -61 src/usr.sbin/rpc.lockd/lockd_lock.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 13:38: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 B426316A4D0 for ; Fri, 16 Jul 2004 13:38:38 +0000 (GMT) Received: from goofy.cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with SMTP id 70FAC43D2D for ; Fri, 16 Jul 2004 13:38:37 +0000 (GMT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 33350 invoked by uid 89); 16 Jul 2004 15:39:09 +0200 Received: from sheepkiller@cultdeadsheep.org by goofy.cultdeadsheep.org by uid 89 with qmail-scanner-1.22 (clamdscan: 0.74. spamassassin: 2.63. Clear:RC:1(192.168.0.8):. Processed in 0.497233 secs); 16 Jul 2004 13:39:09 -0000 X-Qmail-Scanner-Mail-From: sheepkiller@cultdeadsheep.org via goofy.cultdeadsheep.org X-Qmail-Scanner: 1.22 (Clear:RC:1(192.168.0.8):. Processed in 0.497233 secs) Received: from unknown (HELO persephone.cultdeadsheep.org) (192.168.0.8) by goofy.cultdeadsheep.org with SMTP; 16 Jul 2004 15:39:08 +0200 Received: (qmail 56574 invoked from network); 16 Jul 2004 15:36:41 +0200 Received: from unknown (HELO satan.cultdeadsheep.org) (192.168.0.4) by persephone.cultdeadsheep.org with DES-CBC3-SHA encrypted SMTP; 16 Jul 2004 15:36:41 +0200 Date: Fri, 16 Jul 2004 15:38:19 +0200 From: Clement Laforet To: Michael Reifenberger Message-Id: <20040716153819.4f4018a1.sheepkiller@cultdeadsheep.org> In-Reply-To: <200407161250.i6GCoBuI098317@repoman.freebsd.org> References: <200407161250.i6GCoBuI098317@repoman.freebsd.org> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="Signature=_Fri__16_Jul_2004_15_38_19_+0200_3ihdrQmgu=qg1He/" cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_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, 16 Jul 2004 13:38:39 -0000 --Signature=_Fri__16_Jul_2004_15_38_19_+0200_3ihdrQmgu=qg1He/ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Fri, 16 Jul 2004 12:50:11 +0000 (UTC) Michael Reifenberger wrote: > mr 2004-07-16 12:50:11 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_lock.c > Log: > After talking to Colin, > apply the patch of bin/61718 (which should include/elimatate kern/61122 also). > It seems to fix a few annoying bugs. Thanks! clem --Signature=_Fri__16_Jul_2004_15_38_19_+0200_3ihdrQmgu=qg1He/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA99pLsRhfjwcjuh0RAlY0AKDxHvb/gzxWftCDAiP4+gDSKVR6hACg3Aae cjdWCs39BYj1vKUK2ihHY6Y= =JIru -----END PGP SIGNATURE----- --Signature=_Fri__16_Jul_2004_15_38_19_+0200_3ihdrQmgu=qg1He/-- From owner-cvs-src@FreeBSD.ORG Fri Jul 16 15:57: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 6F1F216A4CE; Fri, 16 Jul 2004 15:57:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54E8943D54; Fri, 16 Jul 2004 15:57:16 +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 i6GFvGnK003797; Fri, 16 Jul 2004 15:57:16 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GFvGWg003796; Fri, 16 Jul 2004 15:57:16 GMT (envelope-from cperciva) Message-Id: <200407161557.i6GFvGWg003796@repoman.freebsd.org> From: Colin Percival Date: Fri, 16 Jul 2004 15:57: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/sys/kern kern_prot.c 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: Fri, 16 Jul 2004 15:57:16 -0000 cperciva 2004-07-16 15:57:16 UTC FreeBSD src repository Modified files: sys/kern kern_prot.c sys/sys systm.h Log: Add a SUSER_RUID flag to suser_cred. This flag indicates that we want to check if the *real* user is the superuser (vs. the normal behaviour, which checks the effective user). Reviewed by: rwatson Revision Changes Path 1.184 +2 -3 src/sys/kern/kern_prot.c 1.210 +1 -0 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 16:59: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 BEF4216A4D1; Fri, 16 Jul 2004 16:59:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9191A43D67; Fri, 16 Jul 2004 16:59: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 i6GGxWS2005365; Fri, 16 Jul 2004 16:59:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GGxW9W005364; Fri, 16 Jul 2004 16:59:32 GMT (envelope-from njl) Message-Id: <200407161659.i6GGxW9W005364@repoman.freebsd.org> From: Nate Lawson Date: Fri, 16 Jul 2004 16:59: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/dev/acpica acpi_video.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, 16 Jul 2004 16:59:33 -0000 njl 2004-07-16 16:59:32 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_video.c Log: Fix acpi_video loading. When we started cleaning up the duplicate handles left around after the PCI probe, acpi_video stopped attaching because while it was an acpi child device, it really is a PCI device. Fix this by making it a PCI child. * Remove non-handle ivars accesses since child busses only implement acpi_get_handle(). * Access the acpi softc directly through the devclass instead of through the implied parent. * Clean up a potential panic on unload by freeing the sysctl context before storing NULL in the OID. Found by: marks Revision Changes Path 1.5 +4 -5 src/sys/dev/acpica/acpi_video.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 17: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 585F716A4CE; Fri, 16 Jul 2004 17:15:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E87D43D39; Fri, 16 Jul 2004 17:15:37 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GHFbwY005912; Fri, 16 Jul 2004 17:15:37 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GHFbxK005911; Fri, 16 Jul 2004 17:15:37 GMT (envelope-from harti) Message-Id: <200407161715.i6GHFbxK005911@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 16 Jul 2004 17: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/lib/libc/sys recv.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, 16 Jul 2004 17:15:37 -0000 harti 2004-07-16 17:15:37 UTC FreeBSD src repository Modified files: lib/libc/sys recv.2 Log: Document the MSG_DONTWAIT flag. Revision Changes Path 1.21 +8 -1 src/lib/libc/sys/recv.2 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 17:42: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 23EA016A4CE; Fri, 16 Jul 2004 17:42:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A9A643D54; Fri, 16 Jul 2004 17:42:49 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GHgmMP006565; Fri, 16 Jul 2004 17:42:48 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GHgmXT006564; Fri, 16 Jul 2004 17:42:48 GMT (envelope-from harti) Message-Id: <200407161742.i6GHgmXT006564@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 16 Jul 2004 17:42: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/sys socket.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, 16 Jul 2004 17:42:49 -0000 harti 2004-07-16 17:42:48 UTC FreeBSD src repository Modified files: sys/sys socket.h Log: According to POSIX sys/socket.h must define CMSG_NXTHDR but most not define NULL. This means we cannot use NULL in the definition of CMSG_NXTHDR. So replace NULL with 0. PR: kern/60309 Submitted by: Jeff King Revision Changes Path 1.82 +1 -1 src/sys/sys/socket.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 18: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 38B5B16A4D3; Fri, 16 Jul 2004 18:08:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E2E143D48; Fri, 16 Jul 2004 18:08:14 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GI8D9Q007224; Fri, 16 Jul 2004 18:08:13 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GI8DnG007223; Fri, 16 Jul 2004 18:08:13 GMT (envelope-from ume) Message-Id: <200407161808.i6GI8DnG007223@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 16 Jul 2004 18:08: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/netinet tcp_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: Fri, 16 Jul 2004 18:08:14 -0000 ume 2004-07-16 18:08:13 UTC FreeBSD src repository Modified files: sys/netinet tcp_usrreq.c Log: when IN6P_AUTOFLOWLABEL is set, the flowlabel is not set on outgoing tcp connections. Reported by: Orla McGann Reviewed by: Orla McGann Obtained from: KAME Revision Changes Path 1.104 +10 -2 src/sys/netinet/tcp_usrreq.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 18:18: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 C192E16A4CE; Fri, 16 Jul 2004 18:18:00 +0000 (GMT) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DE8643D2F; Fri, 16 Jul 2004 18:18:00 +0000 (GMT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP (SSL) id IBA74465; Fri, 16 Jul 2004 11:18:00 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id B27C45D08; Fri, 16 Jul 2004 11:17:59 -0700 (PDT) To: Nate Lawson In-reply-to: Your message of "Mon, 12 Jul 2004 20:53:04 -0000." <200407122053.i6CKr4GZ031785@repoman.freebsd.org> Date: Fri, 16 Jul 2004 11:17:59 -0700 From: "Kevin Oberman" Message-Id: <20040716181759.B27C45D08@ptavv.es.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_battery.c acpi_cmbat.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: Fri, 16 Jul 2004 18:18:01 -0000 > From: Nate Lawson > Date: Mon, 12 Jul 2004 20:53:04 +0000 (UTC) > Sender: owner-cvs-all@freebsd.org > > njl 2004-07-12 20:53:04 UTC > > FreeBSD src repository > > Modified files: > sys/dev/acpica acpi_battery.c acpi_cmbat.c acpivar.h > Log: > Add the ability to detach a battery. Now batteries that are detached are > also removed from the battery list. > > Revision Changes Path > 1.9 +16 -0 src/sys/dev/acpica/acpi_battery.c > 1.32 +16 -1 src/sys/dev/acpica/acpi_cmbat.c > 1.77 +1 -0 src/sys/dev/acpica/acpivar.h > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > Thanks! Any hope for adding a battery? I see acpi_battery_register routine, but I suspect it is only used at boot time. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 18:22: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 CC0B716A4CE; Fri, 16 Jul 2004 18:22:27 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D33E43D45; Fri, 16 Jul 2004 18:22:26 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6GIMHra000674 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 16 Jul 2004 11:22:18 -0700 Message-ID: <40F81C8B.4010404@root.org> Date: Fri, 16 Jul 2004 11:20:59 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.6 (X11/20040518) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kevin Oberman References: <20040716181759.B27C45D08@ptavv.es.net> In-Reply-To: <20040716181759.B27C45D08@ptavv.es.net> 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/acpica acpi_battery.c acpi_cmbat.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: Fri, 16 Jul 2004 18:22:28 -0000 Kevin Oberman wrote: >>From: Nate Lawson >>Date: Mon, 12 Jul 2004 20:53:04 +0000 (UTC) >>Sender: owner-cvs-all@freebsd.org >> >>njl 2004-07-12 20:53:04 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/acpica acpi_battery.c acpi_cmbat.c acpivar.h >> Log: >> Add the ability to detach a battery. Now batteries that are detached are >> also removed from the battery list. >> >> Revision Changes Path >> 1.9 +16 -0 src/sys/dev/acpica/acpi_battery.c >> 1.32 +16 -1 src/sys/dev/acpica/acpi_cmbat.c >> 1.77 +1 -0 src/sys/dev/acpica/acpivar.h > > Thanks! > > Any hope for adding a battery? I see acpi_battery_register routine, but > I suspect it is only used at boot time. Dynamic device add/remove is in my local tree. It has a few quirks in general but works ok with batteries. After some more work, it's likely I'll commit it. It is the rudimentary beginnings of docking support and drive bay swapping. -Nate From owner-cvs-src@FreeBSD.ORG Fri Jul 16 18:37: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 E895C16A4CF; Fri, 16 Jul 2004 18:37:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA1443D39; Fri, 16 Jul 2004 18:37:00 +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 i6GIb09L007940; Fri, 16 Jul 2004 18:37:00 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GIb0op007939; Fri, 16 Jul 2004 18:37:00 GMT (envelope-from njl) Message-Id: <200407161837.i6GIb0op007939@repoman.freebsd.org> From: Nate Lawson Date: Fri, 16 Jul 2004 18:37: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/modules/fdc 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, 16 Jul 2004 18:37:01 -0000 njl 2004-07-16 18:37:00 UTC FreeBSD src repository Modified files: sys/modules/fdc Makefile Log: Fix the alpha (and others) module build by only building fdc_acpi.c on i386 and amd64. The only other ACPI machine (ia64) doesn't support floppy drives. Tested by: make MACHINE={pc98,i386,amd64,alpha,sparc64} Revision Changes Path 1.12 +9 -7 src/sys/modules/fdc/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jul 16 18: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 E461116A4CE; Fri, 16 Jul 2004 18:43:51 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96ED443D1D; Fri, 16 Jul 2004 18:43:51 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-63-195-111-154.dsl.snfc21.pacbell.net [63.195.111.154]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i6GIhora001044 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 16 Jul 2004 11:43:51 -0700 Message-ID: <40F82198.8060400@root.org> Date: Fri, 16 Jul 2004 11:42:32 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.6 (X11/20040518) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org References: <20040716183704.95A8916A543@hub.freebsd.org> In-Reply-To: <20040716183704.95A8916A543@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/modules/fdc 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, 16 Jul 2004 18:43:52 -0000 Nate Lawson wrote: > njl 2004-07-16 18:37:00 UTC > > FreeBSD src repository > > Modified files: > sys/modules/fdc Makefile > Log: > Fix the alpha (and others) module build by only building fdc_acpi.c on > i386 and amd64. The only other ACPI machine (ia64) doesn't support > floppy drives. Tested by: make MACHINE={pc98,i386,amd64,alpha,sparc64} > > Revision Changes Path > 1.12 +9 -7 src/sys/modules/fdc/Makefile Pointed out by: gallatin From owner-cvs-src@FreeBSD.ORG Fri Jul 16 19:05: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 A8B9A16A4CE; Fri, 16 Jul 2004 19:05:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F6CC43D1D; Fri, 16 Jul 2004 19:05:40 +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 i6GJ5ebu008719; Fri, 16 Jul 2004 19:05:40 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GJ5eKM008717; Fri, 16 Jul 2004 19:05:40 GMT (envelope-from njl) Message-Id: <200407161905.i6GJ5eKM008717@repoman.freebsd.org> From: Nate Lawson Date: Fri, 16 Jul 2004 19:05: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/dev/acpica acpi_acad.c acpi_cmbat.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, 16 Jul 2004 19:05:40 -0000 njl 2004-07-16 19:05:40 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c acpi_cmbat.c Log: Use ACPI_ALL_NOTIFY instead of registering handlers separately. Revision Changes Path 1.29 +3 -5 src/sys/dev/acpica/acpi_acad.c 1.34 +1 -3 src/sys/dev/acpica/acpi_cmbat.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 19:31: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 1683316A4CE; Fri, 16 Jul 2004 19:31:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF06B43D1F; Fri, 16 Jul 2004 19:30:59 +0000 (GMT) (envelope-from mr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GJUx6o009401; Fri, 16 Jul 2004 19:30:59 GMT (envelope-from mr@repoman.freebsd.org) Received: (from mr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GJUxuw009400; Fri, 16 Jul 2004 19:30:59 GMT (envelope-from mr) Message-Id: <200407161930.i6GJUxuw009400@repoman.freebsd.org> From: Michael Reifenberger Date: Fri, 16 Jul 2004 19:30: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.sbin/rpc.lockd lock_proc.c lockd.c lockd_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, 16 Jul 2004 19:31:00 -0000 mr 2004-07-16 19:30:59 UTC FreeBSD src repository Modified files: usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_lock.c Log: Forced commit to actually list the changes of bin/61718, as requested by sam. The attached patch fixes a number of problems present in rpc.lockd. 1) Nfslocklist_head.lf_first is overwritten because of an off-by-one-bug that happens when clnt_cache_next_to_use is incorrectly incremented. 2) 'struct sockaddr *addr' inside 'struct file_lock' is set to point to the result from svc_getrpccaller(). This value is malloc:ed inside the rpc libraries and is free:ed when clnt_destroy() is called. Fix, maintain a copy of the result. 3) The loop inside retry_blockingfilelocklist() that uses 3 pointers ifl, nfl, and pfl thrashes the list pointed to by blockedlocklist_head.lf_first. Fix, use a simpler loop. The new loop does not preserve list order but the order is immaterial anyways. See also revison 1.6-1.7 and kern/61122. 4) struct file_lock char client_name[SM_MAXSTRLEN]; and struct host char name[SM_MAXSTRLEN]; Be careful to not create open (non 0 terminated) C strings and later passing them to e.g syslog. Fix, make sure that the strings are always terminated with 0. When at it, move the strings to the end of the structs and make them variable length. This saves about 1000 bytes for every malloc:ed struct. 5) The newfl = malloc(sizeof(struct file_lock)) memory was never properly bzero:ed. Minor changes: A) Nlmtonlm4(0) made assumptions about struct layouts. B) Don't close stdout and stderr when debugging (-d option). C) Remove unused pid_t locker and int fd in struct file_lock. D) s/printf/debuglog/ E) Remove redundant sleep(1) and call to debuglog(). Cheers, Björn Revision Changes Path 1.16 +0 -0 src/usr.sbin/rpc.lockd/lock_proc.c 1.18 +0 -0 src/usr.sbin/rpc.lockd/lockd.c 1.16 +0 -0 src/usr.sbin/rpc.lockd/lockd_lock.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 19:41: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 BD36D16A4CE for ; Fri, 16 Jul 2004 19:41:39 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E97643D67 for ; Fri, 16 Jul 2004 19:41:39 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 1446 invoked from network); 16 Jul 2004 19:41:39 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 16 Jul 2004 19:41:38 -0000 Received: from 10.50.41.229 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i6GJfT8v091652; Fri, 16 Jul 2004 15:41:35 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Colin Percival Date: Fri, 16 Jul 2004 15:42:39 -0400 User-Agent: KMail/1.6 References: <200407161557.i6GFvGWg003796@repoman.freebsd.org> In-Reply-To: <200407161557.i6GFvGWg003796@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407161542.40585.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/kern kern_prot.c 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: Fri, 16 Jul 2004 19:41:39 -0000 On Friday 16 July 2004 11:57 am, Colin Percival wrote: > cperciva 2004-07-16 15:57:16 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_prot.c > sys/sys systm.h > Log: > Add a SUSER_RUID flag to suser_cred. This flag indicates that we want to > check if the *real* user is the superuser (vs. the normal behaviour, > which checks the effective user). > > Reviewed by: rwatson Could we rename PRISON_ROOT to SUSER_PRISONOK or some such to be consistent? -- 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 Jul 16 20:53: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 2FB3F16A4CE; Fri, 16 Jul 2004 20:53:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1697B43D1F; Fri, 16 Jul 2004 20:53: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 i6GKr085011975; Fri, 16 Jul 2004 20:53:00 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GKr0MB011974; Fri, 16 Jul 2004 20:53:00 GMT (envelope-from obrien) Message-Id: <200407162053.i6GKr0MB011974@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 16 Jul 2004 20:53: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/compat/ia32 ia32_sysvec.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, 16 Jul 2004 20:53:01 -0000 obrien 2004-07-16 20:53:00 UTC FreeBSD src repository Modified files: sys/compat/ia32 ia32_sysvec.c Log: /usr/libexec/ld-elf.so.1 -> /libexec/ld-elf32.so.1 Revision Changes Path 1.18 +1 -1 src/sys/compat/ia32/ia32_sysvec.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21: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 4EED316A4CE; Fri, 16 Jul 2004 21:00:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3669743D3F; Fri, 16 Jul 2004 21:00:51 +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 i6GL0pUV012236; Fri, 16 Jul 2004 21:00:51 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GL0pGw012235; Fri, 16 Jul 2004 21:00:51 GMT (envelope-from jhb) Message-Id: <200407162100.i6GL0pGw012235@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Jul 2004 21: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/kern kern_sig.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, 16 Jul 2004 21:00:51 -0000 jhb 2004-07-16 21:00:51 UTC FreeBSD src repository Modified files: sys/kern kern_sig.c Log: Improve readability a bit by changing some code at the end of a function that did: if (foo) return else blah to just do the simpler if (!foo) blah instead. Revision Changes Path 1.285 +2 -6 src/sys/kern/kern_sig.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:01: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 3C77416A4CE; Fri, 16 Jul 2004 21:01:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2210643D3F; Fri, 16 Jul 2004 21:01:53 +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 i6GL1r69012289; Fri, 16 Jul 2004 21:01:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GL1qBc012288; Fri, 16 Jul 2004 21:01:52 GMT (envelope-from jhb) Message-Id: <200407162101.i6GL1qBc012288@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Jul 2004 21:01: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/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, 16 Jul 2004 21:01:53 -0000 jhb 2004-07-16 21:01:52 UTC FreeBSD src repository Modified files: sys/kern kern_thread.c Log: Whitespace fix. Revision Changes Path 1.188 +1 -1 src/sys/kern/kern_thread.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:04: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 F267316A4CE; Fri, 16 Jul 2004 21:04:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF5C843D31; Fri, 16 Jul 2004 21:04:55 +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 i6GL4tFj012396; Fri, 16 Jul 2004 21:04:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GL4tLO012395; Fri, 16 Jul 2004 21:04:55 GMT (envelope-from jhb) Message-Id: <200407162104.i6GL4tLO012395@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Jul 2004 21:04: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/kern kern_kse.c kern_switch.c kern_synch.c sched_4bsd.c sched_ule.c subr_prof.c subr_trap.c src/sys/sys proc.h resourcevar.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, 16 Jul 2004 21:04:56 -0000 jhb 2004-07-16 21:04:55 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c kern_switch.c kern_synch.c sched_4bsd.c sched_ule.c subr_prof.c subr_trap.c sys/sys proc.h resourcevar.h Log: - Move TDF_OWEPREEMPT, TDF_OWEUPC, and TDF_USTATCLOCK over to td_pflags since they are only accessed by curthread and thus do not need any locking. - Move pr_addr and pr_ticks out of struct uprof (which is per-process) and directly into struct thread as td_profil_addr and td_profil_ticks as these variables are really per-thread. (They are used to defer an addupc_intr() that was too "hard" until ast()). Revision Changes Path 1.185 +4 -5 src/sys/kern/kern_kse.c 1.71 +6 -3 src/sys/kern/kern_switch.c 1.254 +2 -1 src/sys/kern/kern_synch.c 1.45 +2 -1 src/sys/kern/sched_4bsd.c 1.116 +2 -1 src/sys/kern/sched_ule.c 1.74 +4 -3 src/sys/kern/subr_prof.c 1.269 +5 -5 src/sys/kern/subr_trap.c 1.387 +6 -3 src/sys/sys/proc.h 1.43 +0 -2 src/sys/sys/resourcevar.h From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:38: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 9E77916A4CF; Fri, 16 Jul 2004 21:38:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81EC843D53; Fri, 16 Jul 2004 21:38:48 +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 i6GLcmZk013406; Fri, 16 Jul 2004 21:38:48 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GLcmIh013405; Fri, 16 Jul 2004 21:38:48 GMT (envelope-from alc) Message-Id: <200407162138.i6GLcmIh013405@repoman.freebsd.org> From: Alan Cox Date: Fri, 16 Jul 2004 21:38: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/alpha/alpha 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: Fri, 16 Jul 2004 21:38:48 -0000 alc 2004-07-16 21:38:48 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c Log: Remove dead or unused code, such as spl calls. Revision Changes Path 1.159 +0 -25 src/sys/alpha/alpha/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:46: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 6881B16A4CE; Fri, 16 Jul 2004 21:46:16 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D1CF43D54; Fri, 16 Jul 2004 21:46:16 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 504435C92A; Fri, 16 Jul 2004 14:46:16 -0700 (PDT) Date: Fri, 16 Jul 2004 14:46:16 -0700 From: Alfred Perlstein To: Clement Laforet Message-ID: <20040716214616.GB95729@elvis.mu.org> References: <200407161250.i6GCoBuI098317@repoman.freebsd.org> <20040716153819.4f4018a1.sheepkiller@cultdeadsheep.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040716153819.4f4018a1.sheepkiller@cultdeadsheep.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: Michael Reifenberger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_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, 16 Jul 2004 21:46:16 -0000 * Clement Laforet [040716 06:38] wrote: > On Fri, 16 Jul 2004 12:50:11 +0000 (UTC) > Michael Reifenberger wrote: > > > mr 2004-07-16 12:50:11 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/rpc.lockd lock_proc.c lockd.c lockd_lock.c > > Log: > > After talking to Colin, > > apply the patch of bin/61718 (which should include/elimatate kern/61122 also). > > It seems to fix a few annoying bugs. > > Thanks! Hrm, in the future I'd like a headsup when committing here, I know a lot about this code. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:47: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 3B58816A4CF; Fri, 16 Jul 2004 21:47:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F7BC43D55; Fri, 16 Jul 2004 21:47:44 +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 i6GLliU6013690; Fri, 16 Jul 2004 21:47:44 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GLlhg3013689; Fri, 16 Jul 2004 21:47:43 GMT (envelope-from alfred) Message-Id: <200407162147.i6GLlhg3013689@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 16 Jul 2004 21:47: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 MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 21:47:44 -0000 alfred 2004-07-16 21:47:43 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: Request that diffs against nfs, rpc and rpc.lockd are run by me. Revision Changes Path 1.93 +3 -1 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:48: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 3821E16A4CF; Fri, 16 Jul 2004 21:48:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C28643D2D; Fri, 16 Jul 2004 21:48:31 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GLmU2J013741; Fri, 16 Jul 2004 21:48:30 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GLmUMX013740; Fri, 16 Jul 2004 21:48:30 GMT (envelope-from ps) Message-Id: <200407162148.i6GLmUMX013740@repoman.freebsd.org> From: Paul Saab Date: Fri, 16 Jul 2004 21:48: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/amd64/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: Fri, 16 Jul 2004 21:48:31 -0000 ps 2004-07-16 21:48:30 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC Log: Fix the build. pcm is no more. Revision Changes Path 1.413 +0 -4 src/sys/amd64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Fri Jul 16 21:55: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 9E3CD16A4D3; Fri, 16 Jul 2004 21:55:34 +0000 (GMT) Received: from pd3mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27DBD43D2D; Fri, 16 Jul 2004 21:55:34 +0000 (GMT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from pd3mr2so.prod.shaw.ca (pd3mr2so-ser.prod.shaw.ca [10.0.141.178])2003)) with ESMTP id <0I0Y00HIISE1O1@l-daemon>; Fri, 16 Jul 2004 15:44:25 -0600 (MDT) Received: from pn2ml6so.prod.shaw.ca ([10.0.121.150]) by pd3mr2so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I0Y00LLUSE1MWQ0@pd3mr2so.prod.shaw.ca>; Fri, 16 Jul 2004 15:44:25 -0600 (MDT) Received: from piii600.wadham.ox.ac.uk (S0106006067227a4a.vc.shawcable.net [24.87.233.42])2003)) with ESMTP id <0I0Y0017ESDZNE@l-daemon>; Fri, 16 Jul 2004 15:44:25 -0600 (MDT) Date: Fri, 16 Jul 2004 14:44:12 -0700 From: Colin Percival In-reply-to: <200407161542.40585.jhb@FreeBSD.org> X-Sender: cperciva@popserver.sfu.ca (Unverified) To: John Baldwin Message-id: <6.1.0.6.1.20040716143932.040665d0@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: <200407161557.i6GFvGWg003796@repoman.freebsd.org> <200407161542.40585.jhb@FreeBSD.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Colin Percival Subject: Re: cvs commit: src/sys/kern kern_prot.c 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: Fri, 16 Jul 2004 21:55:35 -0000 At 12:42 16/07/2004, John Baldwin wrote: >On Friday 16 July 2004 11:57 am, Colin Percival wrote: >> Log: >> Add a SUSER_RUID flag to suser_cred. This flag indicates that we want to >> check if the *real* user is the superuser (vs. the normal behaviour, >> which checks the effective user). > >Could we rename PRISON_ROOT to SUSER_PRISONOK or some such to be consistent? I'd be happy to do this; should I simply add the new name, or should I make the substitution across the entire tree? Colin Percival From owner-cvs-src@FreeBSD.ORG Fri Jul 16 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 383F716A4CE; Fri, 16 Jul 2004 22:02:57 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id E13D343D1D; Fri, 16 Jul 2004 22:02:56 +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 i6GM8can043067; Fri, 16 Jul 2004 16:08:39 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <40F8504B.6020705@freebsd.org> Date: Fri, 16 Jul 2004 16:01:47 -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: Alfred Perlstein References: <200407162147.i6GLlhg3013689@repoman.freebsd.org> In-Reply-To: <200407162147.i6GLlhg3013689@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 MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 22:02:57 -0000 Alfred Perlstein wrote: > alfred 2004-07-16 21:47:43 UTC > > FreeBSD src repository > > Modified files: > . MAINTAINERS > Log: > Request that diffs against nfs, rpc and rpc.lockd are run by me. > > Revision Changes Path > 1.93 +3 -1 src/MAINTAINERS Can I assign the rpc.lockd TODO items to you? If not, then who can we say is the true maintainer? Scott From owner-cvs-src@FreeBSD.ORG Fri Jul 16 22:04: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 B812B16A4CE; Fri, 16 Jul 2004 22:04:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98A1F43D5E; Fri, 16 Jul 2004 22:04:29 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6GM4TMf014368; Fri, 16 Jul 2004 22:04:29 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GM4T1V014367; Fri, 16 Jul 2004 22:04:29 GMT (envelope-from mux) Message-Id: <200407162204.i6GM4T1V014367@repoman.freebsd.org> From: Maxime Henrion Date: Fri, 16 Jul 2004 22:04: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/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: Fri, 16 Jul 2004 22:04:29 -0000 mux 2004-07-16 22:04:29 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Ignore more strange return values of the test_aux_port() function, because some notebooks (apparently Compaq, Toshiba and Acer ones) erroneously return 2 or 3 there. PR: kern/61482, kern/54188 Submitted by: Ulf Lilleengen , Victor Balada Diaz MFC after: 3 days Revision Changes Path 1.70 +10 -6 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Fri Jul 16 22:54: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 C2BDC16A4CE; Fri, 16 Jul 2004 22:54:30 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABC2743D5C; Fri, 16 Jul 2004 22:54:30 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id A311D5C91B; Fri, 16 Jul 2004 15:54:30 -0700 (PDT) Date: Fri, 16 Jul 2004 15:54:30 -0700 From: Alfred Perlstein To: Scott Long Message-ID: <20040716225430.GD95729@elvis.mu.org> References: <200407162147.i6GLlhg3013689@repoman.freebsd.org> <40F8504B.6020705@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40F8504B.6020705@freebsd.org> 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 MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Jul 2004 22:54:30 -0000 * Scott Long [040716 15:02] wrote: > Alfred Perlstein wrote: > > >alfred 2004-07-16 21:47:43 UTC > > > > FreeBSD src repository > > > > Modified files: > > . MAINTAINERS > > Log: > > Request that diffs against nfs, rpc and rpc.lockd are run by me. > > > > Revision Changes Path > > 1.93 +3 -1 src/MAINTAINERS > > Can I assign the rpc.lockd TODO items to you? If not, then who can we > say is the true maintainer? Let me explain, jerky. The year and a half I spent consulting at Apple I saw them take our rpc.lockd from something very beta to a fully production lockd. I didn't do this work myself, it was done by a collegue. I did, however review nearly all of his work. So, I do not have time to handle this list of items, but I will put forward an effort to give advice and help out when diffs are put forward. My goal being to gatekeeper to make sure there aren't any regressions, or to suggest an alternate solution if I can recall a better one. Unless you want me to wash my hands of it all? -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Fri Jul 16 23:07: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 3414016A4CE; Fri, 16 Jul 2004 23:07:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 189D843D1F; Fri, 16 Jul 2004 23:07:39 +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 i6GN7c9g016217; Fri, 16 Jul 2004 23:07:38 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6GN7c6f016216; Fri, 16 Jul 2004 23:07:38 GMT (envelope-from imp) Message-Id: <200407162307.i6GN7c6f016216@repoman.freebsd.org> From: Warner Losh Date: Fri, 16 Jul 2004 23:07: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/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, 16 Jul 2004 23:07:39 -0000 imp 2004-07-16 23:07:38 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c Log: Be consistant with probe Revision Changes Path 1.8 +1 -2 src/sys/dev/fdc/fdc_isa.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 00:26: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 B4DC116A4CE; Sat, 17 Jul 2004 00:26:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E9343D31; Sat, 17 Jul 2004 00:26:31 +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 i6H0QV6v018230; Sat, 17 Jul 2004 00:26:31 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H0QVrs018229; Sat, 17 Jul 2004 00:26:31 GMT (envelope-from alfred) Message-Id: <200407170026.i6H0QVrs018229@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 00:26: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/bin/date date.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: Sat, 17 Jul 2004 00:26:31 -0000 alfred 2004-07-17 00:26:31 UTC FreeBSD src repository Modified files: bin/date date.1 Log: Give the most awesome example of how to parse the output of date back into epoch time. Everytime I'm asked to do this by someone I have to spend about ten minutes recreating the same command line. So record it under examples. Revision Changes Path 1.67 +8 -0 src/bin/date/date.1 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 01:07: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 B7B7016A4CE; Sat, 17 Jul 2004 01:07:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AECF643D1D; Sat, 17 Jul 2004 01:07:53 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6H17rJZ019305; Sat, 17 Jul 2004 01:07:53 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H17rub019304; Sat, 17 Jul 2004 01:07:53 GMT (envelope-from brian) Message-Id: <200407170107.i6H17rub019304@repoman.freebsd.org> From: Brian Somers Date: Sat, 17 Jul 2004 01:07: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/usr.sbin/ppp command.c ipcp.c log.c log.h ppp.8.m4 radius.c radius.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, 17 Jul 2004 01:07:53 -0000 brian 2004-07-17 01:07:53 UTC FreeBSD src repository Modified files: usr.sbin/ppp command.c ipcp.c log.c log.h ppp.8.m4 radius.c radius.h Log: Support a ``set rad_alive N'' command to enable periodic RADIUS accounting information being sent to the RADIUS server. Logging of RADIUS accounting information moves to a ``set log [+-]radius'' level, along with the RADIUS alive info, and the version number is bumped to 3.2 to reflect this. Mostly submitted by: alx@sm.ukrtel.net (back in January) MFC after: 3 weeks Revision Changes Path 1.299 +30 -3 src/usr.sbin/ppp/command.c 1.120 +5 -3 src/usr.sbin/ppp/ipcp.c 1.53 +1 -0 src/usr.sbin/ppp/log.c 1.34 +10 -9 src/usr.sbin/ppp/log.h 1.311 +18 -0 src/usr.sbin/ppp/ppp.8.m4 1.47 +118 -27 src/usr.sbin/ppp/radius.c 1.20 +8 -0 src/usr.sbin/ppp/radius.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 02:40: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 9E57E16A4CE; Sat, 17 Jul 2004 02:40:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95EA843D48; Sat, 17 Jul 2004 02:40:14 +0000 (GMT) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6H2eEXt021684; Sat, 17 Jul 2004 02:40:14 GMT (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H2eEHO021683; Sat, 17 Jul 2004 02:40:14 GMT (envelope-from jmallett) Message-Id: <200407170240.i6H2eEHO021683@repoman.freebsd.org> From: Juli Mallett Date: Sat, 17 Jul 2004 02:40: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/netinet ip_fw2.c src/sys/sys mbuf.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, 17 Jul 2004 02:40:14 -0000 jmallett 2004-07-17 02:40:14 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c sys/sys mbuf.h Log: Make M_SKIP_FIREWALL a global (and semantic) flag, preventing anything from using M_PROTO6 and possibly shooting someone's foot, as well as allowing the firewall to be used in multiple passes, or with a packet classifier frontend, that may need to explicitly allow a certain packet. Presently this is handled in the ipfw_chk code as before, though I have run with it moved to upper layers, and possibly it should apply to ipfilter and pf as well, though this has not been investigated. Discussed with: luigi, rwatson Revision Changes Path 1.65 +0 -12 src/sys/netinet/ip_fw2.c 1.151 +2 -2 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 03:37: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 D6EBE16A4CE; Sat, 17 Jul 2004 03:37:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B76DB43D54; Sat, 17 Jul 2004 03:37:31 +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 i6H3bV5J023477; Sat, 17 Jul 2004 03:37:31 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H3bV8E023476; Sat, 17 Jul 2004 03:37:31 GMT (envelope-from tjr) Message-Id: <200407170337.i6H3bV8E023476@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Jul 2004 03:37: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/usr.bin/sed sed.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: Sat, 17 Jul 2004 03:37:32 -0000 tjr 2004-07-17 03:37:31 UTC FreeBSD src repository Modified files: usr.bin/sed sed.1 Log: Document the limitation that multibyte characters cannot be used as delimiters with the 's' and 'y' commands. Revision Changes Path 1.37 +6 -1 src/usr.bin/sed/sed.1 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 03:40: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 86F6016A4CE; Sat, 17 Jul 2004 03:40:28 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3A5543D2D; Sat, 17 Jul 2004 03:40:27 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.155] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Blg3n-0001CV-00; Sat, 17 Jul 2004 05:40:27 +0200 Received: from [217.227.153.122] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Blg3n-0001wY-00; Sat, 17 Jul 2004 05:40:27 +0200 From: Max Laier To: Juli Mallett Date: Sat, 17 Jul 2004 05:38:07 +0200 User-Agent: KMail/1.6.2 References: <200407170240.i6H2eEHO021683@repoman.freebsd.org> In-Reply-To: <200407170240.i6H2eEHO021683@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_m8J+ADUU83mSe6A"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407170538.14572.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fw2.c src/sys/sys mbuf.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, 17 Jul 2004 03:40:28 -0000 --Boundary-02=_m8J+ADUU83mSe6A Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 17 July 2004 04:40, Juli Mallett wrote: > jmallett 2004-07-17 02:40:14 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_fw2.c > sys/sys mbuf.h > Log: > Make M_SKIP_FIREWALL a global (and semantic) flag, preventing anything > from using M_PROTO6 and possibly shooting someone's foot, as well as > allowing the firewall to be used in multiple passes, or with a packet > classifier frontend, that may need to explicitly allow a certain packet.= =20 > Presently this is handled in the ipfw_chk code as before, though I have r= un > with it moved to upper layers, and possibly it should apply to ipfilter a= nd > pf as well, though this has not been investigated. pf does something to the same effect by prepending a mbuf with the=20 "PACKET_TAG_PF_GENERATED" mbuf_tag to skip processing for its own packets. = If=20 we can agree that the presence of M_SKIP_FIREWALL is copied to icmp error=20 messages I will happily replace the mbuf tag with the more general flag=20 (which will perform significantly better, I believe). Please tell me what y= ou=20 think of this. =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_m8J+ADUU83mSe6A Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBA+J8mXyyEoT62BG0RAie9AJ9IKmgM3An5FItJ151HJIgFuD+RmQCeNQb/ PRjAI+1mkkuTn/DbDPhNsqc= =I51E -----END PGP SIGNATURE----- --Boundary-02=_m8J+ADUU83mSe6A-- From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04:01: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 9CE1E16A4CE; Sat, 17 Jul 2004 04:01:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D57743D41; Sat, 17 Jul 2004 04:01:29 +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 i6H41Tew024103; Sat, 17 Jul 2004 04:01:29 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H41T5G024102; Sat, 17 Jul 2004 04:01:29 GMT (envelope-from alc) Message-Id: <200407170401.i6H41T5G024102@repoman.freebsd.org> From: Alan Cox Date: Sat, 17 Jul 2004 04:01: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/alpha/alpha 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: Sat, 17 Jul 2004 04:01:29 -0000 alc 2004-07-17 04:01:29 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c Log: MFamd64 revision 1.478 Simplify pmap_remove_pages(), eliminating unnecessary indirection. Revision Changes Path 1.160 +5 -6 src/sys/alpha/alpha/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04:04: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 4CDE516A4CE; Sat, 17 Jul 2004 04:04:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D05743D3F; Sat, 17 Jul 2004 04:04:31 +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 i6H44Vom024250; Sat, 17 Jul 2004 04:04:31 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H44Vuj024249; Sat, 17 Jul 2004 04:04:31 GMT (envelope-from tjr) Message-Id: <200407170404.i6H44Vuj024249@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Jul 2004 04:04: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/usr.bin/apply apply.1 src/usr.bin/finger finger.1 src/usr.bin/fmt fmt.1 src/usr.bin/look look.1 src/usr.bin/wall wall.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: Sat, 17 Jul 2004 04:04:31 -0000 tjr 2004-07-17 04:04:31 UTC FreeBSD src repository Modified files: usr.bin/apply apply.1 usr.bin/finger finger.1 usr.bin/fmt fmt.1 usr.bin/look look.1 usr.bin/wall wall.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.15 +5 -1 src/usr.bin/apply/apply.1 1.30 +5 -1 src/usr.bin/finger/finger.1 1.12 +3 -1 src/usr.bin/fmt/fmt.1 1.12 +5 -1 src/usr.bin/look/look.1 1.10 +5 -1 src/usr.bin/wall/wall.1 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04: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 D910F16A4D0; Sat, 17 Jul 2004 04:15:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA67143D55; Sat, 17 Jul 2004 04:15: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 i6H4FRxm024603; Sat, 17 Jul 2004 04:15:27 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H4FRjN024602; Sat, 17 Jul 2004 04:15:27 GMT (envelope-from tjr) Message-Id: <200407170415.i6H4FRjN024602@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Jul 2004 04:15: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/usr.bin/write write.1 src/usr.bin/wall wall.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: Sat, 17 Jul 2004 04:15:28 -0000 tjr 2004-07-17 04:15:27 UTC FreeBSD src repository Modified files: usr.bin/write write.1 usr.bin/wall wall.1 Log: Mention in the BUGS section that write and wall bogusly use the sender's LC_CTYPE setting instead of the receiver's when determining which characters are printable. Revision Changes Path 1.11 +7 -0 src/usr.bin/wall/wall.1 1.12 +8 -1 src/usr.bin/write/write.1 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04:17: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 F1A1D16A4CE; Sat, 17 Jul 2004 04:17:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B21E143D53; Sat, 17 Jul 2004 04:17:50 +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 i6H4Ho1C024766; Sat, 17 Jul 2004 04:17:50 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H4HoM2024765; Sat, 17 Jul 2004 04:17:50 GMT (envelope-from kientzle) Message-Id: <200407170417.i6H4HoM2024765@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 17 Jul 2004 04:17: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/usr.bin/tar bsdtar.c bsdtar.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, 17 Jul 2004 04:17:51 -0000 kientzle 2004-07-17 04:17:50 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h Log: Validate -o usage. Strictly speaking, -o only makes sense with -x, of course, but I make an effort to accomodate GNU tar scripts that use -o with -c (with a meaning that totally contradicts SUSv2) by only issuing a benign warning message in that case. Revision Changes Path 1.39 +7 -0 src/usr.bin/tar/bsdtar.c 1.15 +1 -0 src/usr.bin/tar/bsdtar.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04:18: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 4F3F616A4D0; Sat, 17 Jul 2004 04:18:20 +0000 (GMT) Received: from smtp2.server.rpi.edu (smtp2.server.rpi.edu [128.113.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D790543D2F; Sat, 17 Jul 2004 04:18:19 +0000 (GMT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp2.server.rpi.edu (8.13.0/8.13.0) with ESMTP id i6H4IGm0010649; Sat, 17 Jul 2004 00:18:16 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20040716225430.GD95729@elvis.mu.org> References: <200407162147.i6GLlhg3013689@repoman.freebsd.org> <40F8504B.6020705@freebsd.org> <20040716225430.GD95729@elvis.mu.org> Date: Sat, 17 Jul 2004 00:18:15 -0400 To: Alfred Perlstein , Scott Long From: Garance A Drosihn Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: CanIt (www . canit . ca) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 04:18:20 -0000 At 3:54 PM -0700 7/16/04, Alfred Perlstein wrote: >* Scott Long [040716 15:02] wrote: >> Alfred Perlstein wrote: >> >> >alfred 2004-07-16 21:47:43 UTC >> > >> > FreeBSD src repository >> > >> > Modified files: >> > . MAINTAINERS >> > Log: > > > Request that diffs against nfs, rpc and rpc.lockd are run > > > by me. > > > >> > Revision Changes Path >> > 1.93 +3 -1 src/MAINTAINERS >> > > Can I assign the rpc.lockd TODO items to you? If not, then who > > can we say is the true maintainer? > >Let me explain, jerky. I think you are over-reacting to what was a simple question. Give Scott the benefit of the doubt first, and just answer the simple question that he asked. No need to say "jerky" or get all in a huff about it. Scott is just trying to line up people for various areas of the system. -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From owner-cvs-src@FreeBSD.ORG Sat Jul 17 04:46: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 6463716A4CE; Sat, 17 Jul 2004 04:46:36 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5945843D2D; Sat, 17 Jul 2004 04:46:36 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 51E225C974; Fri, 16 Jul 2004 21:46:36 -0700 (PDT) Date: Fri, 16 Jul 2004 21:46:36 -0700 From: Alfred Perlstein To: Garance A Drosihn Message-ID: <20040717044636.GG95729@elvis.mu.org> References: <200407162147.i6GLlhg3013689@repoman.freebsd.org> <40F8504B.6020705@freebsd.org> <20040716225430.GD95729@elvis.mu.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: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 04:46:36 -0000 * Garance A Drosihn [040716 21:18] wrote: > At 3:54 PM -0700 7/16/04, Alfred Perlstein wrote: > >* Scott Long [040716 15:02] wrote: > >> Alfred Perlstein wrote: > >> > >> >alfred 2004-07-16 21:47:43 UTC > >> > > >> > FreeBSD src repository > >> > > >> > Modified files: > >> > . MAINTAINERS > >> > Log: > > > > Request that diffs against nfs, rpc and rpc.lockd are run > > > > by me. > > > > > >> > Revision Changes Path > >> > 1.93 +3 -1 src/MAINTAINERS > >> > > > Can I assign the rpc.lockd TODO items to you? If not, then who > > > can we say is the true maintainer? > > > >Let me explain, jerky. > > I think you are over-reacting to what was a simple question. > Give Scott the benefit of the doubt first, and just answer > the simple question that he asked. No need to say "jerky" > or get all in a huff about it. Scott is just trying to line > up people for various areas of the system. I figured I might be overreacting, but... We spoke on chat and it was his intention to challenge or motivate me to do this or step down from asserting MAINTAINERSHIP. And that's not how to go about it. Anyone who's filtered code through me (with one known exception) knows that I have a fast turnaround rate and am comfortable with changes. I just want to avoid major regressions and loss of functionality as well as a headsup on the code presented. I've taken great pains to bring us lockd, and went through a lot of pain when rpc was upgraded and I've spend quite some time on NFS. So really, I'm trying to help, not hinder. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 05:10: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 8F89B16A4CE; Sat, 17 Jul 2004 05:10:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7053943D4C; Sat, 17 Jul 2004 05:10:06 +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 i6H5A6At026091; Sat, 17 Jul 2004 05:10:06 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H5A6lR026090; Sat, 17 Jul 2004 05:10:06 GMT (envelope-from mlaier) Message-Id: <200407170510.i6H5A6lR026090@repoman.freebsd.org> From: Max Laier Date: Sat, 17 Jul 2004 05:10: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/contrib/pf/net pf.c src/sys/netinet ip_icmp.c src/sys/sys mbuf.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, 17 Jul 2004 05:10:06 -0000 mlaier 2004-07-17 05:10:06 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf.c sys/netinet ip_icmp.c sys/sys mbuf.h Log: Define semantic of M_SKIP_FIREWALL more precisely, i.e. also pass associated icmp_error() packets. While here retire PACKET_TAG_PF_GENERATED (which served the same purpose) and use M_SKIP_FIREWALL in pf as well. This should speed up things a bit as we get rid of the tag allocations. Discussed with: juli Revision Changes Path 1.12 +29 -10 src/sys/contrib/pf/net/pf.c 1.95 +5 -11 src/sys/netinet/ip_icmp.c 1.152 +0 -1 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 06:03: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 E85E416A4CE; Sat, 17 Jul 2004 06:03:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB56743D55; Sat, 17 Jul 2004 06:03: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 i6H63lTo029159; Sat, 17 Jul 2004 06:03:47 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H63lkv029158; Sat, 17 Jul 2004 06:03:47 GMT (envelope-from kientzle) Message-Id: <200407170603.i6H63lkv029158@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 17 Jul 2004 06:03: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/usr.bin/tar Makefile src/gnu/usr.bin/tar 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, 17 Jul 2004 06:03:48 -0000 kientzle 2004-07-17 06:03:47 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile gnu/usr.bin/tar Makefile Log: Make bsdtar the default system tar. This makes /usr/bin/tar a symlink pointing to /usr/bin/bsdtar by default. To make it point to /usr/bin/gtar, you can define WITH_GTAR. Revision Changes Path 1.24 +1 -1 src/gnu/usr.bin/tar/Makefile 1.7 +1 -1 src/usr.bin/tar/Makefile From owner-cvs-src@FreeBSD.ORG Sat Jul 17 06:29: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 8081B16A4CE; Sat, 17 Jul 2004 06:29:57 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 760D643D1D; Sat, 17 Jul 2004 06:29:57 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 6CB715C96F; Fri, 16 Jul 2004 23:29:57 -0700 (PDT) Date: Fri, 16 Jul 2004 23:29:57 -0700 From: Alfred Perlstein To: Tim Kientzle Message-ID: <20040717062957.GH95729@elvis.mu.org> References: <200407170603.i6H63lkv029158@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407170603.i6H63lkv029158@repoman.freebsd.org> 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/usr.bin/tar Makefile src/gnu/usr.bin/tar 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, 17 Jul 2004 06:29:57 -0000 * Tim Kientzle [040716 23:03] wrote: > kientzle 2004-07-17 06:03:47 UTC > > FreeBSD src repository > > Modified files: > usr.bin/tar Makefile > gnu/usr.bin/tar Makefile > Log: > Make bsdtar the default system tar. This makes /usr/bin/tar a symlink > pointing to /usr/bin/bsdtar by default. To make it point to /usr/bin/gtar, > you can define WITH_GTAR. cool! (it works... right?) :) -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Sat Jul 17 06:36: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 492C316A4CE; Sat, 17 Jul 2004 06:36:31 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 088A043D1D; Sat, 17 Jul 2004 06:36:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-64-169-107-19.dsl.lsan03.pacbell.net [64.169.107.19]) i6H6aUt9028713; Sat, 17 Jul 2004 02:36:30 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 29467533F9; Fri, 16 Jul 2004 23:36:29 -0700 (PDT) Date: Fri, 16 Jul 2004 23:36:29 -0700 From: Kris Kennaway To: Alfred Perlstein Message-ID: <20040717063629.GA30488@xor.obsecurity.org> References: <200407170603.i6H63lkv029158@repoman.freebsd.org> <20040717062957.GH95729@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <20040717062957.GH95729@elvis.mu.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@freebsd.org cc: Tim Kientzle cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar Makefile src/gnu/usr.bin/tar 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, 17 Jul 2004 06:36:31 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 16, 2004 at 11:29:57PM -0700, Alfred Perlstein wrote: > * Tim Kientzle [040716 23:03] wrote: > > kientzle 2004-07-17 06:03:47 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > usr.bin/tar Makefile=20 > > gnu/usr.bin/tar Makefile=20 > > Log: > > Make bsdtar the default system tar. This makes /usr/bin/tar a symlink > > pointing to /usr/bin/bsdtar by default. To make it point to /usr/bin= /gtar, > > you can define WITH_GTAR. >=20 > cool! (it works... right?) :) Yes, at least as far as 11000 port builds are concerned :-) Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA+MjsWry0BWjoQKURAudyAJsHe2Jd3zvr8MjK4Ezo+URwLArgfQCgmCaZ EtP2SO4g4gUQQ9WsviWFmf4= =Wj0F -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- From owner-cvs-src@FreeBSD.ORG Sat Jul 17 07:11: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 EEA7316A4CE; Sat, 17 Jul 2004 07:11:07 +0000 (GMT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEFF243D45; Sat, 17 Jul 2004 07:11:07 +0000 (GMT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i6H7B78M063543; Sat, 17 Jul 2004 00:11:07 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i6H7B6Bv063542; Sat, 17 Jul 2004 00:11:06 -0700 (PDT) (envelope-from rizzo) Date: Sat, 17 Jul 2004 00:11:06 -0700 From: Luigi Rizzo To: Max Laier Message-ID: <20040717001106.A63513@xorpc.icir.org> References: <200407170240.i6H2eEHO021683@repoman.freebsd.org> <200407170538.14572.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200407170538.14572.max@love2party.net>; from max@love2party.net on Sat, Jul 17, 2004 at 05:38:07AM +0200 cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fw2.c src/sys/sys mbuf.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, 17 Jul 2004 07:11:08 -0000 On Sat, Jul 17, 2004 at 05:38:07AM +0200, Max Laier wrote: ... > pf does something to the same effect by prepending a mbuf with the > "PACKET_TAG_PF_GENERATED" mbuf_tag to skip processing for its own packets. If > we can agree that the presence of M_SKIP_FIREWALL is copied to icmp error > messages I will happily replace the mbuf tag with the more general flag > (which will perform significantly better, I believe). Please tell me what you > think of this. fine with me luigi From owner-cvs-src@FreeBSD.ORG Sat Jul 17 07:26: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 7A3DD16A4CE; Sat, 17 Jul 2004 07:26:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C6CE43D55; Sat, 17 Jul 2004 07:26:32 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6H7QW4n031472; Sat, 17 Jul 2004 07:26:32 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H7QWRs031471; Sat, 17 Jul 2004 07:26:32 GMT (envelope-from grehan) Message-Id: <200407170726.i6H7QWRs031471@repoman.freebsd.org> From: Peter Grehan Date: Sat, 17 Jul 2004 07:26: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/powerpc/powerpc elf_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: Sat, 17 Jul 2004 07:26:32 -0000 grehan 2004-07-17 07:26:32 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc elf_machdep.c Log: Resurrect kld support. Support ADDR16_HA/LA relocations, and sync the icache on module load. Requires "-mlongcall" support, in gcc >= 3.3 but needs a bugfix to support gcc arith builtins. Revision Changes Path 1.19 +44 -42 src/sys/powerpc/powerpc/elf_machdep.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 07:35: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 226CF16A4CE; Sat, 17 Jul 2004 07:35:30 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id C87D743D5C; Sat, 17 Jul 2004 07:35:29 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 94FDBACAEE; Sat, 17 Jul 2004 09:35:28 +0200 (CEST) Date: Sat, 17 Jul 2004 09:35:28 +0200 From: Pawel Jakub Dawidek To: Colin Percival Message-ID: <20040717073528.GL12007@darkness.comp.waw.pl> References: <200407161557.i6GFvGWg003796@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XWVM3njSzn/Ti2PH" Content-Disposition: inline In-Reply-To: <200407161557.i6GFvGWg003796@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_prot.c 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: Sat, 17 Jul 2004 07:35:30 -0000 --XWVM3njSzn/Ti2PH Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 16, 2004 at 03:57:16PM +0000, Colin Percival wrote: +> cperciva 2004-07-16 15:57:16 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/kern kern_prot.c=20 +> sys/sys systm.h=20 +> Log: +> Add a SUSER_RUID flag to suser_cred. This flag indicates that we want= to +> check if the *real* user is the superuser (vs. the normal behaviour, w= hich +> checks the effective user). Are you going to update suser(9) manual page as well? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --XWVM3njSzn/Ti2PH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA+NbAForvXbEpPzQRAlLbAKCcPK9rV53vZ2FsLzQT1Amq3bpTfgCg0yPM ea28g2aFVxlWoEmzIUxDYmQ= =AIRA -----END PGP SIGNATURE----- --XWVM3njSzn/Ti2PH-- From owner-cvs-src@FreeBSD.ORG Sat Jul 17 09:41: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 6B41116A4CE; Sat, 17 Jul 2004 09:41:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB1043D53; Sat, 17 Jul 2004 09:41:21 +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 i6H9fLnn034948; Sat, 17 Jul 2004 09:41:21 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6H9fL4O034947; Sat, 17 Jul 2004 09:41:21 GMT (envelope-from simokawa) Message-Id: <200407170941.i6H9fL4O034947@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sat, 17 Jul 2004 09:41: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/dev/firewire fwohci_pci.c fwohcireg.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, 17 Jul 2004 09:41:21 -0000 simokawa 2004-07-17 09:41:20 UTC FreeBSD src repository Modified files: sys/dev/firewire fwohci_pci.c fwohcireg.h Log: Add some PCI IDs for OHCI chips. Obtained from: DragonFly BSD Revision Changes Path 1.46 +21 -0 src/sys/dev/firewire/fwohci_pci.c 1.19 +9 -0 src/sys/dev/firewire/fwohcireg.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 10:05: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 5C31716A4CE; Sat, 17 Jul 2004 10:05:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F21C43D5A; Sat, 17 Jul 2004 10:05:33 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HA5Xsh035653; Sat, 17 Jul 2004 10:05:33 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HA5WNH035652; Sat, 17 Jul 2004 10:05:32 GMT (envelope-from nyan) Message-Id: <200407171005.i6HA5WNH035652@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 17 Jul 2004 10:05: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/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: Sat, 17 Jul 2004 10:05:33 -0000 nyan 2004-07-17 10:05:32 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc_isa.c Log: Remove duplicate include. Revision Changes Path 1.9 +0 -1 src/sys/dev/fdc/fdc_isa.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 10:05: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 E0FFC16A4CE; Sat, 17 Jul 2004 10:05:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2AC543D1D; Sat, 17 Jul 2004 10:05:56 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HA5uaB035687; Sat, 17 Jul 2004 10:05:56 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HA5upN035686; Sat, 17 Jul 2004 10:05:56 GMT (envelope-from nyan) Message-Id: <200407171005.i6HA5upN035686@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 17 Jul 2004 10:05: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/dev/fdc fdc.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, 17 Jul 2004 10:05:57 -0000 nyan 2004-07-17 10:05:56 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c Log: Correct typo. Revision Changes Path 1.282 +1 -1 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 10:07: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 4D41616A4CE; Sat, 17 Jul 2004 10:07:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FE0B43D1D; Sat, 17 Jul 2004 10:07:20 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HA7KsV035812; Sat, 17 Jul 2004 10:07:20 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HA7Kt3035811; Sat, 17 Jul 2004 10:07:20 GMT (envelope-from nyan) Message-Id: <200407171007.i6HA7Kt3035811@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 17 Jul 2004 10:07: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/sys/pc98/pc98 fd.c fdc_cbus.c fdcvar.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, 17 Jul 2004 10:07:20 -0000 nyan 2004-07-17 10:07:19 UTC FreeBSD src repository Modified files: sys/pc98/pc98 fd.c fdc_cbus.c fdcvar.h Log: Merged from the following changes. - sys/dev/fdc/fdc.c revision 1.281 - sys/dev/fdc/fdcvar.h revision 1.3 - sys/dev/fdc/fdc_isa.c revision 1.7 Revision Changes Path 1.153 +34 -25 src/sys/pc98/pc98/fd.c 1.4 +4 -3 src/sys/pc98/pc98/fdc_cbus.c 1.3 +6 -2 src/sys/pc98/pc98/fdcvar.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 10: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 B9F9716A4CE; Sat, 17 Jul 2004 10:22:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D98143D31; Sat, 17 Jul 2004 10:22:42 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HAMgNr036195; Sat, 17 Jul 2004 10:22:42 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HAMghE036194; Sat, 17 Jul 2004 10:22:42 GMT (envelope-from nyan) Message-Id: <200407171022.i6HAMghE036194@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 17 Jul 2004 10: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/pc98/conf GENERIC GENERIC.hints X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 10:22:42 -0000 nyan 2004-07-17 10:22:42 UTC FreeBSD src repository Modified files: sys/pc98/conf GENERIC GENERIC.hints Log: Rename the sound device drivers. Revision Changes Path 1.251 +4 -2 src/sys/pc98/conf/GENERIC 1.20 +10 -10 src/sys/pc98/conf/GENERIC.hints From owner-cvs-src@FreeBSD.ORG Sat Jul 17 12:27: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 3F33216A4CE; Sat, 17 Jul 2004 12:27:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2048743D53; Sat, 17 Jul 2004 12:27:26 +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 i6HCRQDv039987; Sat, 17 Jul 2004 12:27:26 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HCRPXq039986; Sat, 17 Jul 2004 12:27:25 GMT (envelope-from tjr) Message-Id: <200407171227.i6HCRPXq039986@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Jul 2004 12:27: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/gen vis.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: Sat, 17 Jul 2004 12:27:26 -0000 tjr 2004-07-17 12:27:25 UTC FreeBSD src repository Modified files: lib/libc/gen vis.3 Log: Fix typo: carat -> caret. Revision Changes Path 1.26 +1 -1 src/lib/libc/gen/vis.3 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 14:38: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 B7C3F16A4CE; Sat, 17 Jul 2004 14:38:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BDF143D53; Sat, 17 Jul 2004 14:38:42 +0000 (GMT) (envelope-from bp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HEcgUe044208; Sat, 17 Jul 2004 14:38:42 GMT (envelope-from bp@repoman.freebsd.org) Received: (from bp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HEcggW044207; Sat, 17 Jul 2004 14:38:42 GMT (envelope-from bp) Message-Id: <200407171438.i6HEcggW044207@repoman.freebsd.org> From: Boris Popov Date: Sat, 17 Jul 2004 14:38: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/contrib/smbfs/examples dot.nsmbrc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 14:38:42 -0000 bp 2004-07-17 14:38:42 UTC FreeBSD src repository Modified files: contrib/smbfs/examples dot.nsmbrc Log: Use correct location for nsmb.conf file. PR: misc/45273 Revision Changes Path 1.2 +6 -4 src/contrib/smbfs/examples/dot.nsmbrc From owner-cvs-src@FreeBSD.ORG Sat Jul 17 14:42: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 A8E4D16A4CF; Sat, 17 Jul 2004 14:42:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AB1343D1F; Sat, 17 Jul 2004 14:42:14 +0000 (GMT) (envelope-from bp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HEgECc044356; Sat, 17 Jul 2004 14:42:14 GMT (envelope-from bp@repoman.freebsd.org) Received: (from bp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HEgEwO044355; Sat, 17 Jul 2004 14:42:14 GMT (envelope-from bp) Message-Id: <200407171442.i6HEgEwO044355@repoman.freebsd.org> From: Boris Popov Date: Sat, 17 Jul 2004 14:42:14 +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/contrib/smbfs/examples dot.nsmbrc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 14:42:14 -0000 bp 2004-07-17 14:42:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/smbfs/examples dot.nsmbrc Log: MFC: Use correct location for nsmb.conf file. Revision Changes Path 1.1.1.1.2.3 +2 -1 src/contrib/smbfs/examples/dot.nsmbrc From owner-cvs-src@FreeBSD.ORG Sat Jul 17 14:48: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 D4DEB16A4CE; Sat, 17 Jul 2004 14:48:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6BDE43D49; Sat, 17 Jul 2004 14:48:46 +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 i6HEmkMB044632; Sat, 17 Jul 2004 14:48:46 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HEmkMp044631; Sat, 17 Jul 2004 14:48:46 GMT (envelope-from sos) Message-Id: <200407171448.i6HEmkMp044631@repoman.freebsd.org> From: Søren Schmidt Date: Sat, 17 Jul 2004 14:48: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/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: Sat, 17 Jul 2004 14:48:47 -0000 sos 2004-07-17 14:48:46 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: Dont set "address setup timing" on newer VIA chips. closes PR: 69180 Revision Changes Path 1.76 +2 -1 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 15:03: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 40B3216A4CE; Sat, 17 Jul 2004 15:03:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 242EC43D31; Sat, 17 Jul 2004 15:03: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 i6HF3rgu045112; Sat, 17 Jul 2004 15:03:53 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HF3rJS045111; Sat, 17 Jul 2004 15:03:53 GMT (envelope-from stefanf) Message-Id: <200407171503.i6HF3rJS045111@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 17 Jul 2004 15:03: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/lib/msun/src math.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, 17 Jul 2004 15:03:53 -0000 stefanf 2004-07-17 15:03:52 UTC FreeBSD src repository Modified files: lib/msun/src math.h Log: Fix minor namespace pollution: The prototypes for f{dim,max,min}(), nearbyint(), round() and trunc() shouldn't be visible when compiling with -D_XOPEN_SOURCE=500. Revision Changes Path 1.42 +6 -6 src/lib/msun/src/math.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 15: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 5F3A116A4CE; Sat, 17 Jul 2004 15:14:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42CA243D1F; Sat, 17 Jul 2004 15:14:43 +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 i6HFEhlY045618; Sat, 17 Jul 2004 15:14:43 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HFEh9Z045617; Sat, 17 Jul 2004 15:14:43 GMT (envelope-from cperciva) Message-Id: <200407171514.i6HFEh9Z045617@repoman.freebsd.org> From: Colin Percival Date: Sat, 17 Jul 2004 15:14: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/share/man/man9 suser.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: Sat, 17 Jul 2004 15:14:43 -0000 cperciva 2004-07-17 15:14:43 UTC FreeBSD src repository Modified files: share/man/man9 suser.9 Log: Add a BUGS entry pointing out that the ASU flag isn't being set. This was disabled by rwatson in revision 1.60 of sys/kern/kern_prot.c in August 2000. Revision Changes Path 1.23 +7 -0 src/share/man/man9/suser.9 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 15:21: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 0CD6716A4CE; Sat, 17 Jul 2004 15:21:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3E0A43D31; Sat, 17 Jul 2004 15:21:34 +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 i6HFLY8Z045962; Sat, 17 Jul 2004 15:21:34 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HFLYB7045961; Sat, 17 Jul 2004 15:21:34 GMT (envelope-from cperciva) Message-Id: <200407171521.i6HFLYB7045961@repoman.freebsd.org> From: Colin Percival Date: Sat, 17 Jul 2004 15:21: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/share/man/man9 suser.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: Sat, 17 Jul 2004 15:21:35 -0000 cperciva 2004-07-17 15:21:34 UTC FreeBSD src repository Modified files: share/man/man9 suser.9 Log: Document the SUSER_RUID flag. Reminded by: pjd Revision Changes Path 1.24 +14 -2 src/share/man/man9/suser.9 From owner-cvs-src@FreeBSD.ORG Sat Jul 17 16:06: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 173E316A4CE; Sat, 17 Jul 2004 16:06:59 +0000 (GMT) Received: from av3-1-sn3.vrr.skanova.net (av3-1-sn3.vrr.skanova.net [81.228.9.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDE1943D2D; Sat, 17 Jul 2004 16:06:58 +0000 (GMT) (envelope-from daniel_k_eriksson@telia.com) Received: by av3-1-sn3.vrr.skanova.net (Postfix, from userid 502) id 29F4C37F6B; Sat, 17 Jul 2004 18:06:58 +0200 (CEST) Received: from smtp1-2-sn3.vrr.skanova.net (smtp1-2-sn3.vrr.skanova.net [81.228.9.178]) by av3-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 1A41137E45; Sat, 17 Jul 2004 18:06:58 +0200 (CEST) Received: from gadget (h130n1fls11o822.telia.com [213.64.66.130]) by smtp1-2-sn3.vrr.skanova.net (Postfix) with ESMTP id EEF6C38002; Sat, 17 Jul 2004 18:06:57 +0200 (CEST) From: "Daniel Eriksson" To: =?iso-8859-1?Q?'S=F8ren_Schmidt'?= , Date: Sat, 17 Jul 2004 18:06:59 +0200 Organization: Home Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 In-Reply-To: <200407171448.i6HEmkMp044631@repoman.freebsd.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Importance: Normal Subject: RE: 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: Sat, 17 Jul 2004 16:06:59 -0000 S=F8ren Schmidt wrote: > Modified files: > sys/dev/ata ata-chipset.c=20 > Log: > Dont set "address setup timing" on newer VIA chips. > =20 > closes PR: 69180 FYI: I have been running a system with one of the listed controllers for quite a while, so not all versions of the controller are affected. Here's a few lines from my dmesg. It has worked with both 5.2.1-RELENG = and 5-CURRENT. FreeBSD 5.2-CURRENT #0: Fri Jul 16 08:04:28 CEST 2004 [...] ACPI APIC Table: [...] atapci5: port 0x3800-0x380f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 irq 20 at device 15.1 = on pci0 ata0: at 0x1f0 irq 14 on atapci5 ata1: at 0x170 irq 15 on atapci5 [...] ad0: 114473MB [232581/16/63] at ata0-master UDMA100 ad1: 114473MB [232581/16/63] at ata0-slave UDMA100 ad2: 117800MB [239340/16/63] at ata1-master UDMA100 ad3: 117800MB [239340/16/63] at ata1-slave UDMA100 /Daniel Eriksson From owner-cvs-src@FreeBSD.ORG Sat Jul 17 16:32: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 7B02916A4CE for ; Sat, 17 Jul 2004 16:32:25 +0000 (GMT) Received: from spider.deepcore.dk (cpe.atm2-0-53484.0x50a6c9a6.abnxx9.customer.tele.dk [80.166.201.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id D45E143D2F for ; Sat, 17 Jul 2004 16:32:24 +0000 (GMT) (envelope-from sos@DeepCore.dk) Received: from [192.168.0.132] ([192.168.0.132]) by spider.deepcore.dk (8.12.11/8.12.10) with ESMTP id i6HGWHi5056352; Sat, 17 Jul 2004 18:32:22 +0200 (CEST) (envelope-from sos@DeepCore.dk) Message-ID: <40F9548A.9050205@DeepCore.dk> Date: Sat, 17 Jul 2004 18:32:10 +0200 From: =?ISO-8859-1?Q?S=F8ren_Schmidt?= User-Agent: Mozilla Thunderbird 0.7.1 (X11/20040711) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Daniel Eriksson References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-mail-scanned: by DeepCore Virus & Spam killer v1.4 cc: cvs-src@FreeBSD.ORG Subject: Re: 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: Sat, 17 Jul 2004 16:32:25 -0000 Daniel Eriksson wrote: > Søren Schmidt wrote: > > >> Modified files: >> sys/dev/ata ata-chipset.c >> Log: >> Dont set "address setup timing" on newer VIA chips. >> >> closes PR: 69180 > > > FYI: I have been running a system with one of the listed controllers for > quite a while, so not all versions of the controller are affected. Right, the problem is that there doesn't seem to be a good way to detect this, however the good ones doesn't suffer from the above, so its should be safe for all... -Søren From owner-cvs-src@FreeBSD.ORG Sat Jul 17 16:56: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 82FE216A4CE; Sat, 17 Jul 2004 16:56:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66BCB43D39; Sat, 17 Jul 2004 16:56:46 +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 i6HGuk1I051525; Sat, 17 Jul 2004 16:56:46 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HGuko5051524; Sat, 17 Jul 2004 16:56:46 GMT (envelope-from rwatson) Message-Id: <200407171656.i6HGuko5051524@repoman.freebsd.org> From: Robert Watson Date: Sat, 17 Jul 2004 16:56: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/tools/regression/sockets/accept_fd_leak Makefile accept_fd_leak.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, 17 Jul 2004 16:56:46 -0000 rwatson 2004-07-17 16:56:46 UTC FreeBSD src repository Added files: tools/regression/sockets/accept_fd_leak Makefile accept_fd_leak.c Log: Add simple regression test to detect leakage of file descriptors when accept() returns EAGAIN on a non-blocking listen socket. This is the tool I used to check that such a bug was resolved when merging accept() locking. Revision Changes Path 1.1 +11 -0 src/tools/regression/sockets/accept_fd_leak/Makefile (new) 1.1 +131 -0 src/tools/regression/sockets/accept_fd_leak/accept_fd_leak.c (new) From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:01: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 986B816A4CE; Sat, 17 Jul 2004 17:01:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A28043D41; Sat, 17 Jul 2004 17:01: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 i6HH1Pex051809; Sat, 17 Jul 2004 17:01:25 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HH1PHm051808; Sat, 17 Jul 2004 17:01:25 GMT (envelope-from rwatson) Message-Id: <200407171701.i6HH1PHm051808@repoman.freebsd.org> From: Robert Watson Date: Sat, 17 Jul 2004 17:01: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/tools/regression/security/proc_to_proc scenario.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, 17 Jul 2004 17:01:25 -0000 rwatson 2004-07-17 17:01:25 UTC FreeBSD src repository Modified files: tools/regression/security/proc_to_proc scenario.c Log: gcc now objects to a default label without any contents. Because I want to have a comment present in the default case, add a 'break' to each default case that previously had no actual statements. Revision Changes Path 1.6 +3 -1 src/tools/regression/security/proc_to_proc/scenario.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:05: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 AD2CD16A4CE; Sat, 17 Jul 2004 17:05:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 902D643D2F; Sat, 17 Jul 2004 17:05: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 i6HH5Cu4051897; Sat, 17 Jul 2004 17:05:12 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HH5CKc051896; Sat, 17 Jul 2004 17:05:12 GMT (envelope-from marcel) Message-Id: <200407171705.i6HH5CKc051896@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 17 Jul 2004 17:05:12 +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 proc_service.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, 17 Jul 2004 17:05:12 -0000 marcel 2004-07-17 17:05:12 UTC FreeBSD src repository Modified files: include proc_service.h Log: Re-implement this file, including copyright notice. Keep David Xu as copyright owner. Typical bugs fixed by this are: o various style(9) bugs, o #ifdef'd out code, o lack of comments, o missing const, o introduction of obsolete functions, o missing __BEGIN_DECLS & __END_DECLS, The major flaw in this version, that was also present in the previous version is the lack of man page. Minor flaws undoubtedly still exist. Revision Changes Path 1.2 +31 -69 src/include/proc_service.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:06: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 8F38616A4CE; Sat, 17 Jul 2004 17:06:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 897BA43D1D; Sat, 17 Jul 2004 17:06:59 +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 i6HH6xCJ052035; Sat, 17 Jul 2004 17:06:59 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HH6xvf052034; Sat, 17 Jul 2004 17:06:59 GMT (envelope-from mlaier) Message-Id: <200407171706.i6HH6xvf052034@repoman.freebsd.org> From: Max Laier Date: Sat, 17 Jul 2004 17:06:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENBSD Subject: cvs commit: src/sys/contrib/pf/net - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 17:06:59 -0000 mlaier 2004-07-17 17:06:59 UTC FreeBSD src repository src/sys/contrib/pf/net - Imported sources Update of /home/ncvs/src/sys/contrib/pf/net In directory repoman.freebsd.org:/tmp/cvs-serv51968 Log Message: Import from OpenBSD stable branch Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_5_002 U src/sys/contrib/pf/net/if_pflog.c U src/sys/contrib/pf/net/if_pflog.h U src/sys/contrib/pf/net/if_pfsync.c U src/sys/contrib/pf/net/if_pfsync.h C src/sys/contrib/pf/net/pf.c U src/sys/contrib/pf/net/pf_if.c U src/sys/contrib/pf/net/pf_ioctl.c U src/sys/contrib/pf/net/pf_norm.c U src/sys/contrib/pf/net/pf_osfp.c U src/sys/contrib/pf/net/pf_table.c U src/sys/contrib/pf/net/pfvar.h 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf/net From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:08: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 DF4B616A4CE; Sat, 17 Jul 2004 17:08:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C184C43D49; Sat, 17 Jul 2004 17:08: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 i6HH8Dho052093; Sat, 17 Jul 2004 17:08:13 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HH8DLH052092; Sat, 17 Jul 2004 17:08:13 GMT (envelope-from marcel) Message-Id: <200407171708.i6HH8DLH052092@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 17 Jul 2004 17:08: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/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, 17 Jul 2004 17:08:14 -0000 marcel 2004-07-17 17:08:13 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/libgdb fbsd-threads.c Log: o ps_pd{read|write} and ps_pt{read|write} are obsolete interface functions. Only ps_p{read|write} remains. o Remove ps_getpid. We don't need it now. Revision Changes Path 1.3 +2 -22 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17: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 DDB5C16A4CE; Sat, 17 Jul 2004 17:09:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE0443D66; Sat, 17 Jul 2004 17:09: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 i6HH9CCa052194; Sat, 17 Jul 2004 17:09:12 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HH9CE0052193; Sat, 17 Jul 2004 17:09:12 GMT (envelope-from marcel) Message-Id: <200407171709.i6HH9CE0052193@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 17 Jul 2004 17:09:12 +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/libthread_db/include thread_db.hthread_db_int.h src/lib/libthread_db/pthread pthread_db.c src/lib/libthread_db/src thread_db.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, 17 Jul 2004 17:09:13 -0000 marcel 2004-07-17 17:09:12 UTC FreeBSD src repository Modified files: lib/libthread_db/include thread_db.h thread_db_int.h lib/libthread_db/pthread pthread_db.c lib/libthread_db/src thread_db.c Log: Add the const qualifier to the prgregset_t argument for the *setregs* functions. Revision Changes Path 1.2 +1 -1 src/lib/libthread_db/include/thread_db.h 1.2 +1 -1 src/lib/libthread_db/include/thread_db_int.h 1.2 +1 -1 src/lib/libthread_db/pthread/pthread_db.c 1.2 +1 -1 src/lib/libthread_db/src/thread_db.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:12: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 3E41E16A4CE; Sat, 17 Jul 2004 17:12:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 220C543D1F; Sat, 17 Jul 2004 17:12:16 +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 i6HHCGYt052356; Sat, 17 Jul 2004 17:12:16 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HHCFki052355; Sat, 17 Jul 2004 17:12:15 GMT (envelope-from rwatson) Message-Id: <200407171712.i6HHCFki052355@repoman.freebsd.org> From: Robert Watson Date: Sat, 17 Jul 2004 17:12: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/tools/regression/netatalk/simple_send Makefile simple_send.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, 17 Jul 2004 17:12:16 -0000 rwatson 2004-07-17 17:12:15 UTC FreeBSD src repository Added files: tools/regression/netatalk/simple_send Makefile simple_send.c Log: Add a simple tool to bind netatalk sockets and perform send operations. This isn't a classic regression test in that it doesn't have a notion of pass fail, it's more of an exercise tool. It attempts to exercise unbound, bound, unconnected, and connected variations on SOCK_DGRAM sockets. Revision Changes Path 1.1 +8 -0 src/tools/regression/netatalk/simple_send/Makefile (new) 1.1 +162 -0 src/tools/regression/netatalk/simple_send/simple_send.c (new) From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:15: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 4D6F416A4CE; Sat, 17 Jul 2004 17:15:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30F5143D5E; Sat, 17 Jul 2004 17:15:16 +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 i6HHFGB1052458; Sat, 17 Jul 2004 17:15:16 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HHFGXJ052457; Sat, 17 Jul 2004 17:15:16 GMT (envelope-from mlaier) Message-Id: <200407171715.i6HHFGXJ052457@repoman.freebsd.org> From: Max Laier Date: Sat, 17 Jul 2004 17:15: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/sys/contrib/pf/net pf.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, 17 Jul 2004 17:15:16 -0000 mlaier 2004-07-17 17:15:16 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf.c Log: Merge in a stable fix from OpenBSD: MFC: Fix by dhartmei@ change pf_route() loop detection: introduce a counter (number of times a packet is routed already) in the mbuf tag, allow at most four times. Fixes some legitimate cases broken by the previous change. Reviewed by: dhartmei Revision Changes Path 1.13 +63 -52 src/sys/contrib/pf/net/pf.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 17:16: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 E823F16A4CE; Sat, 17 Jul 2004 17:16:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC92743D1F; Sat, 17 Jul 2004 17:16:16 +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 i6HHGGxb052538; Sat, 17 Jul 2004 17:16:16 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HHGGIi052537; Sat, 17 Jul 2004 17:16:16 GMT (envelope-from rwatson) Message-Id: <200407171716.i6HHGGIi052537@repoman.freebsd.org> From: Robert Watson Date: Sat, 17 Jul 2004 17:16: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/tools/regression/netatalk/simple_send simple_send.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, 17 Jul 2004 17:16:17 -0000 rwatson 2004-07-17 17:16:16 UTC FreeBSD src repository Modified files: tools/regression/netatalk/simple_send simple_send.c Log: Explicitly specify ATPROTO_DDP constant rather than '0' when binding a netatalk socket. No functional change. Revision Changes Path 1.2 +1 -1 src/tools/regression/netatalk/simple_send/simple_send.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 18:21: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 B62D816A4CE; Sat, 17 Jul 2004 18:21:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABB043D54; Sat, 17 Jul 2004 18:21: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 i6HIL044054328; Sat, 17 Jul 2004 18:21:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HIL0ud054327; Sat, 17 Jul 2004 18:21:00 GMT (envelope-from kientzle) Message-Id: <200407171821.i6HIL0ud054327@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 17 Jul 2004 18:21: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/usr.bin/tar bsdtar.c bsdtar.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, 17 Jul 2004 18:21:00 -0000 kientzle 2004-07-17 18:21:00 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h Log: Remove unused user_uname variable. Add range-checking to argument of -b. Thanks to: Tim J Robbins Revision Changes Path 1.40 +8 -15 src/usr.bin/tar/bsdtar.c 1.16 +0 -1 src/usr.bin/tar/bsdtar.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 19:19: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 3AFDD16A4CE; Sat, 17 Jul 2004 19:19:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F3C543D48; Sat, 17 Jul 2004 19:19:37 +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 i6HJJbqD056866; Sat, 17 Jul 2004 19:19:37 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HJJaeB056865; Sat, 17 Jul 2004 19:19:37 GMT (envelope-from alfred) Message-Id: <200407171919.i6HJJaeB056865@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 19:19: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/usr.bin/truss extern.h main.c syscalls.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, 17 Jul 2004 19:19:37 -0000 alfred 2004-07-17 19:19:36 UTC FreeBSD src repository Modified files: usr.bin/truss extern.h main.c syscalls.c Log: When reporting reciept of a signal, print the signal's name. Revision Changes Path 1.9 +1 -0 src/usr.bin/truss/extern.h 1.38 +23 -1 src/usr.bin/truss/main.c 1.41 +2 -6 src/usr.bin/truss/syscalls.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 19:44: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 B5D9816A4CE; Sat, 17 Jul 2004 19:44:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B083243D39; Sat, 17 Jul 2004 19:44:13 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HJiD0S057564; Sat, 17 Jul 2004 19:44:13 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HJiDJM057563; Sat, 17 Jul 2004 19:44:13 GMT (envelope-from dwmalone) Message-Id: <200407171944.i6HJiDJM057563@repoman.freebsd.org> From: David Malone Date: Sat, 17 Jul 2004 19:44: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/netinet tcp_syncache.c tcp_var.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, 17 Jul 2004 19:44:13 -0000 dwmalone 2004-07-17 19:44:13 UTC FreeBSD src repository Modified files: sys/netinet tcp_syncache.c tcp_var.h Log: The tcp syncache code was leaving the IPv6 flowlabel uninitialised for the SYN|ACK packet and then letting in6_pcbconnect set the flowlabel later. Arange for the syncache/syncookie code to set and recall the flow label so that the flowlabel used for the SYN|ACK is consistent. This is done by using some of the cookie (when tcp cookies are enabeled) and by stashing the flowlabel in syncache. Tested and Discovered by: Orla McGann Approved by: ume, silby MFC after: 1 month Revision Changes Path 1.61 +31 -6 src/sys/netinet/tcp_syncache.c 1.108 +1 -0 src/sys/netinet/tcp_var.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 19:47: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 AAF9716A4CE; Sat, 17 Jul 2004 19:47:42 +0000 (GMT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 5A64543D2D; Sat, 17 Jul 2004 19:47:41 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Jul 2004 20:47:40 +0100 (BST) Date: Sat, 17 Jul 2004 20:47:40 +0100 From: David Malone To: David Malone Message-ID: <20040717194740.GA89030@walton.maths.tcd.ie> References: <200407171944.i6HJiDJM057563@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407171944.i6HJiDJM057563@repoman.freebsd.org> User-Agent: Mutt/1.5.3i Sender: dwmalone@maths.tcd.ie cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c tcp_var.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, 17 Jul 2004 19:47:42 -0000 On Sat, Jul 17, 2004 at 07:44:13PM +0000, David Malone wrote: > dwmalone 2004-07-17 19:44:13 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_syncache.c tcp_var.h I forgot to mention, that on i386 this adds 4 bytes to the size of a syncache entry (104->108). On amd64 it actually remains the same size 'cos of padding in the syncache structure. Since nothing has increased over a power-of-two boundry, I don't think this will result in any problems. David. From owner-cvs-src@FreeBSD.ORG Sat Jul 17 19: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 AD0A216A4CE; Sat, 17 Jul 2004 19:48:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A741043D2D; Sat, 17 Jul 2004 19:48:49 +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 i6HJmnus057750; Sat, 17 Jul 2004 19:48:49 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HJmnE1057749; Sat, 17 Jul 2004 19:48:49 GMT (envelope-from alfred) Message-Id: <200407171948.i6HJmnE1057749@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 19: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/usr.bin/truss alpha-fbsd.c amd64-fbsd.c i386-fbsd.c i386-linux.c ia64-fbsd.c sparc64-fbsd.c syscall.h syscalls.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, 17 Jul 2004 19:48:49 -0000 alfred 2004-07-17 19:48:49 UTC FreeBSD src repository Modified files: usr.bin/truss alpha-fbsd.c amd64-fbsd.c i386-fbsd.c i386-linux.c ia64-fbsd.c sparc64-fbsd.c syscall.h syscalls.c Log: Support readlink(2) better. Readlink does not nul terminate the result buffer, so we need to format it ourselves. The problem is that the length is stored as the return value from readlink, so we need to pass the return value from our syscall into print_arg. Motivated by: truss garbage on my screen from reading /etc/malloc.conf. Revision Changes Path 1.18 +2 -2 src/usr.bin/truss/alpha-fbsd.c 1.3 +2 -2 src/usr.bin/truss/amd64-fbsd.c 1.22 +2 -2 src/usr.bin/truss/i386-fbsd.c 1.23 +2 -2 src/usr.bin/truss/i386-linux.c 1.7 +2 -2 src/usr.bin/truss/ia64-fbsd.c 1.7 +2 -2 src/usr.bin/truss/sparc64-fbsd.c 1.15 +2 -2 src/usr.bin/truss/syscall.h 1.42 +14 -2 src/usr.bin/truss/syscalls.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20:00: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 4033616A4CE; Sat, 17 Jul 2004 20:00:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22D9F43D46; Sat, 17 Jul 2004 20:00:46 +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 i6HK0k4X058063; Sat, 17 Jul 2004 20:00:46 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HK0jZG058062; Sat, 17 Jul 2004 20:00:45 GMT (envelope-from alfred) Message-Id: <200407172000.i6HK0jZG058062@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 20:00: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 MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 20:00:46 -0000 alfred 2004-07-17 20:00:45 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: Explain that for nfs, rpc.lockd and truss I am just noting that I _can_ and would like to review changes if desired. Maintain my strict lock on libc/rpc. Revision Changes Path 1.94 +3 -2 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20:10: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 B76A016A4CE; Sat, 17 Jul 2004 20:10:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99E1E43D39; Sat, 17 Jul 2004 20:10:23 +0000 (GMT) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HKANq9058544; Sat, 17 Jul 2004 20:10:23 GMT (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HKAN6F058543; Sat, 17 Jul 2004 20:10:23 GMT (envelope-from johan) Message-Id: <200407172010.i6HKAN6F058543@repoman.freebsd.org> From: Johan Karlsson Date: Sat, 17 Jul 2004 20:10: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/usr.bin/hexdump 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, 17 Jul 2004 20:10:23 -0000 johan 2004-07-17 20:10:23 UTC FreeBSD src repository Modified files: usr.bin/hexdump Makefile Log: Revert WARNS bump until I figure out why this does not work. Revision Changes Path 1.8 +0 -1 src/usr.bin/hexdump/Makefile From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20:14: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 B499C16A4CE; Sat, 17 Jul 2004 20:14:56 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16CFB43D41; Sat, 17 Jul 2004 20:14:56 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i6HKEs2T069191; Sat, 17 Jul 2004 22:14:54 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i6HKEs4k069190; Sat, 17 Jul 2004 22:14:54 +0200 (CEST) (envelope-from k) Date: Sat, 17 Jul 2004 22:14:54 +0200 From: Johan Karlsson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040717201454.GA45542@numeri.campus.luth.se> References: <200407172010.i6HKAN6F058543@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407172010.i6HKAN6F058543@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Subject: Re: cvs commit: src/usr.bin/hexdump 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, 17 Jul 2004 20:14:56 -0000 On Sat, Jul 17, 2004 at 20:10 (+0000), Johan Karlsson wrote: > johan 2004-07-17 20:10:23 UTC > > FreeBSD src repository > > Modified files: > usr.bin/hexdump Makefile > Log: > Revert WARNS bump until I figure out why this does not work. I just do not understand, it still compiles for me without any errors. I will look into this a bit more. Sorry for the breakage :-( /Johan K > > Revision Changes Path > 1.8 +0 -1 src/usr.bin/hexdump/Makefile -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20:22: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 4D0F816A4CE; Sat, 17 Jul 2004 20:22:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E1B243D5D; Sat, 17 Jul 2004 20:22:25 +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 i6HKMOrb058882; Sat, 17 Jul 2004 20:22:24 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HKMOnK058881; Sat, 17 Jul 2004 20:22:24 GMT (envelope-from alfred) Message-Id: <200407172022.i6HKMOnK058881@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 20:22: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 MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 17 Jul 2004 20:22:25 -0000 alfred 2004-07-17 20:22:24 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: s/manditory/mandatory Obtained from: Ceri Davies Revision Changes Path 1.95 +3 -3 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20: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 4D52216A4CE; Sat, 17 Jul 2004 20:25:02 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7DF243D2F; Sat, 17 Jul 2004 20:25:01 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i6HKP0bH069355; Sat, 17 Jul 2004 22:25:00 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i6HKP0Gb069354; Sat, 17 Jul 2004 22:25:00 +0200 (CEST) (envelope-from k) Date: Sat, 17 Jul 2004 22:25:00 +0200 From: Johan Karlsson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040717202500.GB45542@numeri.campus.luth.se> References: <200407172010.i6HKAN6F058543@repoman.freebsd.org> <20040717201454.GA45542@numeri.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040717201454.GA45542@numeri.campus.luth.se> User-Agent: Mutt/1.4.2.1i Subject: Re: cvs commit: src/usr.bin/hexdump 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, 17 Jul 2004 20:25:02 -0000 On Sat, Jul 17, 2004 at 22:14 (+0200), Johan Karlsson wrote: > On Sat, Jul 17, 2004 at 20:10 (+0000), Johan Karlsson wrote: > > johan 2004-07-17 20:10:23 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.bin/hexdump Makefile > > Log: > > Revert WARNS bump until I figure out why this does not work. > > I just do not understand, it still compiles for me without any errors. And now I've at least figured out why it does not break for me. Yes I will start to use -O2 when building world. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Jul 17 20:57: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 E83C816A4CE; Sat, 17 Jul 2004 20:57:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA85843D2D; Sat, 17 Jul 2004 20:57:37 +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 i6HKvbYD059940; Sat, 17 Jul 2004 20:57:37 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HKvbIr059939; Sat, 17 Jul 2004 20:57:37 GMT (envelope-from marcel) Message-Id: <200407172057.i6HKvbIr059939@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 17 Jul 2004 20:57: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 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, 17 Jul 2004 20:57:38 -0000 marcel 2004-07-17 20:57:37 UTC FreeBSD src repository Modified files: . Makefile Log: Properly terminate a quoted string in the previous commit. Oddly enough this only seems to cause problems with -jX so went unnoticed until now. Revision Changes Path 1.302 +1 -1 src/Makefile From owner-cvs-src@FreeBSD.ORG Sat Jul 17 21:06: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 044CE16A4CE; Sat, 17 Jul 2004 21:06:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB8C543D4C; Sat, 17 Jul 2004 21:06:36 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HL6aeq060331; Sat, 17 Jul 2004 21:06:36 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HL6aYi060330; Sat, 17 Jul 2004 21:06:36 GMT (envelope-from dwmalone) Message-Id: <200407172106.i6HL6aYi060330@repoman.freebsd.org> From: David Malone Date: Sat, 17 Jul 2004 21:06: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/compat/linux linux_socket.c src/sys/kern uipc_syscalls.c src/sys/sys syscallsubr.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, 17 Jul 2004 21:06:37 -0000 dwmalone 2004-07-17 21:06:36 UTC FreeBSD src repository Modified files: sys/compat/linux linux_socket.c sys/kern uipc_syscalls.c sys/sys syscallsubr.h Log: Add a kern_setsockopt and kern_getsockopt which can read the option values from either user land or from the kernel. Use them for [gs]etsockopt and to clean up some calls to [gs]etsockopt in the Linux emulation code that uses the stackgap. Revision Changes Path 1.48 +17 -63 src/sys/compat/linux/linux_socket.c 1.199 +87 -35 src/sys/kern/uipc_syscalls.c 1.11 +5 -0 src/sys/sys/syscallsubr.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 21:13: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 7BD3F16A4CE; Sat, 17 Jul 2004 21:13:59 +0000 (GMT) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E2C143D2F; Sat, 17 Jul 2004 21:13:59 +0000 (GMT) (envelope-from flata@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1212) id 4E08FDA874; Sat, 17 Jul 2004 14:13:59 -0700 (PDT) Date: Sat, 17 Jul 2004 11:13:59 -1000 From: juli mallett To: David Malone Message-ID: <20040717211359.GA25401@toxic.magnesium.net> References: <200407172106.i6HL6aYi060330@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407172106.i6HL6aYi060330@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Towel: Yes cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linux linux_socket.c src/sys/kern uipc_syscalls.c src/sys/sys syscallsubr.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, 17 Jul 2004 21:13:59 -0000 * David Malone [ Date: 2004-07-17 ] [ w.r.t. cvs commit: src/sys/compat/linux linux_socket.c src/sys/kern uipc_syscalls.c src/sys/sys syscallsubr.h ] > dwmalone 2004-07-17 21:06:36 UTC > > FreeBSD src repository > > Modified files: > sys/compat/linux linux_socket.c > sys/kern uipc_syscalls.c > sys/sys syscallsubr.h > Log: > Add a kern_setsockopt and kern_getsockopt which can read the option > values from either user land or from the kernel. Use them for > [gs]etsockopt and to clean up some calls to [gs]etsockopt in the > Linux emulation code that uses the stackgap. Thank you VERY much! -- juli mallett. email: flata@toxic.magnesium.net jmallett@freebsd.org mobile: aim: hip flata. stationary: aim: aim flata, y! juli mallett freebsd networking and systems dev/engineer -- adrift in the pacific From owner-cvs-src@FreeBSD.ORG Sat Jul 17 21:39: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 8A4FB16A4CE; Sat, 17 Jul 2004 21:39:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C58243D58; Sat, 17 Jul 2004 21:39:15 +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 i6HLdFJi061348; Sat, 17 Jul 2004 21:39:15 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HLdF22061347; Sat, 17 Jul 2004 21:39:15 GMT (envelope-from maxim) Message-Id: <200407172139.i6HLdF22061347@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 17 Jul 2004 21:39:15 +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/usr.bin/limits limits.1 limits.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, 17 Jul 2004 21:39:15 -0000 maxim 2004-07-17 21:39:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/limits limits.1 limits.c Log: MFC rev. 1.13 limits.c and rev. 1.25 limits.1: Update the usage string in the limits(1) manpage to include -b for sbsize. Also, correct the format string in getopt(3) usage to reflect that -b takes an argument, and correct another case of RLIMIT_SBSIZE having been forgotten. Revision Changes Path 1.14.2.11 +4 -4 src/usr.bin/limits/limits.1 1.7.2.4 +2 -1 src/usr.bin/limits/limits.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 21:40: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 E829B16A4CE; Sat, 17 Jul 2004 21:40:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBB3D43D2D; Sat, 17 Jul 2004 21:40:14 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6HLeEZl061392; Sat, 17 Jul 2004 21:40:14 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HLeEbX061391; Sat, 17 Jul 2004 21:40:14 GMT (envelope-from dwmalone) Message-Id: <200407172140.i6HLeEbX061391@repoman.freebsd.org> From: David Malone Date: Sat, 17 Jul 2004 21:40: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/netinet tcp_syncache.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, 17 Jul 2004 21:40:15 -0000 dwmalone 2004-07-17 21:40:14 UTC FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: Fix the !INET6 build. Reported by: alc Revision Changes Path 1.62 +4 -0 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 22:20: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 92B0016A4CE; Sat, 17 Jul 2004 22:20:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753C243D53; Sat, 17 Jul 2004 22:20:53 +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 i6HMKrwI062521; Sat, 17 Jul 2004 22:20:53 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HMKrji062520; Sat, 17 Jul 2004 22:20:53 GMT (envelope-from alc) Message-Id: <200407172220.i6HMKrji062520@repoman.freebsd.org> From: Alan Cox Date: Sat, 17 Jul 2004 22:20: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/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: Sat, 17 Jul 2004 22:20:53 -0000 alc 2004-07-17 22:20:53 UTC FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: - Utilize pmap_pte_quick() rather than pmap_pte() in pmap_remove() and pmap_remove_page(). The reason being that pmap_pte_quick() requires the page queues lock, which is already held, rather than Giant. - Assert that the page queues lock is held in pmap_remove_page() and pmap_remove_pte(). Revision Changes Path 1.486 +4 -2 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 23: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 4676216A4CE; Sat, 17 Jul 2004 23:15:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2988043D2D; Sat, 17 Jul 2004 23:15:42 +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 i6HNFg6q064855; Sat, 17 Jul 2004 23:15:42 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HNFgfO064854; Sat, 17 Jul 2004 23:15:42 GMT (envelope-from davidxu) Message-Id: <200407172315.i6HNFgfO064854@repoman.freebsd.org> From: David Xu Date: Sat, 17 Jul 2004 23: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/kern sys_process.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, 17 Jul 2004 23:15:42 -0000 davidxu 2004-07-17 23:15:42 UTC FreeBSD src repository Modified files: sys/kern sys_process.c Log: Fix typo. Revision Changes Path 1.124 +1 -1 src/sys/kern/sys_process.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 23:44: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 B2E7916A4CE; Sat, 17 Jul 2004 23:44:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 966A743D1D; Sat, 17 Jul 2004 23:44: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 i6HNix5f065650; Sat, 17 Jul 2004 23:44:59 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HNixHU065649; Sat, 17 Jul 2004 23:44:59 GMT (envelope-from alc) Message-Id: <200407172344.i6HNixHU065649@repoman.freebsd.org> From: Alan Cox Date: Sat, 17 Jul 2004 23:44: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/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: Sat, 17 Jul 2004 23:44:59 -0000 alc 2004-07-17 23:44:59 UTC FreeBSD src repository Modified files: sys/i386/i386 pmap.c Log: Remedy my omission of one change in the prevision revision: pmap_remove() must pin the current thread in order to call pmap_pte_quick(). Revision Changes Path 1.487 +3 -0 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Jul 17 23:53: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 B55A316A4CE; Sat, 17 Jul 2004 23:53:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EF3943D68; Sat, 17 Jul 2004 23:53:38 +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 i6HNrbxB065968; Sat, 17 Jul 2004 23:53:37 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HNrbsj065967; Sat, 17 Jul 2004 23:53:37 GMT (envelope-from alfred) Message-Id: <200407172353.i6HNrbsj065967@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 23:53: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/sys resourcevar.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, 17 Jul 2004 23:53:38 -0000 alfred 2004-07-17 23:53:37 UTC FreeBSD src repository Modified files: sys/sys resourcevar.h Log: Change named parameters from max (which conflicts with a macro in libkern.h) to maxval. Revision Changes Path 1.44 +2 -2 src/sys/sys/resourcevar.h From owner-cvs-src@FreeBSD.ORG Sat Jul 17 23:56: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 4905116A4CE; Sat, 17 Jul 2004 23:56:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A90D43D39; Sat, 17 Jul 2004 23:56:25 +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 i6HNuPvp066090; Sat, 17 Jul 2004 23:56:25 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6HNuPjm066089; Sat, 17 Jul 2004 23:56:25 GMT (envelope-from alfred) Message-Id: <200407172356.i6HNuPjm066089@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 17 Jul 2004 23:56: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/sys mount.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, 17 Jul 2004 23:56:25 -0000 alfred 2004-07-17 23:56:25 UTC FreeBSD src repository Modified files: sys/sys mount.h Log: Fix macro so that we don't get missing initializer warnings. Revision Changes Path 1.171 +3 -1 src/sys/sys/mount.h