From owner-cvs-src@FreeBSD.ORG Sun Jun 17 00:09:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F24D816A41F; Sun, 17 Jun 2007 00:09:51 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CA34313C43E; Sun, 17 Jun 2007 00:09:51 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H09pDk078685; Sun, 17 Jun 2007 00:09:51 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H09pVb078681; Sun, 17 Jun 2007 00:09:51 GMT (envelope-from gallatin) Message-Id: <200706170009.l5H09pVb078681@repoman.freebsd.org> From: Andrew Gallatin Date: Sun, 17 Jun 2007 00:09:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mxge if_mxge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 00:09:52 -0000 gallatin 2007-06-17 00:09:51 UTC FreeBSD src repository Modified files: sys/dev/mxge if_mxge.c Log: Also mark writecombine as enabled when PAT is used to enable it rather than MTRRs. Revision Changes Path 1.38 +2 -2 src/sys/dev/mxge/if_mxge.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 00:17:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE0B316A400; Sun, 17 Jun 2007 00:17:16 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DBF7C13C458; Sun, 17 Jun 2007 00:17:16 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H0HGBR093799; Sun, 17 Jun 2007 00:17:16 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H0HGdi093777; Sun, 17 Jun 2007 00:17:16 GMT (envelope-from marius) Message-Id: <200706170017.l5H0HGdi093777@repoman.freebsd.org> From: Marius Strobl Date: Sun, 17 Jun 2007 00:17:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/ofw/common main.c src/sys/boot/ofw/libofw Makefile ofw_console.c ofw_net.c openfirm.c openfirm.h openfirm_mmu.c src/sys/boot/sparc64/loader main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 00:17:17 -0000 marius 2007-06-17 00:17:16 UTC FreeBSD src repository Modified files: sys/boot/ofw/common main.c sys/boot/ofw/libofw Makefile ofw_console.c ofw_net.c openfirm.c openfirm.h sys/boot/sparc64/loader main.c Removed files: sys/boot/ofw/libofw openfirm_mmu.c Log: - Make better use of the global chosen, memory and mmu handles instead of obtaining them over and over again and pretending we could do anything useful without them (for chosen this includes adding a declaration and initializing it in OF_init()). - In OF_init() if obtaining the memory or mmu handle fails just call OF_exit() instead of panic() as the loader hasn't initialized the console at these early stages yet and trying to print out something causes a hang. With OF_exit() one at least has a change to get back to the OFW boot monitor and debug the problem. - Fix OF_call_method() on 64-bit machines (this is a merge of sys/dev/ofw/openfirm.c rev 1.6). - Replace OF_alloc_phys(), OF_claim_virt(), OF_map_phys() and OF_release_phys() in the MI part of the loader with wrappers around OF_call_method() in the sparc64. Beside the fact that they duplicate OF_call_method() the formers should never have been in the MI part of the loader as contrary to the OFW spec they use two-cell physical addresses. - Remove unused functions which are also MD dupes of OF_call_method(). - In sys/boot/sparc64/loader/main.c add __func__ to panic strings as different functions use otherwise identical panic strings and make some of the panic strings a tad more user-friendly instead of just mentioning the name of the function that returned an unexpected result. Revision Changes Path 1.9 +4 -8 src/sys/boot/ofw/common/main.c 1.11 +1 -1 src/sys/boot/ofw/libofw/Makefile 1.12 +0 -5 src/sys/boot/ofw/libofw/ofw_console.c 1.11 +1 -2 src/sys/boot/ofw/libofw/ofw_net.c 1.15 +11 -112 src/sys/boot/ofw/libofw/openfirm.c 1.11 +1 -10 src/sys/boot/ofw/libofw/openfirm.h 1.2 +0 -143 src/sys/boot/ofw/libofw/openfirm_mmu.c (dead) 1.32 +78 -52 src/sys/boot/sparc64/loader/main.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 00:31:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62A8916A41F; Sun, 17 Jun 2007 00:31:25 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3AC3613C448; Sun, 17 Jun 2007 00:31:25 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H0VPXf012630; Sun, 17 Jun 2007 00:31:25 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H0VPJh012613; Sun, 17 Jun 2007 00:31:25 GMT (envelope-from mjacob) Message-Id: <200706170031.l5H0VPJh012613@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 00:31:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet in.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 00:31:25 -0000 mjacob 2007-06-17 00:31:24 UTC FreeBSD src repository Modified files: sys/netinet in.c Log: Simplification to quiet a gcc4.2 warning. Just by setting match.s_addr to nonzero you fulfill the same function as the variable 'cmp'. so you might as well zero match and test against it later. Reviewed by: timeout on review request Revision Changes Path 1.101 +9 -14 src/sys/netinet/in.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 00:33:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED1AF16A469; Sun, 17 Jun 2007 00:33:35 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C4A4213C44B; Sun, 17 Jun 2007 00:33:35 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H0XZLS016155; Sun, 17 Jun 2007 00:33:35 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H0XZQq016126; Sun, 17 Jun 2007 00:33:35 GMT (envelope-from mjacob) Message-Id: <200706170033.l5H0XZQq016126@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 00:33:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_dummynet.c ip_dummynet.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 00:33:36 -0000 mjacob 2007-06-17 00:33:34 UTC FreeBSD src repository Modified files: sys/netinet ip_dummynet.c ip_dummynet.h Log: Replace incorrect local OFFSET_OF macro with the correct and generic offsetof macro. Revision Changes Path 1.107 +1 -1 src/sys/netinet/ip_dummynet.c 1.40 +0 -5 src/sys/netinet/ip_dummynet.h From owner-cvs-src@FreeBSD.ORG Sun Jun 17 00:43:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 805CC16A41F; Sun, 17 Jun 2007 00:43:51 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 566D513C469; Sun, 17 Jun 2007 00:43:51 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H0hpeO027950; Sun, 17 Jun 2007 00:43:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H0hpOm027946; Sun, 17 Jun 2007 00:43:51 GMT (envelope-from delphij) Message-Id: <200706170043.l5H0hpOm027946@repoman.freebsd.org> From: Xin LI Date: Sun, 17 Jun 2007 00:43:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/usr.bin/diff context.c.diff X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 00:43:51 -0000 delphij 2007-06-17 00:43:50 UTC FreeBSD src repository Modified files: gnu/usr.bin/diff context.c.diff Log: Fix build on arm: time_t on arm is 64 bits while long is 32 bits, so subsequent compile time assertion: sizeof inf->stat.st_mtime <= sizeof sec Would fail because of that. This change is suitable for general consumption as well, but fix it in our local patchset as we are near a code freeze. Submitted by: cognet Revision Changes Path 1.2 +10 -3 src/gnu/usr.bin/diff/context.c.diff From owner-cvs-src@FreeBSD.ORG Sun Jun 17 01:36:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1ED0016A41F; Sun, 17 Jun 2007 01:36:03 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0E64013C457; Sun, 17 Jun 2007 01:36:03 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H1a2aJ096864; Sun, 17 Jun 2007 01:36:02 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H1a29d096860; Sun, 17 Jun 2007 01:36:02 GMT (envelope-from rrs) Message-Id: <200706170136.l5H1a29d096860@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 01:36:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_input.c sctp_output.c sctp_pcb.c src/sys/netinet6 sctp6_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 01:36:03 -0000 rrs 2007-06-17 01:36:02 UTC FreeBSD src repository Modified files: sys/netinet sctp_input.c sctp_output.c sctp_pcb.c sys/netinet6 sctp6_usrreq.c Log: - For sctp_input/sctp6_input add announcment when a packet arrives (debug) - re-factor the packet drop in sctp_output a bit more, we don't need the trim after all, but the size calc is now corrected. - When a assoc is in the COOKIE-ECHO/COOKIE-WAIT state and the user closes, it should not matter if data is queued, the assoc should be purged. - In error leg a missing free_chunk when iph comes in NULL (should not happen but just in case). Revision Changes Path 1.43 +2 -0 src/sys/netinet/sctp_input.c 1.41 +3 -4 src/sys/netinet/sctp_output.c 1.42 +2 -4 src/sys/netinet/sctp_pcb.c 1.29 +3 -0 src/sys/netinet6/sctp6_usrreq.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 01:57:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9D1616A468; Sun, 17 Jun 2007 01:57:09 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8118013C447; Sun, 17 Jun 2007 01:57:09 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H1v9wq028418; Sun, 17 Jun 2007 01:57:09 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H1v96d028384; Sun, 17 Jun 2007 01:57:09 GMT (envelope-from rrs) Message-Id: <200706170157.l5H1v96d028384@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 01:57:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat sctp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 01:57:09 -0000 rrs 2007-06-17 01:57:08 UTC FreeBSD src repository Modified files: usr.bin/netstat sctp.c Log: - Forced commit to update who actually did this code (I forgot the obtained from in the original line) Obtained from: Weongyo Jeong (weongyo.jeong@gmail.com) Revision Changes Path 1.3 +1 -0 src/usr.bin/netstat/sctp.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:07:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 395C516A475; Sun, 17 Jun 2007 04:07:13 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9B47F13C4AE; Sun, 17 Jun 2007 04:07:12 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H47Cwk008097; Sun, 17 Jun 2007 04:07:12 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H47Bt3008081; Sun, 17 Jun 2007 04:07:11 GMT (envelope-from mjacob) Message-Id: <200706170407.l5H47Bt3008081@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:07:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:07:14 -0000 mjacob 2007-06-17 04:07:11 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: Make gcc4.2 happy and zero save_ip for the unlikely (blackhole != 0) codepath. Revision Changes Path 1.212 +2 -0 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:12:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 82C0F16A468; Sun, 17 Jun 2007 04:12:22 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5BD0013C469; Sun, 17 Jun 2007 04:12:22 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4CMmr016900; Sun, 17 Jun 2007 04:12:22 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4CMmE016899; Sun, 17 Jun 2007 04:12:22 GMT (envelope-from mjacob) Message-Id: <200706170412.l5H4CMmE016899@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:12:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet6 ah_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:12:22 -0000 mjacob 2007-06-17 04:12:22 UTC FreeBSD src repository Modified files: sys/netinet6 ah_output.c Log: gcc4.2 somehow doesn't believe that finaldst can stay stable between where it's initialized and where it's checked twice such that the origingal destination address is saved. Make it happier and trim things down a bit. Revision Changes Path 1.17 +3 -3 src/sys/netinet6/ah_output.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:14:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3658316A469; Sun, 17 Jun 2007 04:14:28 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0F90D13C487; Sun, 17 Jun 2007 04:14:28 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4ERov020977; Sun, 17 Jun 2007 04:14:27 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4ERuP020961; Sun, 17 Jun 2007 04:14:27 GMT (envelope-from mjacob) Message-Id: <200706170414.l5H4ERuP020961@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:14:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:14:28 -0000 mjacob 2007-06-17 04:14:27 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Initialize reqpage to zero. Revision Changes Path 1.232 +1 -1 src/sys/vm/vm_fault.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:17:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D49BA16A469; Sun, 17 Jun 2007 04:17:49 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ADA1813C468; Sun, 17 Jun 2007 04:17:49 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4HnlW025616; Sun, 17 Jun 2007 04:17:49 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4Hn29025615; Sun, 17 Jun 2007 04:17:49 GMT (envelope-from mjacob) Message-Id: <200706170417.l5H4Hn29025615@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:17:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:17:50 -0000 mjacob 2007-06-17 04:17:49 UTC FreeBSD src repository Modified files: sys/vm vm_mmap.c Log: Make sure object is NULL- there is a possible case where you could fall through to it being used w/o being set. Put a break in the default case. Revision Changes Path 1.211 +2 -1 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:19:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8E9916A41F; Sun, 17 Jun 2007 04:19:05 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B21D813C45A; Sun, 17 Jun 2007 04:19:05 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4J5qE027146; Sun, 17 Jun 2007 04:19:05 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4J5VX027145; Sun, 17 Jun 2007 04:19:05 GMT (envelope-from mjacob) Message-Id: <200706170419.l5H4J5VX027145@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:19:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_page.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 04:19:06 -0000 mjacob 2007-06-17 04:19:05 UTC FreeBSD src repository Modified files: sys/vm vm_page.c Log: Don't declare inline a function which isn't. Revision Changes Path 1.350 +1 -1 src/sys/vm/vm_page.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:21:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E15116A46E; Sun, 17 Jun 2007 04:21:59 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 362CF13C465; Sun, 17 Jun 2007 04:21:59 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4Lxna033074; Sun, 17 Jun 2007 04:21:59 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4LxXi033070; Sun, 17 Jun 2007 04:21:59 GMT (envelope-from mjacob) Message-Id: <200706170421.l5H4LxXi033070@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 busdma_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:21:59 -0000 mjacob 2007-06-17 04:21:58 UTC FreeBSD src repository Modified files: sys/amd64/amd64 busdma_machdep.c Log: Initialize lastaddr to zero to make gcc4.2 happy. Revision Changes Path 1.83 +1 -1 src/sys/amd64/amd64/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:27:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8E4416A46B; Sun, 17 Jun 2007 04:27:46 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 82C4213C465; Sun, 17 Jun 2007 04:27:46 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4RkWR048763; Sun, 17 Jun 2007 04:27:46 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4Rk1S048759; Sun, 17 Jun 2007 04:27:46 GMT (envelope-from mjacob) Message-Id: <200706170427.l5H4Rk1S048759@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:27:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:27:46 -0000 mjacob 2007-06-17 04:27:46 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c Log: Check for pte being NULL in return from pmap_pte_pde- unlikely or even impossible, but it's better ot have a panic and a quiesced gcc4.2. Revision Changes Path 1.588 +6 -0 src/sys/amd64/amd64/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:32:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AD9516A41F; Sun, 17 Jun 2007 04:32:19 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 13E0213C447; Sun, 17 Jun 2007 04:32:19 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4WIAt055222; Sun, 17 Jun 2007 04:32:18 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4WIQD055218; Sun, 17 Jun 2007 04:32:18 GMT (envelope-from mjacob) Message-Id: <200706170432.l5H4WIQD055218@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:32:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/atkbdc psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 04:32:19 -0000 mjacob 2007-06-17 04:32:18 UTC FreeBSD src repository Modified files: sys/dev/atkbdc psm.c Log: Initialize mouse resolution to zero if converting from OLD to NEW. Revision Changes Path 1.93 +2 -0 src/sys/dev/atkbdc/psm.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:33:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D174E16A468; Sun, 17 Jun 2007 04:33:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C23AA13C46E; Sun, 17 Jun 2007 04:33:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4XcrE057418; Sun, 17 Jun 2007 04:33:38 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4XcSL057411; Sun, 17 Jun 2007 04:33:38 GMT (envelope-from kmacy) Message-Id: <200706170433.l5H4XcSL057411@repoman.freebsd.org> From: Kip Macy Date: Sun, 17 Jun 2007 04:33:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_adapter.h cxgb_main.c cxgb_offload.c cxgb_sge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 04:33:38 -0000 kmacy 2007-06-17 04:33:38 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_adapter.h cxgb_main.c cxgb_offload.c cxgb_sge.c Log: - switch adapter and port lock over to using sx so that resources can be allocated atomically - add debug macros for printing lock initialization / teardown - add buffers to port_info and adapter to allow each lock to have a unique name - destroy mutexes initialized by cxgb_offload_init - remove recursive calls to ADAPTER_LOCK - move callout_drain calls so that they don't occur with the lock held - ensure that only as many qsets as are needed are initialized and destroyed MFC after: 3 days Sponsored by: Chelsio Inc. Revision Changes Path 1.12 +85 -7 src/sys/dev/cxgb/cxgb_adapter.h 1.25 +87 -62 src/sys/dev/cxgb/cxgb_main.c 1.5 +9 -1 src/sys/dev/cxgb/cxgb_offload.c 1.21 +24 -15 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:38:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AA0516A475; Sun, 17 Jun 2007 04:38:07 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3729713C45B; Sun, 17 Jun 2007 04:37:58 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4bwbB062492; Sun, 17 Jun 2007 04:37:58 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4bwKR062488; Sun, 17 Jun 2007 04:37:58 GMT (envelope-from mjacob) Message-Id: <200706170437.l5H4bwKR062488@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:37:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/freebsd32 freebsd32_misc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 04:38:08 -0000 mjacob 2007-06-17 04:37:58 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_misc.c Log: Try a cheap way to get around gcc4.2 believing that user arguments to system calls can change across intervening functions. Revision Changes Path 1.65 +6 -3 src/sys/compat/freebsd32/freebsd32_misc.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 04:40:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 243E716A469; Sun, 17 Jun 2007 04:40:37 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F133713C480; Sun, 17 Jun 2007 04:40:36 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H4eXwb065078; Sun, 17 Jun 2007 04:40:33 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H4eXdL065062; Sun, 17 Jun 2007 04:40:33 GMT (envelope-from mjacob) Message-Id: <200706170440.l5H4eXdL065062@repoman.freebsd.org> From: Matt Jacob Date: Sun, 17 Jun 2007 04:40:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/acpi_support acpi_panasonic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 04:40:37 -0000 mjacob 2007-06-17 04:40:33 UTC FreeBSD src repository Modified files: sys/dev/acpi_support acpi_panasonic.c Log: Initialize key to zero. Revision Changes Path 1.13 +1 -1 src/sys/dev/acpi_support/acpi_panasonic.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 05:14:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F29616A400; Sun, 17 Jun 2007 05:14:55 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (mail.cs.rice.edu [128.42.1.31]) by mx1.freebsd.org (Postfix) with ESMTP id D95E913C45B; Sun, 17 Jun 2007 05:14:54 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (localhost.localdomain [127.0.0.1]) by mail.cs.rice.edu (Postfix) with ESMTP id D6DC42C2AC9; Sun, 17 Jun 2007 00:14:53 -0500 (CDT) X-Virus-Scanned: by amavis-2.4.0 at mail.cs.rice.edu Received: from mail.cs.rice.edu ([127.0.0.1]) by mail.cs.rice.edu (mail.cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id wZtuLrKsK5ND; Sun, 17 Jun 2007 00:14:46 -0500 (CDT) Received: from [216.63.78.18] (adsl-216-63-78-18.dsl.hstntx.swbell.net [216.63.78.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cs.rice.edu (Postfix) with ESMTP id 039192C2AC7; Sun, 17 Jun 2007 00:14:45 -0500 (CDT) Message-ID: <4674C345.5010207@cs.rice.edu> Date: Sun, 17 Jun 2007 00:14:45 -0500 From: Alan Cox User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20070328 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matt Jacob References: <200706170417.l5H4Hn29025615@repoman.freebsd.org> In-Reply-To: <200706170417.l5H4Hn29025615@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 05:14:55 -0000 Matt Jacob wrote: >mjacob 2007-06-17 04:17:49 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_mmap.c > Log: > Make sure object is NULL- there is a possible case where you could > fall through to it being used w/o being set. Put a break in the default > case. > > Revision Changes Path > 1.211 +2 -1 src/sys/vm/vm_mmap.c > > Actually, no. handle_type is OBJT_DEFAULT only if flags has MAP_ANON set. So, object was, in fact, being initialized to NULL a few lines after the switch: if (flags & MAP_ANON) { object = NULL; In any case, I'm happy to see the warnings eliminated. Regards, Alan From owner-cvs-src@FreeBSD.ORG Sun Jun 17 05:55:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B06C116A400; Sun, 17 Jun 2007 05:55:54 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9E39D13C458; Sun, 17 Jun 2007 05:55:54 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H5ts8p085107; Sun, 17 Jun 2007 05:55:54 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H5ts0Q085105; Sun, 17 Jun 2007 05:55:54 GMT (envelope-from scottl) Message-Id: <200706170555.l5H5ts0Q085105@repoman.freebsd.org> From: Scott Long Date: Sun, 17 Jun 2007 05:55:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/aac aac_cam.c src/sys/dev/advansys advansys.c advlib.h adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c ahbreg.h src/sys/dev/aic aic.c aic_cbus.c aic_isa.c aic_pccard.c aicvar.h src/sys/dev/aic7xxx aic79xx_osm.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 05:55:54 -0000 scottl 2007-06-17 05:55:54 UTC FreeBSD src repository Modified files: sys/dev/aac aac_cam.c sys/dev/advansys advansys.c advlib.h adwcam.c sys/dev/aha aha.c sys/dev/ahb ahb.c ahbreg.h sys/dev/aic aic.c aic_cbus.c aic_isa.c aic_pccard.c aicvar.h sys/dev/aic7xxx aic79xx_osm.c aic7xxx_osm.c sys/dev/amd amd.c sys/dev/amr amr_cam.c sys/dev/arcmsr arcmsr.c sys/dev/asr asr.c sys/dev/ata atapi-cam.c sys/dev/buslogic bt.c sys/dev/ciss ciss.c sys/dev/dpt dpt.h dpt_eisa.c dpt_isa.c dpt_pci.c dpt_scsi.c sys/dev/esp ncr53c9x.c sys/dev/firewire sbp.c sbp_targ.c sys/dev/hptiop hptiop.c sys/dev/hptmv entry.c sys/dev/iir iir.c iir.h iir_pci.c sys/dev/isp isp_freebsd.c sys/dev/mfi mfi_cam.c sys/dev/mly mly.c sys/dev/mpt mpt_cam.c sys/dev/ppbus vpo.c sys/dev/rr232x osm_bsd.c sys/dev/sym sym_hipd.c sys/dev/trm trm.c sys/dev/twa tw_osl_cam.c sys/dev/usb umass.c sys/dev/wds wd7000.c sys/pci ncr.c sys/cam cam_xpt.c cam_xpt_sim.h sys/cam/scsi scsi_low.c Log: Prepare for future integration between CAM and newbus. xpt_bus_register now takes a device_t to be the parent of the bus that is being created. Most SIMs have been updated with a reasonable argument, but a few exceptions just pass NULL for now. This argument isn't used yet and the newbus integration likely won't be ready until after 7.0-RELEASE. Revision Changes Path 1.189 +3 -2 src/sys/cam/cam_xpt.c 1.9 +2 -1 src/sys/cam/cam_xpt_sim.h 1.29 +1 -1 src/sys/cam/scsi/scsi_low.c 1.28 +1 -1 src/sys/dev/aac/aac_cam.c 1.35 +1 -1 src/sys/dev/advansys/advansys.c 1.13 +1 -1 src/sys/dev/advansys/advlib.h 1.28 +1 -1 src/sys/dev/advansys/adwcam.c 1.64 +1 -1 src/sys/dev/aha/aha.c 1.42 +6 -5 src/sys/dev/ahb/ahb.c 1.6 +1 -0 src/sys/dev/ahb/ahbreg.h 1.27 +1 -1 src/sys/dev/aic/aic.c 1.13 +1 -0 src/sys/dev/aic/aic_cbus.c 1.14 +1 -0 src/sys/dev/aic/aic_isa.c 1.20 +1 -0 src/sys/dev/aic/aic_pccard.c 1.9 +1 -0 src/sys/dev/aic/aicvar.h 1.29 +1 -1 src/sys/dev/aic7xxx/aic79xx_osm.c 1.50 +3 -2 src/sys/dev/aic7xxx/aic7xxx_osm.c 1.36 +1 -1 src/sys/dev/amd/amd.c 1.22 +1 -1 src/sys/dev/amr/amr_cam.c 1.23 +1 -1 src/sys/dev/arcmsr/arcmsr.c 1.85 +1 -1 src/sys/dev/asr/asr.c 1.55 +1 -1 src/sys/dev/ata/atapi-cam.c 1.50 +1 -1 src/sys/dev/buslogic/bt.c 1.81 +2 -2 src/sys/dev/ciss/ciss.c 1.18 +1 -0 src/sys/dev/dpt/dpt.h 1.24 +1 -0 src/sys/dev/dpt/dpt_eisa.c 1.11 +1 -1 src/sys/dev/dpt/dpt_isa.c 1.37 +1 -0 src/sys/dev/dpt/dpt_pci.c 1.57 +1 -1 src/sys/dev/dpt/dpt_scsi.c 1.17 +1 -1 src/sys/dev/esp/ncr53c9x.c 1.97 +1 -1 src/sys/dev/firewire/sbp.c 1.16 +1 -1 src/sys/dev/firewire/sbp_targ.c 1.2 +1 -1 src/sys/dev/hptiop/hptiop.c 1.17 +1 -1 src/sys/dev/hptmv/entry.c 1.19 +1 -1 src/sys/dev/iir/iir.c 1.16 +1 -0 src/sys/dev/iir/iir.h 1.20 +1 -1 src/sys/dev/iir/iir_pci.c 1.144 +3 -2 src/sys/dev/isp/isp_freebsd.c 1.2 +1 -1 src/sys/dev/mfi/mfi_cam.c 1.45 +2 -2 src/sys/dev/mly/mly.c 1.59 +5 -5 src/sys/dev/mpt/mpt_cam.c 1.36 +1 -1 src/sys/dev/ppbus/vpo.c 1.6 +2 -1 src/sys/dev/rr232x/osm_bsd.c 1.65 +1 -1 src/sys/dev/sym/sym_hipd.c 1.33 +1 -1 src/sys/dev/trm/trm.c 1.11 +1 -1 src/sys/dev/twa/tw_osl_cam.c 1.148 +1 -1 src/sys/dev/usb/umass.c 1.14 +1 -1 src/sys/dev/wds/wd7000.c 1.197 +1 -1 src/sys/pci/ncr.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 06:10:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6986A16A469; Sun, 17 Jun 2007 06:10:44 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 57C3213C44C; Sun, 17 Jun 2007 06:10:44 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H6AivT018476; Sun, 17 Jun 2007 06:10:44 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H6AijJ018462; Sun, 17 Jun 2007 06:10:44 GMT (envelope-from ariff) Message-Id: <200706170610.l5H6AijJ018462@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 17 Jun 2007 06:10:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c src/sys/dev/sound/pci als4000.c au88x0.c aureal.c cmi.c cs4281.c csapcm.c ds1.c emu10k1.c emu10kx-pcm.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via82c686.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 06:10:44 -0000 ariff 2007-06-17 06:10:43 UTC FreeBSD src repository Modified files: sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sys/dev/sound/pci als4000.c au88x0.c aureal.c cmi.c cs4281.c csapcm.c ds1.c emu10k1.c emu10kx-pcm.c es137x.c fm801.c ich.c maestro.c maestro3.c neomagic.c solo.c t4dwave.c via82c686.c vibes.c sys/dev/sound/pcm ac97.c sys/dev/sound/sbus cs4231.c sys/dev/sound/usb uaudio_pcm.c Log: Flush remaining malloc() cleanups (M_NOWAIT -> M_WAITOK). Revision Changes Path 1.45 +1 -3 src/sys/dev/sound/isa/ad1816.c 1.42 +1 -4 src/sys/dev/sound/isa/ess.c 1.112 +1 -4 src/sys/dev/sound/isa/mss.c 1.97 +1 -4 src/sys/dev/sound/isa/sb16.c 1.86 +1 -4 src/sys/dev/sound/isa/sb8.c 1.27 +1 -5 src/sys/dev/sound/pci/als4000.c 1.13 +1 -4 src/sys/dev/sound/pci/au88x0.c 1.36 +1 -5 src/sys/dev/sound/pci/aureal.c 1.44 +1 -6 src/sys/dev/sound/pci/cmi.c 1.26 +1 -5 src/sys/dev/sound/pci/cs4281.c 1.41 +1 -3 src/sys/dev/sound/pci/csapcm.c 1.52 +1 -5 src/sys/dev/sound/pci/ds1.c 1.69 +1 -5 src/sys/dev/sound/pci/emu10k1.c 1.10 +2 -6 src/sys/dev/sound/pci/emu10kx-pcm.c 1.70 +1 -4 src/sys/dev/sound/pci/es137x.c 1.33 +1 -5 src/sys/dev/sound/pci/fm801.c 1.77 +1 -5 src/sys/dev/sound/pci/ich.c 1.36 +1 -5 src/sys/dev/sound/pci/maestro.c 1.35 +2 -10 src/sys/dev/sound/pci/maestro3.c 1.37 +1 -5 src/sys/dev/sound/pci/neomagic.c 1.45 +1 -4 src/sys/dev/sound/pci/solo.c 1.53 +1 -5 src/sys/dev/sound/pci/t4dwave.c 1.43 +1 -4 src/sys/dev/sound/pci/via82c686.c 1.26 +1 -5 src/sys/dev/sound/pci/vibes.c 1.73 +1 -4 src/sys/dev/sound/pcm/ac97.c 1.9 +1 -5 src/sys/dev/sound/sbus/cs4231.c 1.24 +1 -4 src/sys/dev/sound/usb/uaudio_pcm.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 07:18:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5A9516A400; Sun, 17 Jun 2007 07:18:23 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8F21113C455; Sun, 17 Jun 2007 07:18:23 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H7INp3019925; Sun, 17 Jun 2007 07:18:23 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H7INSp019922; Sun, 17 Jun 2007 07:18:23 GMT (envelope-from njl) Message-Id: <200706170718.l5H7INSp019922@repoman.freebsd.org> From: Nate Lawson Date: Sun, 17 Jun 2007 07:18:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/cpufreq smist.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 07:18:23 -0000 njl 2007-06-17 07:18:23 UTC FreeBSD src repository Modified files: sys/i386/cpufreq smist.c Log: Use bus_dma to get a page in the first 4 GB. Since the physical address of the magic string is passed in a 32-bit register, we can't use high memory in the PAE case. This also eliminates a use of vtophys(). Tested by: Jeff Shimbo MFC after: 1 week Revision Changes Path 1.2 +70 -17 src/sys/i386/cpufreq/smist.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 07:34:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DE2216A47A; Sun, 17 Jun 2007 07:34:01 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C096213C457; Sun, 17 Jun 2007 07:34:00 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H7Y0tt040452; Sun, 17 Jun 2007 07:34:00 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H7Y0E4040442; Sun, 17 Jun 2007 07:34:00 GMT (envelope-from imp) Message-Id: <200706170734.l5H7Y0E4040442@repoman.freebsd.org> From: Warner Losh Date: Sun, 17 Jun 2007 07:34:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usb_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 07:34:01 -0000 imp 2007-06-17 07:34:00 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Expand USB_DO_ATTACH inline. Remove device_t dv, since it is no longer needed. Add sizeof(device_t) to replace sizeof dv. Change device_detach(dev) to device_detach(dev->subdevs[i]) since the type of dev isn't right! Not sure when this was introduced, but it likely would lead to a crash on disconnect. MFC After: 1 week Revision Changes Path 1.93 +8 -12 src/sys/dev/usb/usb_subr.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 07:34:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0877016A468; Sun, 17 Jun 2007 07:34:37 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E0DA613C489; Sun, 17 Jun 2007 07:34:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H7YY7c041241; Sun, 17 Jun 2007 07:34:34 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H7YYGb041240; Sun, 17 Jun 2007 07:34:34 GMT (envelope-from imp) Message-Id: <200706170734.l5H7YYGb041240@repoman.freebsd.org> From: Warner Losh Date: Sun, 17 Jun 2007 07:34:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usb_port.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 07:34:37 -0000 imp 2007-06-17 07:34:34 UTC FreeBSD src repository Modified files: sys/dev/usb usb_port.h Log: Remove USB_DO_ATTACH Revision Changes Path 1.93 +0 -3 src/sys/dev/usb/usb_port.h From owner-cvs-src@FreeBSD.ORG Sun Jun 17 07:40:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D62F16A46C; Sun, 17 Jun 2007 07:40:26 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail36.syd.optusnet.com.au (mail36.syd.optusnet.com.au [211.29.133.76]) by mx1.freebsd.org (Postfix) with ESMTP id A0E8A13C46C; Sun, 17 Jun 2007 07:40:25 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from besplex.bde.org (c220-239-235-248.carlnfd3.nsw.optusnet.com.au [220.239.235.248]) by mail36.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id l5H7eCbn026869 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 17 Jun 2007 17:40:14 +1000 Date: Sun, 17 Jun 2007 17:40:12 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: John Baldwin In-Reply-To: <200706151709.59898.jhb@freebsd.org> Message-ID: <20070617165540.V22900@besplex.bde.org> References: <200706051420.l55EKEih018925@repoman.freebsd.org> <200706111154.31357.jhb@freebsd.org> <20070616054050.Q2037@besplex.bde.org> <200706151709.59898.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@FreeBSD.org, Kip Macy , cvs-all@FreeBSD.org, Attilio Rao , Bruce Evans , cvs-src@FreeBSD.org, Kostik Belousov , Jeff Roberson Subject: Re: cvs commit: src/sys/kern kern_mutex.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 07:40:26 -0000 On Fri, 15 Jun 2007, John Baldwin wrote: > On Friday 15 June 2007 04:46:30 pm Bruce Evans wrote: >> On Mon, 11 Jun 2007, John Baldwin wrote: >>> As to why preemption doesn't work for SMP, a thread only knows to preempt > if >>> it makes a higher priority thread runnable. This happens in mtx_unlock > when >>> we wakeup a thread waiting on the lock, in wakeup, or when an interrupt >>> thread is scheduled (the interrupted thread "sees" the ithread being >>> scheduled). If another thread on another CPU makes a thread runnable, the >>> thread on the first CPU has no idea unless the second CPU explicitly sends > a >>> message (i.e. IPI) to the first CPU asking it to yield instead. >> >> I believe SCHED_ULE does the IPI. > > If you add 'options IPI_PREEMPTION' I think the IPI is enabled in 4BSD. I added this about 6 months ago, but it didn't help then and still doesn't, at least for SCHED_4BSD and relative to voluntarily yielding in the PREEMPTION case. >> Would it be worth checking a preemption flag in mtx_unlock()? This >> would bloat the macro a bit. However, we already have the check and the >> bloat for spinlocks, at least on i386's, by checking in critical_exit() >> via spinlock_exit(). > > All archs check the flag in spinlock_exit(). mtx_unlock() will preempt in > turnstile_unpend() if we wakeup a higher priority thread, so no need to check > for a flag. If we were to get an interrupt while holding the lock we will > preempt immediately (the patch changes this by deferring that preemption to > the critical_exit()). > >> Using critical sections should have the side effect of getting the flag >> checked in critical_exit(). This doesn't seem to work (for SCHED_4BSD), >> so there seems to be a problem setting the flag. > > The flag should work fine, but keep in mind the multiple-CPU case I outlined > above. That doesn't set the flag unless you have the IPI in place. >>> Actually, I would keep the sched_runnable(), etc. as #ifndef PREEMPTION, > the >>> critical_exit() already does that check (modulo concerns above). Also, I >> >> Testing shows critical_exit() doesn't seem to be doing the preemption. On >> UP, depending on PREEMPTION makes little difference, but on 2-way SMP with >> no voluntary yielding, pagezero is too active. The critical sections don't >> seem to be doing much. > > You probably need more details (KTR is good) to see exactly when threads are > becoming runnable (and on which CPUs) and when the kernel is preempting to > see what it is going on and where the context switches come from. KTR_SCHED > + schedgraph.py may prove useful. Reading the code is easier :-). I noticed the following problems: - the flag is neither set nor checked in the !PREEMPTION case, except for SCHED_ULE it is set. Most settings and checkings of it are under the PREEMPTION ifdef. I think this is wrong -- preemption to ithreads should occur even without PREEMPTION (so there would be 3 levels of PREEMPTION -- none (as given by !PREEMPTION now), preemption to ithreads only (not available now?), and whatver FULL_PREEMPTION gives). The exception is that sched_add() for SCHED_ULE calls sched_preempt() in the non-yielding case, and setting the flag in sched_preempt() isn't under the PREEMPTION ifdef. But this is moot since SCHED_ULE requires PREEMPTION. - the condition for being an idle priority thread is wrong. It is affected by much the same translation problems as pri_level in userland. An idle thread may have a borrowed priority, so it is impossible to classify idle threads according to theire current priority alone. This may allow setting of the preemption flag to never be done even in the PREEMPTION case, as follows: = idle priority thread is running with a borrowed non-idle priority - and enters a critical section - maybe_preempt() is called but of course doesn't preempt because of the critical section - and also doesn't set the flag due to the misclassified priority. This apparently happens often for pagezero, due to it holding a mutex most of the time that it is running. (Without your proposed change, it isn't in a critical section, but I suspect maybe_preempt() doesn't preempt it for similar reasons.) - when the thread leaves the critical section, preemption doesn't occur because the flag is not set, and preemption isn't reconsidered because critical_exit() doesn't do that. - when the priority is unborrowed, premption should be reconsidered. I don't know if it is. >>> the reason I wanted to avoid preempting while holding the lock is you can > get >>> this case: >>> >>> zeroidle -> some ithread -> some top-half thread in kernel which needs the >>> vm page queue mtx -> zeroidle (with top-half thread's priority; until >>> mtx_unlock) -> top-half thread in kernel -> zeroidle >>> >>> which can be many context switches. By not switching while holding the > lock, >>> one can reduce this to: >>> >>> zeroidle -> some ithread -> some top-half thread -> zeroidle >>> >>> but at the cost of adding latency to "some ithread" and "some top-half > thread" >> >> Maybe preemption should be inhibited a bit when any mutex is held. > > That would make mutexes spinlocks that block interrupts. Would sort of defeat > the point of having mutexes that aren't spinlocks. I mean that preemption should only be inhibited, not completely blocked. Something like delaying preemption for a couple of microseconds would be good, but would be hard to implement since the obvious implementation, of scheduling an interrupt after a couple of microseconds to cause reconsideration of the preemption decision, would be too expensive. For well-behaved threads like pagezero, we can be sure that a suitable preemption reconsideration point like critical_exit() is called within a couple of microseconds. That is essentially how the voluntarily yielding in pagezero works now. Bruce From owner-cvs-src@FreeBSD.ORG Sun Jun 17 09:38:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DB5216A41F; Sun, 17 Jun 2007 09:38:28 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 58E1213C457; Sun, 17 Jun 2007 09:38:28 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5H9cSxJ027258; Sun, 17 Jun 2007 09:38:28 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H9cS6L027254; Sun, 17 Jun 2007 09:38:28 GMT (envelope-from brueffer) Message-Id: <200706170938.l5H9cS6L027254@repoman.freebsd.org> From: Christian Brueffer Date: Sun, 17 Jun 2007 09:38:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/usb ubsa.c ucom.c udbp.c ufm.c uftdi.c uhid.c ulpt.c ums.c uplcom.c urio.c usb.c usb.h uscanner.c uvscom.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 09:38:28 -0000 brueffer 2007-06-17 09:38:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ubsa.c ucom.c udbp.c ufm.c uftdi.c uhid.c ulpt.c ums.c uplcom.c urio.c usb.c usb.h uscanner.c uvscom.c Log: MFC: Remove compat ifdefs for version < 500014 Approved by: rwatson (mentor) Revision Changes Path 1.17.2.5 +0 -4 src/sys/dev/usb/ubsa.c 1.57.2.1 +0 -4 src/sys/dev/usb/ucom.c 1.29.2.1 +0 -4 src/sys/dev/usb/udbp.c 1.23.2.1 +0 -7 src/sys/dev/usb/ufm.c 1.22.2.1 +0 -4 src/sys/dev/usb/uftdi.c 1.77.2.5 +0 -7 src/sys/dev/usb/uhid.c 1.66.2.2 +0 -3 src/sys/dev/usb/ulpt.c 1.77.2.5 +0 -3 src/sys/dev/usb/ums.c 1.29.2.5 +0 -4 src/sys/dev/usb/uplcom.c 1.35.2.1 +0 -7 src/sys/dev/usb/urio.c 1.106.2.2 +0 -7 src/sys/dev/usb/usb.c 1.39.2.2 +0 -4 src/sys/dev/usb/usb.h 1.63.2.6 +0 -7 src/sys/dev/usb/uscanner.c 1.25.2.2 +0 -4 src/sys/dev/usb/uvscom.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 10:20:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B62E16A468; Sun, 17 Jun 2007 10:20:56 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 645AF13C46E; Sun, 17 Jun 2007 10:20:56 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HAKusO099906; Sun, 17 Jun 2007 10:20:56 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HAKuSu099900; Sun, 17 Jun 2007 10:20:56 GMT (envelope-from simokawa) Message-Id: <200706171020.l5HAKuSu099900@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 17 Jun 2007 10:20:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/fwcontrol fwdv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 10:20:56 -0000 simokawa 2007-06-17 10:20:56 UTC FreeBSD src repository Modified files: usr.sbin/fwcontrol fwdv.c Log: Increase buffer size of DV stream to prevent buffer overrun caused by long blocking of file I/O (i.e. zfs). MFC after: 3 days Revision Changes Path 1.7 +1 -1 src/usr.sbin/fwcontrol/fwdv.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 10:26:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF2B116A41F; Sun, 17 Jun 2007 10:26:23 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 5F2FA13C458; Sun, 17 Jun 2007 10:26:23 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 67CAA20AF; Sun, 17 Jun 2007 12:26:19 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.2.0 (2007-05-01) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 433A9208A; Sun, 17 Jun 2007 12:26:19 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 78CA15A37; Sun, 17 Jun 2007 12:26:42 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Scott Long References: <200706160337.l5G3bTd8066242@repoman.freebsd.org> <1182023759.1243.4.camel@localhost> <20070616223202.12ac7a46@deskjail> <46744C0D.4050208@samsco.org> Date: Sun, 17 Jun 2007 12:26:42 +0200 In-Reply-To: <46744C0D.4050208@samsco.org> (Scott Long's message of "Sat\, 16 Jun 2007 14\:46\:05 -0600") Message-ID: <86sl8qvpul.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: src-committers@FreeBSD.org, Ariff Abdullah , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Joel Dahl , Alexander Leidinger Subject: Re: cvs commit: src/sys/dev/sound version.h src/sys/dev/sound/pci es137x.c src/sys/dev/sound/pcm buffer.c channel.c channel.h dsp.c dsp.h feeder.c feeder_rate.c mixer.c mixer.h sndstat.c sound.c sound.h vchan.c src/sys/dev/sound/usb uaudio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 10:26:23 -0000 Scott Long writes: > One way to fix this that I've discussed already with Ariff is to have > each proc be marked with the ABI that is it running in. They already are, aren't they? Every process has a pointer to its sysent vector. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sun Jun 17 10:40:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2CAB16A46B; Sun, 17 Jun 2007 10:40:26 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7C57C13C45A; Sun, 17 Jun 2007 10:40:26 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HAeQ35038930; Sun, 17 Jun 2007 10:40:26 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HAeQb7038917; Sun, 17 Jun 2007 10:40:26 GMT (envelope-from simokawa) Message-Id: <200706171040.l5HAeQb7038917@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 17 Jun 2007 10:40:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 fwohci.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 10:40:26 -0000 simokawa 2007-06-17 10:40:25 UTC FreeBSD src repository Modified files: share/man/man4 fwohci.4 Log: Document hw.firewire.phydma_enable knob. Revision Changes Path 1.16 +9 -0 src/share/man/man4/fwohci.4 From owner-cvs-src@FreeBSD.ORG Sun Jun 17 10:46:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F04716A41F; Sun, 17 Jun 2007 10:46:21 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0831713C465; Sun, 17 Jun 2007 10:46:21 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HAkKda049565; Sun, 17 Jun 2007 10:46:20 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HAkKcF049555; Sun, 17 Jun 2007 10:46:20 GMT (envelope-from simokawa) Message-Id: <200706171046.l5HAkKcF049555@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 17 Jun 2007 10:46:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/firewire sbp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 10:46:21 -0000 simokawa 2007-06-17 10:46:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/firewire sbp.c Log: MFC: Suppress compiler optimization so that orb[1] must be written first. Revision Changes Path 1.81.2.4 +7 -2 src/sys/dev/firewire/sbp.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 14:02:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B6FF816A469; Sun, 17 Jun 2007 14:02:31 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9171913C45A; Sun, 17 Jun 2007 14:02:31 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HE2VFA050147; Sun, 17 Jun 2007 14:02:31 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HE2VlO050146; Sun, 17 Jun 2007 14:02:31 GMT (envelope-from yar) Message-Id: <200706171402.l5HE2VlO050146@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 17 Jun 2007 14:02:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/libexec/atrun atrun.man X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 14:02:31 -0000 yar 2007-06-17 14:02:31 UTC FreeBSD src repository Modified files: libexec/atrun atrun.man Log: Note PAM support in atrun(8). Sort FILES section while there. Touch document date. Revision Changes Path 1.13 +17 -4 src/libexec/atrun/atrun.man From owner-cvs-src@FreeBSD.ORG Sun Jun 17 14:45:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 356FA16A46D; Sun, 17 Jun 2007 14:45:29 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0F1FB13C43E; Sun, 17 Jun 2007 14:45:29 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HEjSBx027207; Sun, 17 Jun 2007 14:45:28 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HEjSQe027200; Sun, 17 Jun 2007 14:45:28 GMT (envelope-from rrs) Message-Id: <200706171445.l5HEjSQe027200@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 14:45:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat sctp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 14:45:29 -0000 rrs 2007-06-17 14:45:28 UTC FreeBSD src repository Modified files: usr.bin/netstat sctp.c Log: o style(9) nit. o shorten explainations which are over 80 columns in console. o group rows o clean up and change explanations a little bit. Obtained from: weongyo.jeong@gmail.com Revision Changes Path 1.4 +87 -100 src/usr.bin/netstat/sctp.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 15:21:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A69516A400; Sun, 17 Jun 2007 15:21:11 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 349F213C45E; Sun, 17 Jun 2007 15:21:11 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HFLBYO086452; Sun, 17 Jun 2007 15:21:11 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HFLAaC086330; Sun, 17 Jun 2007 15:21:10 GMT (envelope-from scottl) Message-Id: <200706171521.l5HFLAaC086330@repoman.freebsd.org> From: Scott Long Date: Sun, 17 Jun 2007 15:21:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ahb ahb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 15:21:11 -0000 scottl 2007-06-17 15:21:09 UTC FreeBSD src repository Modified files: sys/dev/ahb ahb.c Log: Fix a compile error from the last change. Revision Changes Path 1.43 +1 -1 src/sys/dev/ahb/ahb.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 15:53:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3699016A400; Sun, 17 Jun 2007 15:53:12 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1082313C43E; Sun, 17 Jun 2007 15:53:12 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HFrBBd028509; Sun, 17 Jun 2007 15:53:11 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HFrBT5028496; Sun, 17 Jun 2007 15:53:11 GMT (envelope-from ariff) Message-Id: <200706171553.l5HFrBT5028496@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 17 Jun 2007 15:53:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm feeder.c sound.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 15:53:12 -0000 ariff 2007-06-17 15:53:11 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm feeder.c sound.c Log: Reassign default unit to a valid unit, be it during attach or detach. If nothing is available, set to something that is purely ridiculous so the next valid attach will notice it. Tested by: chibis Revision Changes Path 1.44 +1 -1 src/sys/dev/sound/pcm/feeder.c 1.117 +7 -2 src/sys/dev/sound/pcm/sound.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 16:15:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C5B416A400; Sun, 17 Jun 2007 16:15:58 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DA29613C465; Sun, 17 Jun 2007 16:15:57 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HGFv2C074843; Sun, 17 Jun 2007 16:15:57 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HGFvdE074821; Sun, 17 Jun 2007 16:15:57 GMT (envelope-from ariff) Message-Id: <200706171615.l5HGFvdE074821@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 17 Jun 2007 16:15:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm sound.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 16:15:58 -0000 ariff 2007-06-17 16:15:57 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm sound.c Log: Add sysctl/tunable "hw.snd.default_auto", which is useful (especially for non-root users) to automatically assign default unit to a newly attach device like USB audio. Revision Changes Path 1.118 +6 -1 src/sys/dev/sound/pcm/sound.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 16:24:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21D3E16A469; Sun, 17 Jun 2007 16:24:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0F24613C48A; Sun, 17 Jun 2007 16:24:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HGOncq089024; Sun, 17 Jun 2007 16:24:49 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HGOnCK089023; Sun, 17 Jun 2007 16:24:49 GMT (envelope-from imp) Message-Id: <200706171624.l5HGOnCK089023@repoman.freebsd.org> From: Warner Losh Date: Sun, 17 Jun 2007 16:24:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c if_axe.c if_cdce.c if_cue.c if_kue.c if_rue.c if_rum.c if_udav.c if_ural.c ubsa.c ubser.c udbp.c ufm.c ufoma.c uftdi.c uhid.c uhub.c uipaq.c ukbd.c ulpt.c umass.c umct.c umodem.c ums.c uplcom.c urio.c uscanner.c uvisor.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 16:24:50 -0000 imp 2007-06-17 16:24:49 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_axe.c if_cdce.c if_cue.c if_kue.c if_rue.c if_rum.c if_udav.c if_ural.c ubsa.c ubser.c udbp.c ufm.c ufoma.c uftdi.c uhid.c uhub.c uipaq.c ukbd.c ulpt.c umass.c umct.c umodem.c ums.c uplcom.c urio.c uscanner.c uvisor.c uvscom.c Log: Expand USB_MATCH_START Revision Changes Path 1.111 +1 -1 src/sys/dev/usb/if_aue.c 1.49 +1 -1 src/sys/dev/usb/if_axe.c 1.22 +1 -1 src/sys/dev/usb/if_cdce.c 1.69 +1 -1 src/sys/dev/usb/if_cue.c 1.78 +1 -1 src/sys/dev/usb/if_kue.c 1.36 +1 -1 src/sys/dev/usb/if_rue.c 1.8 +1 -1 src/sys/dev/usb/if_rum.c 1.30 +1 -1 src/sys/dev/usb/if_udav.c 1.59 +1 -1 src/sys/dev/usb/if_ural.c 1.29 +1 -1 src/sys/dev/usb/ubsa.c 1.26 +1 -1 src/sys/dev/usb/ubser.c 1.36 +1 -1 src/sys/dev/usb/udbp.c 1.33 +1 -1 src/sys/dev/usb/ufm.c 1.7 +1 -1 src/sys/dev/usb/ufoma.c 1.33 +1 -1 src/sys/dev/usb/uftdi.c 1.93 +1 -1 src/sys/dev/usb/uhid.c 1.78 +1 -1 src/sys/dev/usb/uhub.c 1.6 +1 -1 src/sys/dev/usb/uipaq.c 1.67 +1 -1 src/sys/dev/usb/ukbd.c 1.77 +1 -1 src/sys/dev/usb/ulpt.c 1.149 +1 -1 src/sys/dev/usb/umass.c 1.17 +1 -1 src/sys/dev/usb/umct.c 1.65 +1 -1 src/sys/dev/usb/umodem.c 1.91 +1 -1 src/sys/dev/usb/ums.c 1.48 +1 -1 src/sys/dev/usb/uplcom.c 1.45 +1 -1 src/sys/dev/usb/urio.c 1.84 +1 -1 src/sys/dev/usb/uscanner.c 1.35 +1 -1 src/sys/dev/usb/uvisor.c 1.38 +1 -1 src/sys/dev/usb/uvscom.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 16:44:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3995816A400; Sun, 17 Jun 2007 16:44:09 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1356D13C44B; Sun, 17 Jun 2007 16:44:09 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HGi86x014081; Sun, 17 Jun 2007 16:44:08 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HGi8L9014073; Sun, 17 Jun 2007 16:44:08 GMT (envelope-from marius) Message-Id: <200706171644.l5HGi8L9014073@repoman.freebsd.org> From: Marius Strobl Date: Sun, 17 Jun 2007 16:44:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sparc64/pci ofw_pcibus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 16:44:09 -0000 marius 2007-06-17 16:44:08 UTC FreeBSD src repository Modified files: sys/sparc64/pci ofw_pcibus.c Log: Remove unused softc. Revision Changes Path 1.14 +2 -6 src/sys/sparc64/pci/ofw_pcibus.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 16:53:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4188116A400; Sun, 17 Jun 2007 16:53:46 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1B53813C447; Sun, 17 Jun 2007 16:53:46 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HGrjYr036832; Sun, 17 Jun 2007 16:53:45 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HGrjXm036819; Sun, 17 Jun 2007 16:53:45 GMT (envelope-from phk) Message-Id: <200706171653.l5HGrjXm036819@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Jun 2007 16:53:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/recoverdisk recoverdisk.1 recoverdisk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 16:53:46 -0000 phk 2007-06-17 16:53:45 UTC FreeBSD src repository Modified files: sbin/recoverdisk recoverdisk.1 recoverdisk.c Log: This is a forced (and belated) commit to record that these files were repocopied from src/tools/tools/recoverdisk Revision Changes Path 1.3 +0 -0 src/sbin/recoverdisk/recoverdisk.1 1.9 +0 -0 src/sbin/recoverdisk/recoverdisk.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 17:19:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D956316A400; Sun, 17 Jun 2007 17:19:21 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B316713C447; Sun, 17 Jun 2007 17:19:21 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HHJLAJ081729; Sun, 17 Jun 2007 17:19:21 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HHJL7Z081719; Sun, 17 Jun 2007 17:19:21 GMT (envelope-from njl) Message-Id: <200706171719.l5HHJL7Z081719@repoman.freebsd.org> From: Nate Lawson Date: Sun, 17 Jun 2007 17:19:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/acpica acpi_hpet.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 17:19:21 -0000 njl 2007-06-17 17:19:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi_hpet.c Log: MFC: add support for probing HPET via table Revision Changes Path 1.5.2.3 +46 -4 src/sys/dev/acpica/acpi_hpet.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 17:25:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C013A16A41F; Sun, 17 Jun 2007 17:25:53 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B006913C480; Sun, 17 Jun 2007 17:25:53 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HHPrnB092613; Sun, 17 Jun 2007 17:25:53 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HHPr2c092609; Sun, 17 Jun 2007 17:25:53 GMT (envelope-from yar) Message-Id: <200706171725.l5HHPr2c092609@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 17 Jun 2007 17:25:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 17:25:53 -0000 yar 2007-06-17 17:25:53 UTC FreeBSD src repository Modified files: etc/pam.d Makefile usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c usr.sbin/cron/lib Makefile entry.c Added files: etc/pam.d cron Log: Add PAM support to cron(8). Now cron(8) will skip commands scheduled by unavailable accounts, e.g., those locked, expired, not allowed in at the moment by nologin(5), or whatever, depending on cron's pam.conf(5). This applies to personal crontabs only, /etc/crontab is unaffected. In other words, now the account management policy will apply to commands scheduled by users via crontab(1) so that a user can no longer use cron(8) to set up a delayed backdoor and run commands during periods when the admin doesn't want him to. The PAM check is done just before running a command, not when loading a crontab, because accounts can get locked, expired, and re-enabled any time with no changes to their crontabs. E.g., imagine that you provide a system with payed access, or better a cluster of such systems with centralized account management via PAM. When a user pays for some days of access, you set his expire field respectively. If the account expires before its owner pays more, its crontab commands won't run until the next payment is made. Then it'll be enough to set the expire field in future for the commands to run again. And so on. Document this change in the cron(8) manpage, which includes adding a FILES section and touching the document date. X-Security: should benefit as users have access to cron(8) by default Revision Changes Path 1.16 +1 -0 src/etc/pam.d/Makefile 1.1 +9 -0 src/etc/pam.d/cron (new) 1.16 +4 -4 src/usr.sbin/cron/cron/Makefile 1.25 +25 -2 src/usr.sbin/cron/cron/cron.8 1.17 +1 -0 src/usr.sbin/cron/cron/cron.h 1.9 +2 -2 src/usr.sbin/cron/cron/database.c 1.27 +46 -0 src/usr.sbin/cron/cron/do_command.c 1.8 +1 -1 src/usr.sbin/cron/lib/Makefile 1.19 +2 -0 src/usr.sbin/cron/lib/entry.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 17:28:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63E5D16A469; Sun, 17 Jun 2007 17:28:42 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3D6B013C448; Sun, 17 Jun 2007 17:28:42 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HHSgqn096297; Sun, 17 Jun 2007 17:28:42 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HHSgQB096296; Sun, 17 Jun 2007 17:28:42 GMT (envelope-from njl) Message-Id: <200706171728.l5HHSgQB096296@repoman.freebsd.org> From: Nate Lawson Date: Sun, 17 Jun 2007 17:28:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/acpica acpi.c acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 17:28:42 -0000 njl 2007-06-17 17:28:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi.c acpivar.h Log: MFC: add hooks for HPET missed in previous commit Revision Changes Path 1.214.2.11 +1 -0 src/sys/dev/acpica/acpi.c 1.95.2.6 +2 -0 src/sys/dev/acpica/acpivar.h From owner-cvs-src@FreeBSD.ORG Sun Jun 17 17:42:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8E2616A41F; Sun, 17 Jun 2007 17:42:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id ACC2E13C45A; Sun, 17 Jun 2007 17:42:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 201FD46FE4; Sun, 17 Jun 2007 13:42:41 -0400 (EDT) Date: Sun, 17 Jun 2007 18:42:40 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Yar Tikhiy In-Reply-To: <200706171725.l5HHPr2c092609@repoman.freebsd.org> Message-ID: <20070617184206.C2416@fledge.watson.org> References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 17:42:42 -0000 On Sun, 17 Jun 2007, Yar Tikhiy wrote: > Add PAM support to cron(8). Now cron(8) will skip commands scheduled > by unavailable accounts, e.g., those locked, expired, not allowed in at > the moment by nologin(5), or whatever, depending on cron's pam.conf(5). > This applies to personal crontabs only, /etc/crontab is unaffected. > > In other words, now the account management policy will apply to > commands scheduled by users via crontab(1) so that a user can no > longer use cron(8) to set up a delayed backdoor and run commands > during periods when the admin doesn't want him to. Nice work. Have you looked at doing something similar for .forward files in Sendmail? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Sun Jun 17 18:46:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5F3716A400; Sun, 17 Jun 2007 18:46:27 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9E67713C48A; Sun, 17 Jun 2007 18:46:27 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HIkRfF003365; Sun, 17 Jun 2007 18:46:27 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HIkRGw003352; Sun, 17 Jun 2007 18:46:27 GMT (envelope-from imp) Message-Id: <200706171846.l5HIkRGw003352@repoman.freebsd.org> From: Warner Losh Date: Sun, 17 Jun 2007 18:46:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c if_axe.c if_cdce.c if_cue.c if_kue.c if_rue.c if_ural.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 18:46:27 -0000 imp 2007-06-17 18:46:26 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_axe.c if_cdce.c if_cue.c if_kue.c if_rue.c if_ural.c Log: Remove USBGETSOFTC, USB_ATTACH_START, USB_DETACH_START and USB_DECLARE_DRIVER_INIT from the usb network drivers. Revision Changes Path 1.112 +5 -4 src/sys/dev/usb/if_aue.c 1.50 +5 -4 src/sys/dev/usb/if_axe.c 1.23 +26 -8 src/sys/dev/usb/if_cdce.c 1.70 +2 -1 src/sys/dev/usb/if_cue.c 1.79 +2 -1 src/sys/dev/usb/if_kue.c 1.37 +5 -4 src/sys/dev/usb/if_rue.c 1.60 +24 -5 src/sys/dev/usb/if_ural.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 19:02:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFFB716A468; Sun, 17 Jun 2007 19:02:05 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 994BD13C44C; Sun, 17 Jun 2007 19:02:05 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HJ254q028634; Sun, 17 Jun 2007 19:02:05 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HJ254b028627; Sun, 17 Jun 2007 19:02:05 GMT (envelope-from ariff) Message-Id: <200706171902.l5HJ254b028627@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 17 Jun 2007 19:02:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm sound.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 19:02:05 -0000 ariff 2007-06-17 19:02:05 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm sound.c Log: Spelling nit due to my lamenglishness. Noticed by: brueffer Revision Changes Path 1.119 +1 -1 src/sys/dev/sound/pcm/sound.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 19:27:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FD2516A46E; Sun, 17 Jun 2007 19:27:47 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6732113C480; Sun, 17 Jun 2007 19:27:47 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HJRlGV067047; Sun, 17 Jun 2007 19:27:47 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HJRl7h067046; Sun, 17 Jun 2007 19:27:47 GMT (envelope-from rrs) Message-Id: <200706171927.l5HJRl7h067046@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 19:27:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 19:27:47 -0000 rrs 2007-06-17 19:27:47 UTC FreeBSD src repository Modified files: sys/netinet sctp_pcb.c Log: Back out last change to inpcb_free. Turns out we need to hold off freeing if there is data pending ... someone might do send/close. Which means we want the data to go and then close it after startup. Added comments to the code as well to note that this is done for a reason. Revision Changes Path 1.43 +14 -3 src/sys/netinet/sctp_pcb.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 20:27:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E11C416A400; Sun, 17 Jun 2007 20:27:54 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BA1F813C45A; Sun, 17 Jun 2007 20:27:54 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HKRsIQ082989; Sun, 17 Jun 2007 20:27:54 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HKRsXO082982; Sun, 17 Jun 2007 20:27:54 GMT (envelope-from philip) Message-Id: <200706172027.l5HKRsXO082982@repoman.freebsd.org> From: Philip Paeps Date: Sun, 17 Jun 2007 20:27:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 20:27:55 -0000 philip 2007-06-17 20:27:54 UTC FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: Fix a (very) longstanding bug in moused(8) affecting high-resolution rodents when linear acceleration (-a) was enabled with a <1 value to slow them down. Previously, rounding errors would eat small movements so the mouse had to be moved a certain distance to get any movement at all. We now calculate the rounding errors and take them into account when reporting movement. PR: bin/113749 Submitted by: Oliver Fromme MFC after: 3 days Revision Changes Path 1.79 +41 -6 src/usr.sbin/moused/moused.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 21:51:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A425516A469; Sun, 17 Jun 2007 21:51:45 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7D38113C45A; Sun, 17 Jun 2007 21:51:45 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HLpj9F013429; Sun, 17 Jun 2007 21:51:45 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HLpj1E013416; Sun, 17 Jun 2007 21:51:45 GMT (envelope-from csjp) Message-Id: <200706172151.l5HLpj1E013416@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 17 Jun 2007 21:51:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net bpf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 21:51:45 -0000 csjp 2007-06-17 21:51:44 UTC FreeBSD src repository Modified files: sys/net bpf.c Log: Silence some gcc 4 warnings. It is expected that the bpf_movein() routine will intialize the the header length and re-initialize the mbuf pointer to reference the mbuf that is allocated after moving user supplied packet data in. Revision Changes Path 1.178 +2 -0 src/sys/net/bpf.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 22:19:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BC1E16A400; Sun, 17 Jun 2007 22:19:21 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BBE0713C483; Sun, 17 Jun 2007 22:19:20 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HMJKYX050982; Sun, 17 Jun 2007 22:19:20 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HMJKBm050981; Sun, 17 Jun 2007 22:19:20 GMT (envelope-from marcel) Message-Id: <200706172219.l5HMJKBm050981@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 17 Jun 2007 22:19:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/part g_part.c g_part.h g_part_mbr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 22:19:21 -0000 marcel 2007-06-17 22:19:20 UTC FreeBSD src repository Modified files: sys/geom/part g_part.c g_part.h g_part_mbr.c Log: Have gpart synthesize a disk geometry if the underlying provider don't have it. Some partitioning schemes, as well as file systems, operate on the geometry and without it such schemes (e.g. MBR) and file systems (e.g. FAT) can't be created. This is useful for memory disks. Revision Changes Path 1.9 +119 -20 src/sys/geom/part/g_part.c 1.3 +15 -0 src/sys/geom/part/g_part.h 1.2 +55 -35 src/sys/geom/part/g_part_mbr.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 23:20:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB87816A400; Sun, 17 Jun 2007 23:20:44 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 703DB13C45D; Sun, 17 Jun 2007 23:20:44 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HNKi0W053401; Sun, 17 Jun 2007 23:20:44 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HNKiFc053393; Sun, 17 Jun 2007 23:20:44 GMT (envelope-from delphij) Message-Id: <200706172320.l5HNKiFc053393@repoman.freebsd.org> From: Xin LI Date: Sun, 17 Jun 2007 23:20:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/less search.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 23:20:44 -0000 delphij 2007-06-17 23:20:44 UTC FreeBSD src repository Modified files: contrib/less search.c Log: Apply a vendor patch that fixes very annoying bug which caused the cursor not to return to the place it should when -w is used with -e. Note that this is a commit against -HEAD because we already have the file off the vendor branch. Reported by: Tom Uffner (on -current@) Obtained from: http://www.greenwoodsoftware.com/less/less-405.tar.gz Revision Changes Path 1.8 +4 -0 src/contrib/less/search.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 23:43:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEAFA16A46F; Sun, 17 Jun 2007 23:43:38 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AC39F13C4B8; Sun, 17 Jun 2007 23:43:38 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HNhcHH005113; Sun, 17 Jun 2007 23:43:38 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HNhclJ005106; Sun, 17 Jun 2007 23:43:38 GMT (envelope-from rrs) Message-Id: <200706172343.l5HNhclJ005106@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 23:43:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_bsd_addr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 17 Jun 2007 23:43:39 -0000 rrs 2007-06-17 23:43:38 UTC FreeBSD src repository Modified files: sys/netinet sctp_bsd_addr.c Log: - The packet log needs to copy all of the buffer not to the end. Revision Changes Path 1.12 +3 -2 src/sys/netinet/sctp_bsd_addr.c From owner-cvs-src@FreeBSD.ORG Sun Jun 17 23:52:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA99716A468; Sun, 17 Jun 2007 23:52:18 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A9FD213C46C; Sun, 17 Jun 2007 23:52:18 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5HNqISi025847; Sun, 17 Jun 2007 23:52:18 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5HNqIQ4025822; Sun, 17 Jun 2007 23:52:18 GMT (envelope-from kmacy) Message-Id: <200706172352.l5HNqIQ4025822@repoman.freebsd.org> From: Kip Macy Date: Sun, 17 Jun 2007 23:52:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/conf files src/sys/modules/cxgb Makefile src/sys/dev/cxgb cxgb_adapter.h cxgb_config.h cxgb_l2t.c cxgb_l2t.h cxgb_lro.c cxgb_main.c cxgb_offload.c cxgb_offload.h cxgb_sge.c t3fw-4.0.0.bin.gz.uu t3fw-4.1.0.bin.gz.uu ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2007 23:52:18 -0000 kmacy 2007-06-17 23:52:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf files sys/modules/cxgb Makefile sys/dev/cxgb cxgb_adapter.h cxgb_config.h cxgb_l2t.c cxgb_l2t.h cxgb_lro.c cxgb_main.c cxgb_offload.c cxgb_offload.h cxgb_sge.c sys/dev/cxgb/common cxgb_ael1002.c cxgb_common.h cxgb_ctl_defs.h cxgb_firmware_exports.h cxgb_mc5.c cxgb_mv88e1xxx.c cxgb_regs.h cxgb_sge_defs.h cxgb_t3_cpl.h cxgb_t3_hw.c cxgb_tcb.h cxgb_version.h cxgb_vsc8211.c cxgb_xgmac.c jhash.h sys/dev/cxgb/sys mbufq.h mvec.h uipc_mvec.c sys/dev/cxgb/ulp/toecore toedev.h Added files: (Branch: RELENG_6) sys/dev/cxgb t3fw-4.1.0.bin.gz.uu sys/dev/cxgb/common cxgb_vsc7323.c Removed files: (Branch: RELENG_6) sys/dev/cxgb t3fw-4.0.0.bin.gz.uu Log: MFC: - switch over to standard method for initializing cdevs (contributed by scottl@) - break out timer_reclaim_task to be per-port - move msix teardown into separate function - fix bus_setup_intr for msi-x for the multi-port case so that msi-x resources are not corrupted on unload - handle 10/100/1000 base-T media and auto negotiation - bind qset to cpu even for singleq case - white space cleanups - remove recursive PORT_LOCK - move mtu setting to separate function - stop and re-init port when changing mtu - replace all direct references to m_data with calls to mtod - handle attach failure better by not trying to de-initialize taskqueues when they have not been allocated - no longer default to jumbo frames - fix gcc-4.2 signedness compile errors Sponsored by: Chelsio Inc. Revision Changes Path 1.1031.2.63 +1 -0 src/sys/conf/files 1.1.2.2 +14 -9 src/sys/dev/cxgb/common/cxgb_ael1002.c 1.1.2.4 +65 -20 src/sys/dev/cxgb/common/cxgb_common.h 1.1.2.2 +0 -0 src/sys/dev/cxgb/common/cxgb_ctl_defs.h 1.1.2.2 +1 -5 src/sys/dev/cxgb/common/cxgb_firmware_exports.h 1.1.2.3 +8 -7 src/sys/dev/cxgb/common/cxgb_mc5.c 1.1.2.2 +6 -6 src/sys/dev/cxgb/common/cxgb_mv88e1xxx.c 1.1.2.3 +1 -5 src/sys/dev/cxgb/common/cxgb_regs.h 1.1.2.2 +1 -5 src/sys/dev/cxgb/common/cxgb_sge_defs.h 1.1.2.3 +1 -5 src/sys/dev/cxgb/common/cxgb_t3_cpl.h 1.1.2.4 +246 -87 src/sys/dev/cxgb/common/cxgb_t3_hw.c 1.1.2.2 +1 -5 src/sys/dev/cxgb/common/cxgb_tcb.h 1.1.2.4 +1 -5 src/sys/dev/cxgb/common/cxgb_version.h 1.1.2.1 +340 -0 src/sys/dev/cxgb/common/cxgb_vsc7323.c (new) 1.1.2.2 +6 -6 src/sys/dev/cxgb/common/cxgb_vsc8211.c 1.1.2.4 +107 -23 src/sys/dev/cxgb/common/cxgb_xgmac.c 1.1.2.2 +0 -0 src/sys/dev/cxgb/common/jhash.h 1.2.2.4 +14 -3 src/sys/dev/cxgb/cxgb_adapter.h 1.1.2.3 +1 -6 src/sys/dev/cxgb/cxgb_config.h 1.1.2.2 +6 -10 src/sys/dev/cxgb/cxgb_l2t.c 1.1.2.2 +8 -1 src/sys/dev/cxgb/cxgb_l2t.h 1.1.2.3 +16 -16 src/sys/dev/cxgb/cxgb_lro.c 1.3.2.5 +195 -126 src/sys/dev/cxgb/cxgb_main.c 1.2.2.2 +16 -14 src/sys/dev/cxgb/cxgb_offload.c 1.1.2.2 +6 -7 src/sys/dev/cxgb/cxgb_offload.h 1.2.2.5 +57 -55 src/sys/dev/cxgb/cxgb_sge.c 1.1.2.2 +5 -0 src/sys/dev/cxgb/sys/mbufq.h 1.5.2.2 +3 -3 src/sys/dev/cxgb/sys/mvec.h 1.13.2.3 +8 -5 src/sys/dev/cxgb/sys/uipc_mvec.c 1.1.2.2 +0 -483 src/sys/dev/cxgb/t3fw-4.0.0.bin.gz.uu (dead) 1.1.2.1 +482 -0 src/sys/dev/cxgb/t3fw-4.1.0.bin.gz.uu (new) 1.1.2.2 +1 -1 src/sys/dev/cxgb/ulp/toecore/toedev.h 1.3.2.4 +6 -6 src/sys/modules/cxgb/Makefile From owner-cvs-src@FreeBSD.ORG Mon Jun 18 00:30:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAAEE16A468; Mon, 18 Jun 2007 00:30:00 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B0DE613C4AD; Mon, 18 Jun 2007 00:30:00 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I0U0TF008112; Mon, 18 Jun 2007 00:30:00 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I0U0qH008078; Mon, 18 Jun 2007 00:30:00 GMT (envelope-from njl) Message-Id: <200706180030.l5I0U0qH008078@repoman.freebsd.org> From: Nate Lawson Date: Mon, 18 Jun 2007 00:29:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/acpica acpi_hpet.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 00:30:01 -0000 njl 2007-06-18 00:29:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi_hpet.c Log: Fix compile problem using older acpi-ca interface. Revision Changes Path 1.5.2.4 +10 -6 src/sys/dev/acpica/acpi_hpet.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 00:36:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32F1E16A468; Mon, 18 Jun 2007 00:36:55 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0CAAA13C43E; Mon, 18 Jun 2007 00:36:55 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I0asPF023544; Mon, 18 Jun 2007 00:36:54 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I0asac023540; Mon, 18 Jun 2007 00:36:54 GMT (envelope-from kientzle) Message-Id: <200706180036.l5I0asac023540@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 18 Jun 2007 00:36:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 00:36:55 -0000 kientzle 2007-06-18 00:36:54 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_open_fd.c archive_read_open_filename.c Log: Track whether the current read stream supports seek(). For now, we assume yes unless seek has previously failed, but I fear I'll have to avoid seeks under other circumstances. (For instance, tape drives on FreeBSD seem to return garbage from lseek().) Also, optimize away zero-byte skips. Revision Changes Path 1.12 +11 -0 src/lib/libarchive/archive_read_open_fd.c 1.19 +11 -0 src/lib/libarchive/archive_read_open_filename.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 01:30:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD18F16A41F for ; Mon, 18 Jun 2007 01:30:58 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 9B1E513C45B for ; Mon, 18 Jun 2007 01:30:58 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from pd2mr2so.prod.shaw.ca (pd2mr2so-qfe3.prod.shaw.ca [10.0.141.109]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JJT00GTB5GNNW20@l-daemon> for cvs-src@FreeBSD.org; Sun, 17 Jun 2007 19:29:11 -0600 (MDT) Received: from pn2ml3so.prod.shaw.ca ([10.0.121.147]) by pd2mr2so.prod.shaw.ca (Sun Java System Messaging Server 6.2-7.05 (built Sep 5 2006)) with ESMTP id <0JJT0009N5GK5C00@pd2mr2so.prod.shaw.ca> for cvs-src@FreeBSD.org; Sun, 17 Jun 2007 19:29:09 -0600 (MDT) Received: from hexahedron.daemonology.net ([24.82.18.31]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with SMTP id <0JJT0081Z5G75P41@l-daemon> for cvs-src@FreeBSD.org; Sun, 17 Jun 2007 19:28:55 -0600 (MDT) Received: (qmail 16013 invoked from network); Mon, 18 Jun 2007 01:28:41 +0000 Received: from unknown (HELO hexahedron.daemonology.net) (127.0.0.1) by localhost with SMTP; Mon, 18 Jun 2007 01:28:41 +0000 Date: Sun, 17 Jun 2007 18:28:40 -0700 From: Colin Percival In-reply-to: <200706180036.l5I0asac023540@repoman.freebsd.org> To: Tim Kientzle Message-id: <4675DFC8.8060108@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Enigmail-Version: 0.95.0 References: <200706180036.l5I0asac023540@repoman.freebsd.org> User-Agent: Thunderbird 2.0.0.0 (X11/20070606) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 01:30:58 -0000 Tim Kientzle wrote: > I fear I'll have to > avoid seeks under other circumstances. (For instance, tape drives on > FreeBSD seem to return garbage from lseek().) Is there any reason why the tape drivers can't be fixed? The idea of putting workarounds into bsdtar for a problem which could equally well be encountered by other applications seems a trifle strange. Colin Percival From owner-cvs-src@FreeBSD.ORG Mon Jun 18 01:43:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD02616A400; Mon, 18 Jun 2007 01:43:14 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B7DB013C44C; Mon, 18 Jun 2007 01:43:14 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I1hE4k008787; Mon, 18 Jun 2007 01:43:14 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I1hEX1008732; Mon, 18 Jun 2007 01:43:14 GMT (envelope-from delphij) Message-Id: <200706180143.l5I1hEX1008732@repoman.freebsd.org> From: Xin LI Date: Mon, 18 Jun 2007 01:43:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/tmpfs tmpfs_subr.c tmpfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 01:43:15 -0000 delphij 2007-06-18 01:43:13 UTC FreeBSD src repository Modified files: sys/fs/tmpfs tmpfs_subr.c tmpfs_vnops.c Log: MFp4: fix two locking problems: - Hold TMPFS_LOCK while updating tm_pages_used. - Hold vm page while doing uiomove. This will hopefully fix all known panics. Submitted by: Howard Su Revision Changes Path 1.2 +3 -0 src/sys/fs/tmpfs/tmpfs_subr.c 1.2 +4 -0 src/sys/fs/tmpfs/tmpfs_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 01:50:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 089C616A469; Mon, 18 Jun 2007 01:50:04 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EE21113C45B; Mon, 18 Jun 2007 01:50:03 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I1o3fI022552; Mon, 18 Jun 2007 01:50:03 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I1o3KI022545; Mon, 18 Jun 2007 01:50:03 GMT (envelope-from davidxu) Message-Id: <200706180150.l5I1o3KI022545@repoman.freebsd.org> From: David Xu Date: Mon, 18 Jun 2007 01:50:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 timer_create.2 timer_delete.2 timer_settime.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 01:50:04 -0000 davidxu 2007-06-18 01:50:03 UTC FreeBSD src repository Modified files: lib/libc/sys mq_close.2 mq_getattr.2 mq_notify.2 mq_open.2 mq_receive.2 mq_send.2 mq_setattr.2 timer_create.2 timer_delete.2 timer_settime.2 Log: Fix library names. Revision Changes Path 1.4 +1 -1 src/lib/libc/sys/mq_close.2 1.4 +1 -1 src/lib/libc/sys/mq_getattr.2 1.8 +1 -1 src/lib/libc/sys/mq_notify.2 1.8 +1 -1 src/lib/libc/sys/mq_open.2 1.5 +1 -1 src/lib/libc/sys/mq_receive.2 1.4 +1 -1 src/lib/libc/sys/mq_send.2 1.5 +1 -1 src/lib/libc/sys/mq_setattr.2 1.9 +1 -1 src/lib/libc/sys/timer_create.2 1.6 +1 -1 src/lib/libc/sys/timer_delete.2 1.8 +1 -1 src/lib/libc/sys/timer_settime.2 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 02:04:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 740CE16A400; Mon, 18 Jun 2007 02:04:39 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 679B013C480; Mon, 18 Jun 2007 02:04:39 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I24dau073107; Mon, 18 Jun 2007 02:04:39 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I24drw073100; Mon, 18 Jun 2007 02:04:39 GMT (envelope-from alc) Message-Id: <200706180204.l5I24drw073100@repoman.freebsd.org> From: Alan Cox Date: Mon, 18 Jun 2007 02:04:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_pageout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 02:04:39 -0000 alc 2007-06-18 02:04:39 UTC FreeBSD src repository Modified files: sys/vm vm_pageout.c Log: Eliminate unnecessary checks from vm_pageout_clean(): The page that is passed to vm_pageout_clean() cannot possibly be PG_UNMANAGED because it came from the inactive queue and PG_UNMANAGED pages are not in any page queue. Moreover, PG_UNMANAGED pages only exist in OBJT_PHYS objects, and all pages within a OBJT_PHYS object are PG_UNMANAGED. So, if the page that is passed to vm_pageout_clean() is not PG_UNMANAGED, then it cannot be from an OBJT_PHYS object and its neighbors from the same object cannot themselves be PG_UNMANAGED. Reviewed by: tegge Revision Changes Path 1.287 +4 -7 src/sys/vm/vm_pageout.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 02:05:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1368316A468; Mon, 18 Jun 2007 02:05:18 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E0AE513C44B; Mon, 18 Jun 2007 02:05:17 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I25Hpl073892; Mon, 18 Jun 2007 02:05:17 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I25H3Z073889; Mon, 18 Jun 2007 02:05:17 GMT (envelope-from kmacy) Message-Id: <200706180205.l5I25H3Z073889@repoman.freebsd.org> From: Kip Macy Date: Mon, 18 Jun 2007 02:05:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_include.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 02:05:18 -0000 kmacy 2007-06-18 02:05:17 UTC FreeBSD src repository Added files: (Branch: RELENG_6) sys/dev/cxgb cxgb_include.h Log: missed add Revision Changes Path 1.1.2.1 +41 -0 src/sys/dev/cxgb/cxgb_include.h (new) From owner-cvs-src@FreeBSD.ORG Mon Jun 18 02:09:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACFBC16A41F; Mon, 18 Jun 2007 02:09:09 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 878DF13C4CC; Mon, 18 Jun 2007 02:09:09 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I299ke084682; Mon, 18 Jun 2007 02:09:09 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I299UY084667; Mon, 18 Jun 2007 02:09:09 GMT (envelope-from ache) Message-Id: <200706180209.l5I299UY084667@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 18 Jun 2007 02:09:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/stdio fseek.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 02:09:09 -0000 ache 2007-06-18 02:09:08 UTC FreeBSD src repository Modified files: lib/libc/stdio fseek.c Log: Add mbstate clear missed in one of the cases. Move overflow check for fseek as early as needed. Revision Changes Path 1.43 +6 -5 src/lib/libc/stdio/fseek.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 02:13:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4345016A46C; Mon, 18 Jun 2007 02:13:05 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1DBC513C45A; Mon, 18 Jun 2007 02:13:05 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I2D4sA094127; Mon, 18 Jun 2007 02:13:04 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I2D4xg094095; Mon, 18 Jun 2007 02:13:04 GMT (envelope-from ache) Message-Id: <200706180213.l5I2D4xg094095@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 18 Jun 2007 02:13:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/stdio fseek.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 02:13:05 -0000 ache 2007-06-18 02:13:04 UTC FreeBSD src repository Modified files: lib/libc/stdio fseek.3 Log: Add rewind() to the list of functions which may fail and set errno Revision Changes Path 1.27 +2 -1 src/lib/libc/stdio/fseek.3 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 02:15:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1A2516A46F; Mon, 18 Jun 2007 02:15:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8BB1913C468; Mon, 18 Jun 2007 02:15:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I2Fx9l004237; Mon, 18 Jun 2007 02:15:59 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I2FxmD004200; Mon, 18 Jun 2007 02:15:59 GMT (envelope-from imp) Message-Id: <200706180215.l5I2FxmD004200@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 02:15:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_kue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 02:15:59 -0000 imp 2007-06-18 02:15:58 UTC FreeBSD src repository Modified files: sys/dev/usb if_kue.c Log: minor style(9) polishing # but we need a usb_match function, if we don't already have one... Revision Changes Path 1.80 +4 -7 src/sys/dev/usb/if_kue.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 03:24:39 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EC0916A421 for ; Mon, 18 Jun 2007 03:24:39 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 5070913C45D for ; Mon, 18 Jun 2007 03:24:39 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 93694 invoked from network); 18 Jun 2007 00:32:20 -0000 Received: from ppp-71-139-42-13.dsl.snfc21.pacbell.net (HELO ?10.0.0.15?) (nate-mail@71.139.42.13) by root.org with ESMTPA; 18 Jun 2007 00:32:20 -0000 Message-ID: <4675D28B.1000307@root.org> Date: Sun, 17 Jun 2007 17:32:11 -0700 From: Nate Lawson User-Agent: Thunderbird 2.0.0.0 (X11/20070511) MIME-Version: 1.0 To: cvs-src@freebsd.org, cvs-all@freebsd.org, src-committers@freebsd.org References: <20070618003009.8F1D716A4EE@hub.freebsd.org> In-Reply-To: <20070618003009.8F1D716A4EE@hub.freebsd.org> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: cvs commit: src/sys/dev/acpica acpi_hpet.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 03:24:39 -0000 Nate Lawson wrote: > njl 2007-06-18 00:29:55 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/dev/acpica acpi_hpet.c > Log: > Fix compile problem using older acpi-ca interface. > > Revision Changes Path > 1.5.2.4 +10 -6 src/sys/dev/acpica/acpi_hpet.c Apologies for the build breakage. Something weird happened on my box and I compile-tested the old version of this (???) while checking in the 7.x version. ACPI-CA is different in -current so I just had to use the old API for getting tables. Pointy hat time! -- Nate From owner-cvs-src@FreeBSD.ORG Mon Jun 18 04:35:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F60516A41F; Mon, 18 Jun 2007 04:35:37 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0AD9B13C447; Mon, 18 Jun 2007 04:35:37 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I4Zafb019148; Mon, 18 Jun 2007 04:35:36 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I4Za2O019141; Mon, 18 Jun 2007 04:35:36 GMT (envelope-from gshapiro) Message-Id: <200706180435.l5I4Za2O019141@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 18 Jun 2007 04:35:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man5 make.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 04:35:37 -0000 gshapiro 2007-06-18 04:35:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man5 make.conf.5 Log: MFC: You can never have enough documentation. Document the SENDMAIL_ALIASES, SENDMAIL_MAP_SRC, SENDMAIL_MAP_TYPE, and SENDMAIL_START_SCRIPT .Xr make.conf 5 variables. These are used in .Pa /etc/mail/Makefile . PR: conf/40548 Revision Changes Path 1.140 +40 -0 src/share/man/man5/make.conf.5 Revision Changes Path 1.121.2.11 +40 -0 src/share/man/man5/make.conf.5 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 04:36:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7120916A400; Mon, 18 Jun 2007 04:36:10 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4C9A913C448; Mon, 18 Jun 2007 04:36:10 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I4aAJO020068; Mon, 18 Jun 2007 04:36:10 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I4aA8C020067; Mon, 18 Jun 2007 04:36:10 GMT (envelope-from gshapiro) Message-Id: <200706180436.l5I4aA8C020067@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 18 Jun 2007 04:36:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/share/man/man5 make.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 04:36:10 -0000 gshapiro 2007-06-18 04:36:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man5 make.conf.5 Log: Sort SENDMAIL_* entries so I can... MFC: You can never have enough documentation. Document the SENDMAIL_ALIASES, SENDMAIL_MAP_SRC, SENDMAIL_MAP_TYPE, and SENDMAIL_START_SCRIPT .Xr make.conf 5 variables. These are used in .Pa /etc/mail/Makefile . PR: conf/40548 Revision Changes Path 1.140 +40 -0 src/share/man/man5/make.conf.5 Revision Changes Path 1.89.2.10 +93 -53 src/share/man/man5/make.conf.5 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 04:36:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B398C16A41F; Mon, 18 Jun 2007 04:36:31 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8F25713C4AE; Mon, 18 Jun 2007 04:36:31 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I4aV1X020883; Mon, 18 Jun 2007 04:36:31 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I4aV4Q020881; Mon, 18 Jun 2007 04:36:31 GMT (envelope-from gshapiro) Message-Id: <200706180436.l5I4aV4Q020881@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 18 Jun 2007 04:36:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/share/man/man5 make.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 04:36:31 -0000 gshapiro 2007-06-18 04:36:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man5 make.conf.5 Log: Sort the SENDMAIL_* entries so I can... MFC: You can never have enough documentation. Document the SENDMAIL_ALIASES, SENDMAIL_MAP_SRC, SENDMAIL_MAP_TYPE, and SENDMAIL_START_SCRIPT .Xr make.conf 5 variables. These are used in .Pa /etc/mail/Makefile . PR: conf/40548 Revision Changes Path 1.140 +40 -0 src/share/man/man5/make.conf.5 Revision Changes Path 1.12.2.39 +93 -45 src/share/man/man5/make.conf.5 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 04:52:11 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 745B916A400; Mon, 18 Jun 2007 04:52:11 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 4D2AA13C44B; Mon, 18 Jun 2007 04:52:11 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l5I4qAH7007880; Sun, 17 Jun 2007 21:52:10 -0700 (PDT) (envelope-from kientzle@freebsd.org) Message-ID: <46760F7A.8020209@freebsd.org> Date: Sun, 17 Jun 2007 21:52:10 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Colin Percival References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> In-Reply-To: <4675DFC8.8060108@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 04:52:11 -0000 Colin Percival wrote: > Tim Kientzle wrote: > >> I fear I'll have to avoid seeks ... tape drives on >> FreeBSD seem to return garbage from lseek(). > > Is there any reason why the tape drivers can't be fixed? Since people are running into this problem today on 6.2, I'm planning to fix it where I can. :-/ The basic problem is that an lseek() call to a tape drive returns success exactly as if it worked. Daniel O'Connor recently sent me the following ktrace from bsdtar doing a tar -t of an uncompressed tar archive from his Tandberg TS400 connected to an Adaptec 29160 controller: 5378 bsdtar CALL lseek(0x3,0,0,0x1) 5378 bsdtar RET lseek 51200/0xc800 5378 bsdtar CALL lseek(0x3,0,0x2f800,0x1) 5378 bsdtar RET lseek 245760/0x3c000 Note that the second call returns a new file position that's exactly 0x2f800 bytes beyond the former file position, even though nothing has actually happened. I think any of the following would be reasonable behaviors: * lseek() could return ESPIPE ("illegal seek") * lseek() could return an unchanged file offset (indicating that the file position was unchanged by the attempted seek). * lseek() could return ENOTSUP ("unsupported operation") As I said though, I just don't know that code well enough to propose a fix. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Mon Jun 18 05:44:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75AAB16A41F; Mon, 18 Jun 2007 05:44:39 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 512F813C48A; Mon, 18 Jun 2007 05:44:39 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I5idme048640; Mon, 18 Jun 2007 05:44:39 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I5idKA048636; Mon, 18 Jun 2007 05:44:39 GMT (envelope-from dougb) Message-Id: <200706180544.l5I5idKA048636@repoman.freebsd.org> From: Doug Barton Date: Mon, 18 Jun 2007 05:44:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc Makefile src/etc/namedb Makefile src/etc/namedb/master Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 05:44:39 -0000 dougb 2007-06-18 05:44:39 UTC FreeBSD src repository Modified files: etc Makefile etc/namedb Makefile Added files: etc/namedb/master Makefile Log: Add a namedb/master directory for the zone files I'm about to add, and switch to the more "normal" way of installing files for the namedb directory so that we can pick up the new subdir. Revision Changes Path 1.359 +9 -15 src/etc/Makefile 1.5 +6 -4 src/etc/namedb/Makefile 1.1 +9 -0 src/etc/namedb/master/Makefile (new) From owner-cvs-src@FreeBSD.ORG Mon Jun 18 05:58:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8512816A421; Mon, 18 Jun 2007 05:58:24 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7745913C448; Mon, 18 Jun 2007 05:58:24 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I5wOxj079298; Mon, 18 Jun 2007 05:58:24 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I5wOTc079291; Mon, 18 Jun 2007 05:58:24 GMT (envelope-from dougb) Message-Id: <200706180558.l5I5wOTc079291@repoman.freebsd.org> From: Doug Barton Date: Mon, 18 Jun 2007 05:58:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/namedb PROTO.localhost-v6.rev PROTO.localhost.rev make-localhost named.conf src/etc/namedb/master empty.db localhost-forward.db localhost-reverse.db X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 05:58:24 -0000 dougb 2007-06-18 05:58:23 UTC FreeBSD src repository Modified files: etc/namedb named.conf Added files: etc/namedb/master empty.db localhost-forward.db localhost-reverse.db Removed files: etc/namedb PROTO.localhost-v6.rev PROTO.localhost.rev make-localhost Log: Bring our default named configuration more in line with current best practices: 1. The old way of generating the localhost zones was not optimal both because they did not exist by default, and because they were not really aligned with BCP. There is no need to have the dynamic data that the make-localhost script generated, and good reasons to do this more "by the book." 2. In named.conf a. Clean up white space b. Add/clarify a few comments c. Slave zones from the root servers instead of using a hints file. This has several advantages, as described in the comments. d. Significantly revamp the default zones, including the forward localhost zone, and the reverse zones for IPv4 and IPv6 loopback addresses. There are extensive comments describing what is included and why. Interested readers should take the time to review the RFCs mentioned in the comments. There is also relevant information about the motivations for hosting these zones in the "work in progress" Internet-Draft, http://www.ietf.org/internet-drafts/draft-ietf-dnsop-default-local-zones-02.txt or its successor. It's also worth noting that a significant number of these empty zones are already included by default in the named binary without any user configuration. e. Because we're including a lot of examples of both local forward zones and slave zones in the default configuration, eliminate some of those examples. 3. Add new localhost-{forward|reverse} zone files, and an "empty" zone to support the changes in 2.d. above. The empty zone file isn't really empty in order to avoid a warning from BIND about a zone file that doesn't contain any A or AAAA records. Revision Changes Path 1.2 +0 -17 src/etc/namedb/PROTO.localhost-v6.rev (dead) 1.7 +0 -17 src/etc/namedb/PROTO.localhost.rev (dead) 1.8 +0 -49 src/etc/namedb/make-localhost (dead) 1.1 +11 -0 src/etc/namedb/master/empty.db (new) 1.1 +11 -0 src/etc/namedb/master/localhost-forward.db (new) 1.1 +13 -0 src/etc/namedb/master/localhost-reverse.db (new) 1.23 +180 -36 src/etc/namedb/named.conf From owner-cvs-src@FreeBSD.ORG Mon Jun 18 06:26:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 875C116A46C; Mon, 18 Jun 2007 06:26:36 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 0246913C483; Mon, 18 Jun 2007 06:26:34 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.14.1/8.14.1) with ESMTP id l5I66cYB034077; Mon, 18 Jun 2007 10:06:38 +0400 (MSD) (envelope-from ache@nagual.pp.ru) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nagual.pp.ru; s=default; t=1182146798; bh=l/vE/Ar3z/1srWanICCBzp3HAvMgEgHRanvm9p7 Cq/Y=; l=1570; h=Received:Date:From:To:Cc:Subject:Message-ID: Mail-Followup-To:References:MIME-Version:Content-Type: Content-Disposition:In-Reply-To:User-Agent; b=BzOSgod7QQsmY1AKVrYO AxQCWUG9L9IN20LEDYSPm3BT/hnDo5uQPQdPmJYMfSiJP2fSL48oomaq5MzVxKxxKGN APaHbi158d1Y9s9e9gfwy1vYjKRreQzQ7xYaEvWMTSCKYrMESAa91iMR5Rj8gthDZ0z f2iv0q0A+oBHwfPhc= Received: (from ache@localhost) by nagual.pp.ru (8.14.1/8.14.1/Submit) id l5I66cUa034076; Mon, 18 Jun 2007 10:06:38 +0400 (MSD) (envelope-from ache) Date: Mon, 18 Jun 2007 10:06:37 +0400 From: Andrey Chernov To: Tim Kientzle Message-ID: <20070618060637.GA34022@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , Colin Percival , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> <46760F7A.8020209@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46760F7A.8020209@freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Colin Percival Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 06:26:36 -0000 On Sun, Jun 17, 2007 at 09:52:10PM -0700, Tim Kientzle wrote: > Colin Percival wrote: > > Tim Kientzle wrote: > >> I fear I'll have to avoid seeks ... tape drives on > >> FreeBSD seem to return garbage from lseek(). > > Is there any reason why the tape drivers can't be fixed? > > Since people are running into this problem today > on 6.2, I'm planning to fix it where I can. :-/ > > The basic problem is that an lseek() call to a tape > drive returns success exactly as if it worked. > Daniel O'Connor recently sent me the following > ktrace from bsdtar doing a tar -t of an uncompressed > tar archive from his Tandberg TS400 connected to an > Adaptec 29160 controller: > > 5378 bsdtar CALL lseek(0x3,0,0,0x1) > 5378 bsdtar RET lseek 51200/0xc800 > 5378 bsdtar CALL lseek(0x3,0,0x2f800,0x1) > 5378 bsdtar RET lseek 245760/0x3c000 > > Note that the second call returns a new file position > that's exactly 0x2f800 bytes beyond the former file > position, even though nothing has actually happened. > > I think any of the following would be reasonable behaviors: > * lseek() could return ESPIPE ("illegal seek") > * lseek() could return an unchanged file offset > (indicating that the file position was unchanged by > the attempted seek). > * lseek() could return ENOTSUP ("unsupported operation") > As I said though, I just don't know that code well > enough to propose a fix. Then it should be fixed in the driver, please do not mask this bug in the bsdtar workaround. Ask adaptec driver people for help. -- http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Mon Jun 18 06:29:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A4F416A41F; Mon, 18 Jun 2007 06:29:46 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 56CA813C448; Mon, 18 Jun 2007 06:29:46 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I6Tk1l066023; Mon, 18 Jun 2007 06:29:46 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I6Tkij066019; Mon, 18 Jun 2007 06:29:46 GMT (envelope-from dougb) Message-Id: <200706180629.l5I6Tkij066019@repoman.freebsd.org> From: Doug Barton Date: Mon, 18 Jun 2007 06:29:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/namedb named.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 06:29:46 -0000 dougb 2007-06-18 06:29:45 UTC FreeBSD src repository Modified files: etc/namedb named.conf Log: Drop the default zones that are now covered by the new zones that were added in the last revision. Revision Changes Path 1.24 +4 -0 src/etc/namedb/named.conf From owner-cvs-src@FreeBSD.ORG Mon Jun 18 07:00:35 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 550F016A4CD; Mon, 18 Jun 2007 07:00:35 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.freebsd.org (Postfix) with ESMTP id C989113C45D; Mon, 18 Jun 2007 07:00:34 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (inchoate.gsoft.com.au [203.31.81.61]) (authenticated bits=0) by cain.gsoft.com.au (8.13.8/8.13.8) with ESMTP id l5I70WH9056563 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 18 Jun 2007 16:30:33 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: cvs-all@freebsd.org Date: Mon, 18 Jun 2007 16:30:10 +0930 User-Agent: KMail/1.9.5 References: <200706180036.l5I0asac023540@repoman.freebsd.org> <46760F7A.8020209@freebsd.org> <20070618060637.GA34022@nagual.pp.ru> In-Reply-To: <20070618060637.GA34022@nagual.pp.ru> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1569509.40l5KspnHf"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200706181630.24421.doconnor@gsoft.com.au> X-Spam-Score: -3.977 () ALL_TRUSTED,BAYES_00 X-Scanned-By: MIMEDefang 2.58 on 203.31.81.10 Cc: Andrey Chernov , Tim Kientzle , src-committers@freebsd.org, Colin Percival , cvs-src@freebsd.org Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 07:00:35 -0000 --nextPart1569509.40l5KspnHf Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 18 June 2007 15:36, Andrey Chernov wrote: > Then it should be fixed in the driver, please do not mask this bug in > the bsdtar workaround. Ask adaptec driver people for help. I think that masking the bug AND asking for help is the right thing to=20 do. It's silly to think that we need a stick to beat a coder over the head=20 so they'll fix a bug.. Isn't it? In the mean time I'd like a working tar even if the work around is=20 crude. How does a driver handle seek anyway? ioctl? =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart1569509.40l5KspnHf Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBGdi2I5ZPcIHs/zowRAqVoAJ9HEYTjXzFTO8maz7dKChX2d8RjlwCgjlk/ /ILJdO44Cu4a+UjAxiVbYiA= =0ySe -----END PGP SIGNATURE----- --nextPart1569509.40l5KspnHf-- From owner-cvs-src@FreeBSD.ORG Mon Jun 18 07:50:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E64F16A4A6; Mon, 18 Jun 2007 07:50:13 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc3-cdif2-0-0-cust64.cdif.cable.ntl.com [81.106.128.65]) by mx1.freebsd.org (Postfix) with ESMTP id 21C5813C4AD; Mon, 18 Jun 2007 07:50:12 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I0C03-000IXD-UP; Mon, 18 Jun 2007 08:50:11 +0100 Date: Mon, 18 Jun 2007 08:50:11 +0100 From: Ceri Davies To: Yar Tikhiy Message-ID: <20070618075011.GR84919@submonkey.net> References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WYfJCIN5rqlfy3K0" Content-Disposition: inline In-Reply-To: <200706171725.l5HHPr2c092609@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.15 (2007-04-06) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 07:50:13 -0000 --WYfJCIN5rqlfy3K0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 17, 2007 at 05:25:53PM +0000, Yar Tikhiy wrote: > yar 2007-06-17 17:25:53 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc/pam.d Makefile=20 > usr.sbin/cron/cron Makefile cron.8 cron.h database.c=20 > do_command.c=20 > usr.sbin/cron/lib Makefile entry.c=20 > Added files: > etc/pam.d cron=20 > Log: > Add PAM support to cron(8). Now cron(8) will skip commands scheduled > by unavailable accounts, e.g., those locked, expired, not allowed in at > the moment by nologin(5), or whatever, depending on cron's pam.conf(5). > This applies to personal crontabs only, /etc/crontab is unaffected. Thank you! Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --WYfJCIN5rqlfy3K0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGdjkzocfcwTS3JF8RAiEeAKDGbaroMd0wXwSkKWmOp6GYB3qhEQCeNrhd RcaJPY+Z8r25p3DEh/ckL+8= =7IXn -----END PGP SIGNATURE----- --WYfJCIN5rqlfy3K0-- From owner-cvs-src@FreeBSD.ORG Mon Jun 18 07:54:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B048516A41F; Mon, 18 Jun 2007 07:54:28 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8C68613C43E; Mon, 18 Jun 2007 07:54:28 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I7sST5040980; Mon, 18 Jun 2007 07:54:28 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I7sSYw040976; Mon, 18 Jun 2007 07:54:28 GMT (envelope-from rwatson) Message-Id: <200706180754.l5I7sSYw040976@repoman.freebsd.org> From: Robert Watson Date: Mon, 18 Jun 2007 07:54:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys priv.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 07:54:28 -0000 rwatson 2007-06-18 07:54:28 UTC FreeBSD src repository Modified files: sys/sys priv.h Log: Update comment: kernel privileges are, in fact sorted by subsytem. Revision Changes Path 1.15 +1 -1 src/sys/sys/priv.h From owner-cvs-src@FreeBSD.ORG Mon Jun 18 08:25:23 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6441316A400; Mon, 18 Jun 2007 08:25:23 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 3BE2613C457; Mon, 18 Jun 2007 08:25:23 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 4DB5B1A4D81; Mon, 18 Jun 2007 01:24:39 -0700 (PDT) Date: Mon, 18 Jun 2007 01:24:39 -0700 From: Alfred Perlstein To: Tim Kientzle Message-ID: <20070618082439.GD96936@elvis.mu.org> References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> <46760F7A.8020209@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46760F7A.8020209@freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, Colin Percival Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 08:25:23 -0000 * Tim Kientzle [070617 21:52] wrote: > > Note that the second call returns a new file position > that's exactly 0x2f800 bytes beyond the former file > position, even though nothing has actually happened. > > I think any of the following would be reasonable behaviors: > * lseek() could return ESPIPE ("illegal seek") > * lseek() could return an unchanged file offset > (indicating that the file position was unchanged by > the attempted seek). > * lseek() could return ENOTSUP ("unsupported operation") > As I said though, I just don't know that code well > enough to propose a fix. ENOTSUP seems to be the most "correct", although I sort of see it being the equivelant of dispaching a sign saying "bump" along the highway without actually fixing said bump. :( -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Mon Jun 18 08:29:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D528C16A41F; Mon, 18 Jun 2007 08:29:37 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 7977F13C465; Mon, 18 Jun 2007 08:29:37 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id A1645EB157F; Mon, 18 Jun 2007 16:29:36 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id BlQEgcdlCStd; Mon, 18 Jun 2007 16:29:30 +0800 (CST) Received: from LI-Xins-MacBook.local (sina152-194.staff.sina.com.cn [61.135.152.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id E74B4EB1535; Mon, 18 Jun 2007 16:29:25 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=iWk6NwlciLAi+Tbv+FbdzP94xWT8fVOWGn8UUMnhhglQdWIdfZZX6gG0naWUxkNWU kGe+fqYRuUpVSZgYuZyBQ== Message-ID: <46764262.1060408@delphij.net> Date: Mon, 18 Jun 2007 16:29:22 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: Yar Tikhiy References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> In-Reply-To: <200706171725.l5HHPr2c092609@repoman.freebsd.org> X-Enigmail-Version: 0.95.1 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig2B829E923D7AA3DF1780CF42" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 08:29:37 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig2B829E923D7AA3DF1780CF42 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, Yar Tikhiy wrote: > yar 2007-06-17 17:25:53 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc/pam.d Makefile=20 > usr.sbin/cron/cron Makefile cron.8 cron.h database.c=20 > do_command.c=20 > usr.sbin/cron/lib Makefile entry.c=20 > Added files: > etc/pam.d cron=20 > Log: > Add PAM support to cron(8). Now cron(8) will skip commands scheduled= > by unavailable accounts, e.g., those locked, expired, not allowed in = at > the moment by nologin(5), or whatever, depending on cron's pam.conf(5= ). > This applies to personal crontabs only, /etc/crontab is unaffected. This will silently break a lot of ports, for instance mail/mailman, which creates nologin(5) users with crontab entry. Can we for now (because we are near a new release) try not disabling nologin(5) users, and discuss a better solution? A possible alternative is to make a pam_ftpusers(8) alike PAM module which is marked as "sufficient" and explicitly pass /var/cron/allow users (especially ports) to override the policy. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig2B829E923D7AA3DF1780CF42 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGdkJiOfuToMruuMARCrAyAJoCpVfSb1XCUhBaUOdE9M5d8qO+bACggKJK 8JZeRLTVbaALTJUATjDfVvA= =rlbX -----END PGP SIGNATURE----- --------------enig2B829E923D7AA3DF1780CF42-- From owner-cvs-src@FreeBSD.ORG Mon Jun 18 08:59:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9906116A421; Mon, 18 Jun 2007 08:59:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7428113C480; Mon, 18 Jun 2007 08:59:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I8xelC011720; Mon, 18 Jun 2007 08:59:40 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I8xePQ011719; Mon, 18 Jun 2007 08:59:40 GMT (envelope-from delphij) Message-Id: <200706180859.l5I8xePQ011719@repoman.freebsd.org> From: Xin LI Date: Mon, 18 Jun 2007 08:59:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 08:59:40 -0000 delphij 2007-06-18 08:59:40 UTC FreeBSD src repository Modified files: . access Log: Forced commit to say that Rong-En Fan is now free from being mentored, he has done a very nice job. Approved by: core (implicit) Revision Changes Path 1.827 +0 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Mon Jun 18 09:00:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9D6516A46B; Mon, 18 Jun 2007 09:00:02 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BA89913C46C; Mon, 18 Jun 2007 09:00:01 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I9017k012028; Mon, 18 Jun 2007 09:00:01 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I901hn012024; Mon, 18 Jun 2007 09:00:01 GMT (envelope-from rafan) Message-Id: <200706180900.l5I901hn012024@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 18 Jun 2007 09:00:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 09:00:03 -0000 rafan 2007-06-18 09:00:01 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: /usr/lib/libvgl.so.4 was bumped last month (20070521). Approved by: delphij (mentor) Revision Changes Path 1.95 +1 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Mon Jun 18 09:18:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8117016A421; Mon, 18 Jun 2007 09:18:33 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.freebsd.org (Postfix) with ESMTP id 9CA5913C469; Mon, 18 Jun 2007 09:18:32 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.4) with ESMTP id l5I9IUGA007729; Mon, 18 Jun 2007 13:18:30 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l5I9ITOv007728; Mon, 18 Jun 2007 13:18:29 +0400 (MSD) (envelope-from yar) Date: Mon, 18 Jun 2007 13:18:29 +0400 From: Yar Tikhiy To: Robert Watson Message-ID: <20070618091829.GT30493@comp.chem.msu.su> References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> <20070617184206.C2416@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070617184206.C2416@fledge.watson.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 09:18:33 -0000 On Sun, Jun 17, 2007 at 06:42:40PM +0100, Robert Watson wrote: > > On Sun, 17 Jun 2007, Yar Tikhiy wrote: > > > Add PAM support to cron(8). Now cron(8) will skip commands scheduled > > by unavailable accounts, e.g., those locked, expired, not allowed in at > > the moment by nologin(5), or whatever, depending on cron's pam.conf(5). > > This applies to personal crontabs only, /etc/crontab is unaffected. > > > > In other words, now the account management policy will apply to > > commands scheduled by users via crontab(1) so that a user can no > > longer use cron(8) to set up a delayed backdoor and run commands > > during periods when the admin doesn't want him to. > > Nice work. Have you looked at doing something similar for .forward files > in Sendmail? Not yet. What is Sendmail supposed to do with user's mail if the account is unavailable for running mail filters, assume a temporary failure or just file mail to the default mailbox? -- Yar From owner-cvs-src@FreeBSD.ORG Mon Jun 18 09:28:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 89ED716A468; Mon, 18 Jun 2007 09:28:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6500313C465; Mon, 18 Jun 2007 09:28:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5I9SPCb034147; Mon, 18 Jun 2007 09:28:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5I9SPnL034146; Mon, 18 Jun 2007 09:28:25 GMT (envelope-from pjd) Message-Id: <200706180928.l5I9SPnL034146@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 18 Jun 2007 09:28:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_cache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 09:28:25 -0000 pjd 2007-06-18 09:28:25 UTC FreeBSD src repository Modified files: sys/kern vfs_cache.c Log: We only flush entries related to the given file system. Currently there are no 'invalid' cache entires - file system is responsible for keeping it that way. The comment should have been updated in rev.1.25. Revision Changes Path 1.113 +0 -3 src/sys/kern/vfs_cache.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 09:54:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A0E216A468; Mon, 18 Jun 2007 09:54:45 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id E5F1B13C469; Mon, 18 Jun 2007 09:54:43 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id AE25AEB15B3; Mon, 18 Jun 2007 17:54:31 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id R4NKgTuzK9pC; Mon, 18 Jun 2007 17:54:29 +0800 (CST) Received: from LI-Xins-MacBook.local (sina152-194.staff.sina.com.cn [61.135.152.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id A7267EB15B2; Mon, 18 Jun 2007 17:54:23 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=RDezJrRWzRDwtPDmzo1ZFEHFezJ3EMbA4SQRkn/NODadqZ7t2dMOwTXZ/S+uTxbDF e5SB9Tz++Mp6eO0ztLmbA== Message-ID: <4676564E.6060105@delphij.net> Date: Mon, 18 Jun 2007 17:54:22 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: Yar Tikhiy References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> <46764262.1060408@delphij.net> In-Reply-To: <46764262.1060408@delphij.net> X-Enigmail-Version: 0.95.1 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig932DA894C74D2DB146F614C1" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 09:54:45 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig932DA894C74D2DB146F614C1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable LI Xin wrote: > Hi, >=20 > Yar Tikhiy wrote: >> yar 2007-06-17 17:25:53 UTC >> >> FreeBSD src repository >> >> Modified files: >> etc/pam.d Makefile=20 >> usr.sbin/cron/cron Makefile cron.8 cron.h database.c=20 >> do_command.c=20 >> usr.sbin/cron/lib Makefile entry.c=20 >> Added files: >> etc/pam.d cron=20 >> Log: >> Add PAM support to cron(8). Now cron(8) will skip commands schedule= d >> by unavailable accounts, e.g., those locked, expired, not allowed in= at >> the moment by nologin(5), or whatever, depending on cron's pam.conf(= 5). >> This applies to personal crontabs only, /etc/crontab is unaffected. >=20 > This will silently break a lot of ports, for instance mail/mailman, > which creates nologin(5) users with crontab entry. Can we for now > (because we are near a new release) try not disabling nologin(5) users,= > and discuss a better solution? >=20 > A possible alternative is to make a pam_ftpusers(8) alike PAM module > which is marked as "sufficient" and explicitly pass /var/cron/allow > users (especially ports) to override the policy. Thanks to ru@, I should have noticed that nologin(5) is different from nologin(8) and this would not affect ports installations. Sorry for the confusion. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig932DA894C74D2DB146F614C1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGdlZOOfuToMruuMARCvUVAJ0ST17PuSUjhTOXWJWlxHV9FqCaHQCeP46d IPPVp3O5ul1/lo7tDd3dqOg= =wLG8 -----END PGP SIGNATURE----- --------------enig932DA894C74D2DB146F614C1-- From owner-cvs-src@FreeBSD.ORG Mon Jun 18 10:04:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3202C16A46B; Mon, 18 Jun 2007 10:04:17 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.freebsd.org (Postfix) with ESMTP id 690D613C44B; Mon, 18 Jun 2007 10:04:14 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.4) with ESMTP id l5IA3jbw008675; Mon, 18 Jun 2007 14:03:45 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l5IA3iFe008674; Mon, 18 Jun 2007 14:03:44 +0400 (MSD) (envelope-from yar) Date: Mon, 18 Jun 2007 14:03:44 +0400 From: Yar Tikhiy To: LI Xin Message-ID: <20070618100344.GU30493@comp.chem.msu.su> References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> <46764262.1060408@delphij.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46764262.1060408@delphij.net> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 10:04:17 -0000 [Re-replying to the list] On Mon, Jun 18, 2007 at 04:29:22PM +0800, LI Xin wrote: > Hi, > > Yar Tikhiy wrote: > > yar 2007-06-17 17:25:53 UTC > > > > FreeBSD src repository > > > > Modified files: > > etc/pam.d Makefile > > usr.sbin/cron/cron Makefile cron.8 cron.h database.c > > do_command.c > > usr.sbin/cron/lib Makefile entry.c > > Added files: > > etc/pam.d cron > > Log: > > Add PAM support to cron(8). Now cron(8) will skip commands scheduled > > by unavailable accounts, e.g., those locked, expired, not allowed in at > > the moment by nologin(5), or whatever, depending on cron's pam.conf(5). > > This applies to personal crontabs only, /etc/crontab is unaffected. > > This will silently break a lot of ports, for instance mail/mailman, > which creates nologin(5) users with crontab entry. Can we for now > (because we are near a new release) try not disabling nologin(5) users, > and discuss a better solution? I guess that the ports create nologin(8) users, that is, users with their shell set to /usr/sbin/nologin. Such users also should have a single asterisk in their password hash field to denote a system account. Nevertheless, that doesn't prevent such users' crontab commands from running after my change. With the default PAM configuration, user's crontab commands won't run if at least one of the following is true: - the user account is expired (but expired password isn't a reason not to run commands) - the user account is administratively locked out using "pw lock" (this isn't the same as a single asterisk in the password hash field) - the admin has temporarily disabled user logins by creating a nologin(5) file, usually /var/run/nologin. Therefore, the ports shouldn't be broken by my change and their crontab commands will happily run most of time, except for system maintenance periods when /var/run/nologin exists, which can be a desired effect. > A possible alternative is to make a pam_ftpusers(8) alike PAM module > which is marked as "sufficient" and explicitly pass /var/cron/allow > users (especially ports) to override the policy. If /var/cron/allow exists, then it's the users listed in it who are subject to the PAM check in cron(8) as the rest of users just cannot use cron(8). Consequently, there is no reason for the new module. Note that by default we don't install /var/cron/allow or /var/cron/deny, we just allow any user to use cron(8). -- Yar From owner-cvs-src@FreeBSD.ORG Mon Jun 18 10:06:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8A0D16A468; Mon, 18 Jun 2007 10:06:55 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.freebsd.org (Postfix) with ESMTP id 438B013C45D; Mon, 18 Jun 2007 10:06:53 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.4) with ESMTP id l5IA6NSJ008749; Mon, 18 Jun 2007 14:06:23 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.4/Submit) id l5IA6N5a008748; Mon, 18 Jun 2007 14:06:23 +0400 (MSD) (envelope-from yar) Date: Mon, 18 Jun 2007 14:06:22 +0400 From: Yar Tikhiy To: LI Xin Message-ID: <20070618100622.GV30493@comp.chem.msu.su> References: <200706171725.l5HHPr2c092609@repoman.freebsd.org> <46764262.1060408@delphij.net> <4676564E.6060105@delphij.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4676564E.6060105@delphij.net> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/pam.d Makefile cron src/usr.sbin/cron/cron Makefile cron.8 cron.h database.c do_command.c src/usr.sbin/cron/lib Makefile entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 10:06:55 -0000 On Mon, Jun 18, 2007 at 05:54:22PM +0800, LI Xin wrote: > LI Xin wrote: > > Hi, > > > > Yar Tikhiy wrote: > >> yar 2007-06-17 17:25:53 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> etc/pam.d Makefile > >> usr.sbin/cron/cron Makefile cron.8 cron.h database.c > >> do_command.c > >> usr.sbin/cron/lib Makefile entry.c > >> Added files: > >> etc/pam.d cron > >> Log: > >> Add PAM support to cron(8). Now cron(8) will skip commands scheduled > >> by unavailable accounts, e.g., those locked, expired, not allowed in at > >> the moment by nologin(5), or whatever, depending on cron's pam.conf(5). > >> This applies to personal crontabs only, /etc/crontab is unaffected. > > > > This will silently break a lot of ports, for instance mail/mailman, > > which creates nologin(5) users with crontab entry. Can we for now > > (because we are near a new release) try not disabling nologin(5) users, > > and discuss a better solution? > > > > A possible alternative is to make a pam_ftpusers(8) alike PAM module > > which is marked as "sufficient" and explicitly pass /var/cron/allow > > users (especially ports) to override the policy. > > Thanks to ru@, I should have noticed that nologin(5) is different from > nologin(8) and this would not affect ports installations. > > Sorry for the confusion. Thank you for raising this issue! It clearly deserved an explanation. -- Yar From owner-cvs-src@FreeBSD.ORG Mon Jun 18 10:20:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F3FB16A469; Mon, 18 Jun 2007 10:20:33 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1487813C487; Mon, 18 Jun 2007 10:20:33 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IAKWCj085576; Mon, 18 Jun 2007 10:20:32 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IAKWpb085572; Mon, 18 Jun 2007 10:20:32 GMT (envelope-from brueffer) Message-Id: <200706181020.l5IAKWpb085572@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 18 Jun 2007 10:20:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/net sctp_bindx.3 sctp_connectx.3 sctp_freepaddrs.3 sctp_getaddrlen.3 sctp_getassocid.3 sctp_getpaddrs.3 sctp_opt_info.3 sctp_recvmsg.3 sctp_send.3 sctp_sendmsg.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 10:20:33 -0000 brueffer 2007-06-18 10:20:32 UTC FreeBSD src repository Modified files: lib/libc/net sctp_bindx.3 sctp_connectx.3 sctp_freepaddrs.3 sctp_getaddrlen.3 sctp_getassocid.3 sctp_getpaddrs.3 sctp_opt_info.3 sctp_recvmsg.3 sctp_send.3 sctp_sendmsg.3 Log: Major cleanup: mdoc macros, style, typos etc. Revision Changes Path 1.3 +13 -8 src/lib/libc/net/sctp_bindx.3 1.3 +9 -7 src/lib/libc/net/sctp_connectx.3 1.3 +6 -9 src/lib/libc/net/sctp_freepaddrs.3 1.3 +16 -9 src/lib/libc/net/sctp_getaddrlen.3 1.3 +3 -4 src/lib/libc/net/sctp_getassocid.3 1.3 +8 -8 src/lib/libc/net/sctp_getpaddrs.3 1.3 +14 -8 src/lib/libc/net/sctp_opt_info.3 1.3 +69 -49 src/lib/libc/net/sctp_recvmsg.3 1.3 +87 -57 src/lib/libc/net/sctp_send.3 1.3 +95 -57 src/lib/libc/net/sctp_sendmsg.3 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 11:07:26 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61D7F16A400; Mon, 18 Jun 2007 11:07:26 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.freebsd.org (Postfix) with ESMTP id DEB9F13C468; Mon, 18 Jun 2007 11:07:25 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (ppp100-134.lns10.adl6.internode.on.net [121.45.100.134]) (authenticated bits=0) by cain.gsoft.com.au (8.13.8/8.13.8) with ESMTP id l5IB7Nfl061714 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 18 Jun 2007 20:37:24 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: cvs-all@freebsd.org Date: Mon, 18 Jun 2007 20:37:06 +0930 User-Agent: KMail/1.9.5 References: <200706180036.l5I0asac023540@repoman.freebsd.org> <46760F7A.8020209@freebsd.org> <20070618082439.GD96936@elvis.mu.org> In-Reply-To: <20070618082439.GD96936@elvis.mu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3478746.S2tAzr1SuM"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200706182037.15736.doconnor@gsoft.com.au> X-Spam-Score: -2.312 () BAYES_00 X-Scanned-By: MIMEDefang 2.58 on 203.31.81.10 Cc: cvs-src@freebsd.org, Tim Kientzle , Alfred Perlstein , src-committers@freebsd.org, Colin Percival Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 11:07:26 -0000 --nextPart3478746.S2tAzr1SuM Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 18 June 2007 17:54, Alfred Perlstein wrote: > > * lseek() could return ENOTSUP ("unsupported operation") > > As I said though, I just don't know that code well > > enough to propose a fix. > > ENOTSUP seems to be the most "correct", although I sort of > see it being the equivelant of dispaching a sign saying > "bump" along the highway without actually fixing said > bump. :( Depends how hard it is to get a drive to seek :) =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart3478746.S2tAzr1SuM Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBGdmdj5ZPcIHs/zowRAnCRAJ4jfTvvJYIm3CRo6X0ofUuDoc944ACfSKgf 80qWRJqQimEzHptwkeoEEbk= =0oCK -----END PGP SIGNATURE----- --nextPart3478746.S2tAzr1SuM-- From owner-cvs-src@FreeBSD.ORG Mon Jun 18 11:07:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2ACEE16A56E; Mon, 18 Jun 2007 11:07:32 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail18.syd.optusnet.com.au (mail18.syd.optusnet.com.au [211.29.132.199]) by mx1.freebsd.org (Postfix) with ESMTP id 7BF4C13C45D; Mon, 18 Jun 2007 11:07:31 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c220-239-235-248.carlnfd3.nsw.optusnet.com.au (c220-239-235-248.carlnfd3.nsw.optusnet.com.au [220.239.235.248]) by mail18.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id l5IB7QU4005567 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 18 Jun 2007 21:07:29 +1000 Date: Mon, 18 Jun 2007 21:07:26 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Tim Kientzle In-Reply-To: <46760F7A.8020209@freebsd.org> Message-ID: <20070618195605.J43008@delplex.bde.org> References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> <46760F7A.8020209@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Colin Percival Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 11:07:33 -0000 On Sun, 17 Jun 2007, Tim Kientzle wrote: > Colin Percival wrote: >> Tim Kientzle wrote: >> >>> I fear I'll have to avoid seeks ... tape drives on >>> FreeBSD seem to return garbage from lseek(). >> >> Is there any reason why the tape drivers can't be fixed? lseek(2) succeeds for almost all file types except pipes. It just changes the file offset. The underlying file "driver" is not consulted except to check (f_ops->fo_flags & DFLAG_SEEKABLE). A single fileops flag like this cannot handle any variations between files under one fileops, and using one gives bugs like the following: - the (non-)seekability of fifos was broken for several years by not having a fileops struct in fifofs. The generic fileops for "vnodes" was misused, and that fileops of course has to have DFLAG_SEEKABLE set so that lseek() succeeds on regular files, so lseek() succeded bogusly on fifos. - devfs's fileops is used for all device files. It of course has to have DFLAG_SEEKABLE set so that lseek() succeeds on disks. Thus lseek() succeeds bogusly for amlmost all device files except disks, including tapes. The success of lseek() doesn't mean that i/o at the resulting offset is possible or even that the resulting offset is considered when doing i/o. Not considering the resulting offset is the only thing that is clearly a bug here. Among device files, disks are approximately the only subtype where the offset is even considered. This works in some cases as follows: - physio(9) passes the offset down - physio() also sets b_blkno for compatibility. This has always been broken, since physio() blindly discards any residual bytes if the ofset is not a multiple of DEV_BSIZE. This used to do bad things in disk drivers when userland seeks to an offset that is not a multiple of DEV_BSIZE. - Now, most disks are handled by geom. geom ignores b_blkno and converts the offset to a block nmber itself. It returns EINVAL at i/o time if the offset is not a multiple of the sector size. This is not the only way that an offset can be invalid. geom returns the wrong error EIO for offsets beyond the end of the media. Tape devices should probably work similarly -- reject offsets that they can't handle at i/o time. This might be all offsets except 0. dd(1) has some messes to handle this problem. It depends on tape devices setting D_TAPE in their cdevsw. At least ast and sa seem to do this correctly. It never trusts lseek() to determine seekability of devices, but depends on disk devices setting D_DISK and memory devices setting D_MEM in their cdevsw to determine seekability. It and other things really want a per-file D_SEEKABLE, but that is not available, especially in userland across all OS's. The FreeBSD ioctl to read the cdevsw flags is also very unportable. 4.4BSD dd refuses to seek on what it thinks are cdevs, pipes and tapes. It uses the MTIOCGET ioctl to attempt to determine if a devices is a tape. > The basic problem is that an lseek() call to a tape > drive returns success exactly as if it worked. > Daniel O'Connor recently sent me the following > ktrace from bsdtar doing a tar -t of an uncompressed > tar archive from his Tandberg TS400 connected to an > Adaptec 29160 controller: > > 5378 bsdtar CALL lseek(0x3,0,0,0x1) > 5378 bsdtar RET lseek 51200/0xc800 > 5378 bsdtar CALL lseek(0x3,0,0x2f800,0x1) > 5378 bsdtar RET lseek 245760/0x3c000 > > Note that the second call returns a new file position > that's exactly 0x2f800 bytes beyond the former file > position, even though nothing has actually happened. Because lseek() doesn't go anywhere near the device driver. I think it is correct for lseek() to have no physical effect until i/o time. > I think any of the following would be reasonable behaviors: > * lseek() could return ESPIPE ("illegal seek") > * lseek() could return an unchanged file offset > (indicating that the file position was unchanged by > the attempted seek). > * lseek() could return ENOTSUP ("unsupported operation") > As I said though, I just don't know that code well > enough to propose a fix. lseek(9) is trivial compared with making all drivers (or even one) actually understand seeking :-). Another minor problem is that top-level code blindly advances the file offset after successful i/o, although the offset may be meaningless. Subsequent lseek(... SEEK_CUR) then show the bogus offset. Bruce From owner-cvs-src@FreeBSD.ORG Mon Jun 18 12:03:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAEA316A41F; Mon, 18 Jun 2007 12:03:12 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C3FEC13C45E; Mon, 18 Jun 2007 12:03:12 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IC3CJt078431; Mon, 18 Jun 2007 12:03:12 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IC327K077189; Mon, 18 Jun 2007 12:03:02 GMT (envelope-from yar) Message-Id: <200706181203.l5IC327K077189@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 18 Jun 2007 12:03:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 12:03:13 -0000 yar 2007-06-18 12:03:02 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Note PAM support in atrun(8) and cron(8). Revision Changes Path 1.1041 +19 -0 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Mon Jun 18 13:38:29 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B969016A421; Mon, 18 Jun 2007 13:38:29 +0000 (UTC) (envelope-from tom@tomjudge.com) Received: from s200aog12.obsmtp.com (s200aog12.obsmtp.com [207.126.144.126]) by mx1.freebsd.org (Postfix) with SMTP id 87D9B13C46E; Mon, 18 Jun 2007 13:38:26 +0000 (UTC) (envelope-from tom@tomjudge.com) Received: from source ([217.206.187.80]) by eu1sys200aob012.postini.com ([207.126.147.11]) with SMTP; Mon, 18 Jun 2007 13:38:26 UTC Received: from [10.0.0.89] (bill.mintel.co.uk [10.0.0.89]) by rodney.mintel.co.uk (Postfix) with ESMTP id EF62418141C; Mon, 18 Jun 2007 14:05:39 +0100 (BST) Message-ID: <467682C3.4020701@tomjudge.com> Date: Mon, 18 Jun 2007 14:04:03 +0100 From: Tom Judge User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: Andre Oppermann References: <200706110155.l5B1t9d9043150@repoman.freebsd.org> <466CFBE2.1090907@freebsd.org> <20070611074456.GE39661@cdnetworks.co.kr> <466CFEC1.6080100@freebsd.org> In-Reply-To: <466CFEC1.6080100@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: pyunyh@gmail.com, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, rwatson@freebsd.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/msk if_msk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 13:38:29 -0000 Andre Oppermann wrote: > Pyun YongHyeon wrote: >> On Mon, Jun 11, 2007 at 09:38:10AM +0200, Andre Oppermann wrote: >> > Pyun YongHyeon wrote: >> > >yongari 2007-06-11 01:55:09 UTC >> > > >> > > FreeBSD src repository >> > > >> > > Modified files: >> > > sys/dev/msk if_msk.c > > Log: >> > > Disable automatic IP ID increment. Due to a hardware bug the >> automatic >> > > IP ID increment in TSO case generated corrupted IP packets. >> > > This change brings back TSO capability. >> > > > > Revision Changes Path >> > > 1.16 +0 -15 src/sys/dev/msk/if_msk.c >> > > Please add check for the DF (Don't fragment) bit in the IP header. >> > Otherwise we may run into trouble when fragmentation happens along >> > the path. We almost always set DF on TCP connections. If it is not >> > set please return EMSGSIZE which will cause TSO to be turned off. >> > >> Is there any way to return EMSGSIZE to upper layer? >> if_start has return type void. >> Or just dropping the packet if DF bit was not set is enough? > > Dropping the packet is not enough. I forgot the IF queue which > separates the downpath from the encap function... Don't know > how you can pass up the error. Robert wanted to change the drivers > queuing model, that would make it possible. CC'ed. > Sorry for jumping in here, but could you not pass the message back up by dropping the packet and sending a ICMP error back up the stack with the Error code set for "Fragmentation needed and DF set" and set the MTU hint to the current interface MTU? Or is this a stupid idea? Tom From owner-cvs-src@FreeBSD.ORG Mon Jun 18 13:43:58 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E41B16A400; Mon, 18 Jun 2007 13:43:58 +0000 (UTC) (envelope-from rrs@cisco.com) Received: from sj-iport-6.cisco.com (sj-iport-6.cisco.com [171.71.176.117]) by mx1.freebsd.org (Postfix) with ESMTP id 1A40D13C447; Mon, 18 Jun 2007 13:43:58 +0000 (UTC) (envelope-from rrs@cisco.com) Received: from sj-dkim-2.cisco.com ([171.71.179.186]) by sj-iport-6.cisco.com with ESMTP; 18 Jun 2007 06:43:58 -0700 X-IronPort-AV: i="4.16,435,1175497200"; d="scan'208"; a="167221201:sNHT46713060" Received: from sj-core-4.cisco.com (sj-core-4.cisco.com [171.68.223.138]) by sj-dkim-2.cisco.com (8.12.11/8.12.11) with ESMTP id l5IDhvZM003148; Mon, 18 Jun 2007 06:43:57 -0700 Received: from xbh-sjc-211.amer.cisco.com (xbh-sjc-211.cisco.com [171.70.151.144]) by sj-core-4.cisco.com (8.12.10/8.12.6) with ESMTP id l5IDhtV1016840; Mon, 18 Jun 2007 13:43:57 GMT Received: from xfe-sjc-212.amer.cisco.com ([171.70.151.187]) by xbh-sjc-211.amer.cisco.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 18 Jun 2007 06:43:55 -0700 Received: from [127.0.0.1] ([171.68.225.134]) by xfe-sjc-212.amer.cisco.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 18 Jun 2007 06:43:55 -0700 Message-ID: <46768C8B.3000608@cisco.com> Date: Mon, 18 Jun 2007 09:45:47 -0400 From: Randall Stewart User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20070601 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christian Brueffer References: <200706181020.l5IAKWpb085572@repoman.freebsd.org> In-Reply-To: <200706181020.l5IAKWpb085572@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 18 Jun 2007 13:43:55.0076 (UTC) FILETIME=[B6AFF840:01C7B1AE] DKIM-Signature: v=0.5; a=rsa-sha256; q=dns/txt; l=1242; t=1182174237; x=1183038237; c=relaxed/simple; s=sjdkim2002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; i=rrs@cisco.com; z=From:=20Randall=20Stewart=20 |Subject:=20Re=3A=20cvs=20commit=3A=20src/lib/libc/net=20sctp_bindx.3=20s ctp_connectx.3=20=20=20=0A=20=20=20=20=20=20sctp_freepaddrs.3=20sctp_getad drlen.3=20sctp_getassocid.3=20=20=20=20=20=20=20=20=20sctp_getpaddrs.3=0A= 20sctp_opt_info.3=20sctp_recvmsg.3=20sctp_send.3=20=20=20=20=20=20=20=20=2 0sctp_sendmsg.3 |Sender:=20; bh=Q52CuH2yu/Xem0UiKC9CvXmXxyhekUfFipTEpF+4sHc=; b=EGe3kteqJRCnD6x/yiIlad2LBKvxMO86phYGC3OBHjQtrIG96LuIuO0Qa+NxbyamQP+ZIhRb c8rXzOFI6oOhxKPJRFW4IRCPlNJXFCnFOfiCczFjgINk4RG0ypTftCD1; Authentication-Results: sj-dkim-2; header.From=rrs@cisco.com; dkim=pass (sig from cisco.com/sjdkim2002 verified; ); Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net sctp_bindx.3 sctp_connectx.3 sctp_freepaddrs.3 sctp_getaddrlen.3 sctp_getassocid.3 sctp_getpaddrs.3 sctp_opt_info.3 sctp_recvmsg.3 sctp_send.3 sctp_sendmsg.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 13:43:58 -0000 Christian: Thanks :-D R Christian Brueffer wrote: > brueffer 2007-06-18 10:20:32 UTC > > FreeBSD src repository > > Modified files: > lib/libc/net sctp_bindx.3 sctp_connectx.3 > sctp_freepaddrs.3 sctp_getaddrlen.3 > sctp_getassocid.3 sctp_getpaddrs.3 > sctp_opt_info.3 sctp_recvmsg.3 > sctp_send.3 sctp_sendmsg.3 > Log: > Major cleanup: mdoc macros, style, typos etc. > > Revision Changes Path > 1.3 +13 -8 src/lib/libc/net/sctp_bindx.3 > 1.3 +9 -7 src/lib/libc/net/sctp_connectx.3 > 1.3 +6 -9 src/lib/libc/net/sctp_freepaddrs.3 > 1.3 +16 -9 src/lib/libc/net/sctp_getaddrlen.3 > 1.3 +3 -4 src/lib/libc/net/sctp_getassocid.3 > 1.3 +8 -8 src/lib/libc/net/sctp_getpaddrs.3 > 1.3 +14 -8 src/lib/libc/net/sctp_opt_info.3 > 1.3 +69 -49 src/lib/libc/net/sctp_recvmsg.3 > 1.3 +87 -57 src/lib/libc/net/sctp_send.3 > 1.3 +95 -57 src/lib/libc/net/sctp_sendmsg.3 > -- Randall Stewart NSSTG - Cisco Systems Inc. 803-345-0369 803-317-4952 (cell) From owner-cvs-src@FreeBSD.ORG Mon Jun 18 13:57:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 775D716A400; Mon, 18 Jun 2007 13:57:38 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4F1FC13C45E; Mon, 18 Jun 2007 13:57:38 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IDvcGQ096463; Mon, 18 Jun 2007 13:57:38 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IDvc6J096462; Mon, 18 Jun 2007 13:57:38 GMT (envelope-from rrs) Message-Id: <200706181357.l5IDvc6J096462@repoman.freebsd.org> From: Randall Stewart Date: Mon, 18 Jun 2007 13:57:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp.h sctp_input.c sctp_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 13:57:38 -0000 rrs 2007-06-18 13:57:38 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_input.c sctp_output.c Log: Add additional logging level mask for packet_logging too. Revision Changes Path 1.15 +1 -0 src/sys/netinet/sctp.h 1.44 +2 -1 src/sys/netinet/sctp_input.c 1.42 +16 -8 src/sys/netinet/sctp_output.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 14:40:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4EE4A16A46D; Mon, 18 Jun 2007 14:40:20 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 25D0713C4C1; Mon, 18 Jun 2007 14:40:20 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IEeKNv041063; Mon, 18 Jun 2007 14:40:20 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IEeJqg041054; Mon, 18 Jun 2007 14:40:19 GMT (envelope-from delphij) Message-Id: <200706181440.l5IEeJqg041054@repoman.freebsd.org> From: Xin LI Date: Mon, 18 Jun 2007 14:40:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/tmpfs tmpfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 14:40:20 -0000 delphij 2007-06-18 14:40:19 UTC FreeBSD src repository Modified files: sys/fs/tmpfs tmpfs_subr.c Log: Use vfs_timestamp() instead of nanotime() - make it up to the user to make decisions about how detail they wanted timestamps to have. Revision Changes Path 1.3 +1 -1 src/sys/fs/tmpfs/tmpfs_subr.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 17:25:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77CBD16A41F; Mon, 18 Jun 2007 17:25:29 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id 1E3B813C4AE; Mon, 18 Jun 2007 17:25:28 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5IHPOul003698 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 18 Jun 2007 10:25:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4676BF5A.5020400@FreeBSD.org> Date: Mon, 18 Jun 2007 10:22:34 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Xin LI References: <200706160204.l5G24khs074682@repoman.freebsd.org> In-Reply-To: <200706160204.l5G24khs074682@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/tmpfs Makefile h_funcs.subr h_tools.c t_create t_dots t_exec t_id_gen t_link t_mkdir t_mount t_pipes t_read_write t_readdir t_remove t_rename t_rmdir t_setattr t_sizes t_sockets t_statvfs t_symlink t_times t_trail_slash ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 17:25:29 -0000 Are those really fs-specific? -Maxim Xin LI wrote: > delphij 2007-06-16 02:04:45 UTC > > FreeBSD src repository > > Added files: > tools/regression/tmpfs Makefile h_funcs.subr h_tools.c > t_create t_dots t_exec t_id_gen t_link > t_mkdir t_mount t_pipes t_read_write > t_readdir t_remove t_rename t_rmdir > t_setattr t_sizes t_sockets t_statvfs > t_symlink t_times t_trail_slash > t_truncate t_vnd t_vnode_leak > Log: > MFp4: Add regression tests for tmpfs. > > Obtained from: NetBSD via p4 > Submitted by: Howard Su > > Revision Changes Path > 1.1 +39 -0 src/tools/regression/tmpfs/Makefile (new) > 1.1 +191 -0 src/tools/regression/tmpfs/h_funcs.subr (new) > 1.1 +283 -0 src/tools/regression/tmpfs/h_tools.c (new) > 1.1 +98 -0 src/tools/regression/tmpfs/t_create (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_dots (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_exec (new) > 1.1 +75 -0 src/tools/regression/tmpfs/t_id_gen (new) > 1.1 +108 -0 src/tools/regression/tmpfs/t_link (new) > 1.1 +110 -0 src/tools/regression/tmpfs/t_mkdir (new) > 1.1 +85 -0 src/tools/regression/tmpfs/t_mount (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_pipes (new) > 1.1 +81 -0 src/tools/regression/tmpfs/t_read_write (new) > 1.1 +93 -0 src/tools/regression/tmpfs/t_readdir (new) > 1.1 +83 -0 src/tools/regression/tmpfs/t_remove (new) > 1.1 +150 -0 src/tools/regression/tmpfs/t_rename (new) > 1.1 +114 -0 src/tools/regression/tmpfs/t_rmdir (new) > 1.1 +115 -0 src/tools/regression/tmpfs/t_setattr (new) > 1.1 +99 -0 src/tools/regression/tmpfs/t_sizes (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_sockets (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_statvfs (new) > 1.1 +88 -0 src/tools/regression/tmpfs/t_symlink (new) > 1.1 +114 -0 src/tools/regression/tmpfs/t_times (new) > 1.1 +61 -0 src/tools/regression/tmpfs/t_trail_slash (new) > 1.1 +64 -0 src/tools/regression/tmpfs/t_truncate (new) > 1.1 +95 -0 src/tools/regression/tmpfs/t_vnd (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_vnode_leak (new) > > From owner-cvs-src@FreeBSD.ORG Mon Jun 18 17:31:59 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5563516A47D; Mon, 18 Jun 2007 17:31:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 77B8213C487; Mon, 18 Jun 2007 17:31:58 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l5IHVlDV064463; Mon, 18 Jun 2007 13:31:47 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Bruce Evans Date: Mon, 18 Jun 2007 13:20:26 -0400 User-Agent: KMail/1.9.6 References: <200706051420.l55EKEih018925@repoman.freebsd.org> <200706151709.59898.jhb@freebsd.org> <20070617165540.V22900@besplex.bde.org> In-Reply-To: <20070617165540.V22900@besplex.bde.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706181320.27338.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 18 Jun 2007 13:31:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3454/Mon Jun 18 02:25:23 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: src-committers@freebsd.org, Kip Macy , cvs-all@freebsd.org, Attilio Rao , cvs-src@freebsd.org, Kostik Belousov , Jeff Roberson Subject: Re: cvs commit: src/sys/kern kern_mutex.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 17:31:59 -0000 On Sunday 17 June 2007 03:40:12 am Bruce Evans wrote: > On Fri, 15 Jun 2007, John Baldwin wrote: > > > On Friday 15 June 2007 04:46:30 pm Bruce Evans wrote: > >> On Mon, 11 Jun 2007, John Baldwin wrote: > > >>> As to why preemption doesn't work for SMP, a thread only knows to preempt > > if > >>> it makes a higher priority thread runnable. This happens in mtx_unlock > > when > >>> we wakeup a thread waiting on the lock, in wakeup, or when an interrupt > >>> thread is scheduled (the interrupted thread "sees" the ithread being > >>> scheduled). If another thread on another CPU makes a thread runnable, the > >>> thread on the first CPU has no idea unless the second CPU explicitly sends > > a > >>> message (i.e. IPI) to the first CPU asking it to yield instead. > >> > >> I believe SCHED_ULE does the IPI. > > > > If you add 'options IPI_PREEMPTION' I think the IPI is enabled in 4BSD. > > I added this about 6 months ago, but it didn't help then and still doesn't, > at least for SCHED_4BSD and relative to voluntarily yielding in the > PREEMPTION case. Talk to ups@ about that then, as he did the IPI_PREEMPTION stuff. > > You probably need more details (KTR is good) to see exactly when threads are > > becoming runnable (and on which CPUs) and when the kernel is preempting to > > see what it is going on and where the context switches come from. KTR_SCHED > > + schedgraph.py may prove useful. > > Reading the code is easier :-). I noticed the following problems: > - the flag is neither set nor checked in the !PREEMPTION case, except for > SCHED_ULE it is set. Most settings and checkings of it are under the > PREEMPTION ifdef. I think this is wrong -- preemption to ithreads should > occur even without PREEMPTION (so there would be 3 levels of PREEMPTION > -- none (as given by !PREEMPTION now), preemption to ithreads only (not > available now?), and whatver FULL_PREEMPTION gives). The exception is > that sched_add() for SCHED_ULE calls sched_preempt() in the non-yielding > case, and setting the flag in sched_preempt() isn't under the PREEMPTION > ifdef. But this is moot since SCHED_ULE requires PREEMPTION. The idea of PREEMPTION is that all preemption is inside the scheduler and there aren't explicit preemptions like in the mutex code or ithread code as the kernel can make a decision when a thread is scheduled. Thus, there is no ithread preemption w/o PREEMPTION. > - the condition for being an idle priority thread is wrong. It is affected > by much the same translation problems as pri_level in userland. An idle > thread may have a borrowed priority, so it is impossible to classify > idle threads according to theire current priority alone. This may allow > setting of the preemption flag to never be done even in the PREEMPTION > case, as follows: > = idle priority thread is running with a borrowed non-idle priority > - and enters a critical section > - maybe_preempt() is called but of course doesn't preempt because of the > critical section > - and also doesn't set the flag due to the misclassified priority. This > apparently happens often for pagezero, due to it holding a mutex most > of the time that it is running. (Without your proposed change, it > isn't in a critical section, but I suspect maybe_preempt() doesn't > preempt it for similar reasons.) Err, it uses the real priority of the thread, so if the page zero thread has inherited a priority it gets treated as as a non-idle thread until it releases the mutex and resumes its idle thread priority. When it releases the lock it will lower its priority and then preempt to the thread waiting for the lock. The scheduler will then run through any higher priority tasks before it gets back to the page zero thread. > - when the thread leaves the critical section, preemption doesn't occur > because the flag is not set, and preemption isn't reconsidered because > critical_exit() doesn't do that. > - when the priority is unborrowed, premption should be reconsidered. I > don't know if it is. See turnstile_unpend() and turnstile_disown(). > >> Maybe preemption should be inhibited a bit when any mutex is held. > > > > That would make mutexes spinlocks that block interrupts. Would sort of defeat > > the point of having mutexes that aren't spinlocks. > > I mean that preemption should only be inhibited, not completely blocked. > Something like delaying preemption for a couple of microseconds would be > good, but would be hard to implement since the obvious implementation, > of scheduling an interrupt after a couple of microseconds to cause > reconsideration of the preemption decision, would be too expensive. For > well-behaved threads like pagezero, we can be sure that a suitable > preemption reconsideration point like critical_exit() is called within > a couple of microseconds. That is essentially how the voluntarily > yielding in pagezero works now. Hmm, that could be beneficial. Similar to how adaptive spinning optimizes for short holds. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Mon Jun 18 17:52:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8098516A46B; Mon, 18 Jun 2007 17:52:38 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6365613C4BC; Mon, 18 Jun 2007 17:52:38 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IHqcbw034591; Mon, 18 Jun 2007 17:52:38 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IHqcuw034587; Mon, 18 Jun 2007 17:52:38 GMT (envelope-from maxim) Message-Id: <200706181752.l5IHqcuw034587@repoman.freebsd.org> From: Maxim Konovalov Date: Mon, 18 Jun 2007 17:52:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 17:52:38 -0000 maxim 2007-06-18 17:52:38 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c sbin/ipfw ipfw.8 ipfw2.c Log: o Make ipfw set more robust -- now it is possible: - to show a specific set: ipfw set 3 show - to delete rules from the set: ipfw set 9 delete 100 200 300 - to flush the set: ipfw set 4 flush - to reset rules counters in the set: ipfw set 1 zero PR: kern/113388 Submitted by: Andrey V. Elsukov Approved by: re (kensmith) MFC after: 6 weeks Revision Changes Path 1.201 +20 -2 src/sbin/ipfw/ipfw.8 1.106 +111 -39 src/sbin/ipfw/ipfw2.c 1.166 +60 -18 src/sys/netinet/ip_fw2.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 18:28:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3048B16A421; Mon, 18 Jun 2007 18:28:44 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 098C013C457; Mon, 18 Jun 2007 18:28:44 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IIShB4091956; Mon, 18 Jun 2007 18:28:43 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IIShIq091955; Mon, 18 Jun 2007 18:28:43 GMT (envelope-from scottl) Message-Id: <200706181828.l5IIShIq091955@repoman.freebsd.org> From: Scott Long Date: Mon, 18 Jun 2007 18:28:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mpt mpt_cam.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 18:28:44 -0000 scottl 2007-06-18 18:28:43 UTC FreeBSD src repository Modified files: sys/dev/mpt mpt_cam.c Log: Fix some debugging code that crept in accidentally. Revision Changes Path 1.60 +3 -3 src/sys/dev/mpt/mpt_cam.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 18:47:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5933B16A46B; Mon, 18 Jun 2007 18:47:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 47E0E13C45E; Mon, 18 Jun 2007 18:47:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IIltRc027469; Mon, 18 Jun 2007 18:47:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IIls57027464; Mon, 18 Jun 2007 18:47:54 GMT (envelope-from rafan) Message-Id: <200706181847.l5IIls57027464@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 18 Jun 2007 18:47:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/lib/libdialog Makefile src/gnu/lib/libreadline Makefile.inc src/gnu/lib/libregex Makefile src/lib/libalias/libalias Makefile src/lib/libbsnmp Makefile.inc src/lib/libpam Makefile.inc src/secure/lib/libssh Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 18:47:55 -0000 rafan 2007-06-18 18:47:54 UTC FreeBSD src repository Modified files: gnu/lib/libdialog Makefile gnu/lib/libreadline Makefile.inc gnu/lib/libregex Makefile lib/libalias/libalias Makefile lib/libbsnmp Makefile.inc lib/libpam Makefile.inc secure/lib/libssh Makefile usr.sbin/bsnmpd/modules Makefile.inc Log: - Bump share library version which were missed in last bump Reported by: jhb Discussed with: deischen, des, doubg, harti Approved by: re (kensmith) Revision Changes Path 1.45 +1 -1 src/gnu/lib/libdialog/Makefile 1.15 +1 -1 src/gnu/lib/libreadline/Makefile.inc 1.33 +1 -1 src/gnu/lib/libregex/Makefile 1.4 +1 -1 src/lib/libalias/libalias/Makefile 1.7 +1 -1 src/lib/libbsnmp/Makefile.inc 1.18 +1 -1 src/lib/libpam/Makefile.inc 1.43 +1 -1 src/secure/lib/libssh/Makefile 1.13 +1 -1 src/usr.sbin/bsnmpd/modules/Makefile.inc From owner-cvs-src@FreeBSD.ORG Mon Jun 18 18:51:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1736816A474; Mon, 18 Jun 2007 18:51:00 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E4B0213C4D9; Mon, 18 Jun 2007 18:50:59 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IIoxed030475; Mon, 18 Jun 2007 18:50:59 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IIoxXI030469; Mon, 18 Jun 2007 18:50:59 GMT (envelope-from rafan) Message-Id: <200706181850.l5IIoxXI030469@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 18 Jun 2007 18:50:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 18:51:00 -0000 rafan 2007-06-18 18:50:59 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: - Add liblwres.so.10 which is now .30 after latest bind import - Add obsolete libraries which got a version bump Revision Changes Path 1.96 +43 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Mon Jun 18 18:58:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1948B16A400; Mon, 18 Jun 2007 18:58:16 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E668013C455; Mon, 18 Jun 2007 18:58:15 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IIwFIT041672; Mon, 18 Jun 2007 18:58:15 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IIwF6B041670; Mon, 18 Jun 2007 18:58:15 GMT (envelope-from brueffer) Message-Id: <200706181858.l5IIwF6B041670@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 18 Jun 2007 18:58:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 tmpfs.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 18:58:16 -0000 brueffer 2007-06-18 18:58:15 UTC FreeBSD src repository Modified files: share/man/man5 tmpfs.5 Log: Complete SYNOPSIS and some cleanup. Revision Changes Path 1.2 +18 -3 src/share/man/man5/tmpfs.5 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 19:19:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71BFA16A41F; Mon, 18 Jun 2007 19:19:02 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4A8C913C455; Mon, 18 Jun 2007 19:19:02 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IJJ2ML077052; Mon, 18 Jun 2007 19:19:02 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IJJ23D077051; Mon, 18 Jun 2007 19:19:02 GMT (envelope-from brueffer) Message-Id: <200706181919.l5IJJ23D077051@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 18 Jun 2007 19:19:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 tmpfs.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 19:19:02 -0000 brueffer 2007-06-18 19:19:02 UTC FreeBSD src repository Modified files: share/man/man5 tmpfs.5 Log: Remove some stuff I accidently left in the previous commit. Revision Changes Path 1.3 +0 -4 src/share/man/man5/tmpfs.5 From owner-cvs-src@FreeBSD.ORG Mon Jun 18 21:46:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D7D616A47B; Mon, 18 Jun 2007 21:46:09 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DB8D813C44B; Mon, 18 Jun 2007 21:46:08 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5ILk8NB016631; Mon, 18 Jun 2007 21:46:08 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5ILk8tE016603; Mon, 18 Jun 2007 21:46:08 GMT (envelope-from marius) Message-Id: <200706182146.l5ILk8tE016603@repoman.freebsd.org> From: Marius Strobl Date: Mon, 18 Jun 2007 21:46:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sparc64/pci ofw_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 21:46:09 -0000 marius 2007-06-18 21:46:07 UTC FreeBSD src repository Modified files: sys/sparc64/pci ofw_pcib.c Log: For sun4u also add PCI busses with a device unit number of -1 instead of using the PCI bus number, like it's already done for sun4v in order to deal properly with independently numbered PCI domains which can't be reenumerated (in the case of sun4u f.e. Tomatillo bridges). For machines where we need to reenumerate all PCI busses this change obviously introduces the theoretical cosmetic problem that the device number of the PCI bus no longer equals to its PCI bus number. In practice this doesn't happen as both are assigned linearly and in parallel. Revision Changes Path 1.8 +1 -8 src/sys/sparc64/pci/ofw_pcib.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 21:49:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4DD816A46E; Mon, 18 Jun 2007 21:49:42 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D563313C46A; Mon, 18 Jun 2007 21:49:42 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5ILngN3028612; Mon, 18 Jun 2007 21:49:42 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5ILngUt028602; Mon, 18 Jun 2007 21:49:42 GMT (envelope-from marius) Message-Id: <200706182149.l5ILngUt028602@repoman.freebsd.org> From: Marius Strobl Date: Mon, 18 Jun 2007 21:49:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files.sparc64 files.sun4v src/sys/sparc64/pci ofw_pci.c ofw_pci.h ofw_pci_if.m ofw_pcib_subr.c psycho.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 21:49:43 -0000 marius 2007-06-18 21:49:42 UTC FreeBSD src repository Modified files: sys/conf files.sparc64 files.sun4v sys/sparc64/pci ofw_pci.h ofw_pci_if.m ofw_pcib_subr.c psycho.c Removed files: sys/sparc64/pci ofw_pci.c Log: - Move ofw_pci_alloc_busno() to the ofw_pci KOBJ interface, allowing the driver for the host-PCI-bridge to indicate that reenumeration of the PCI busses isn't supported by returning -1 instead of a valid PCI bus number. This is needed in order support both Tomatillo, which don't support reenumeration and thus are apparently intended to be used for independently numbered PCI domains only, and Psycho bridges, whose busses need to be reenumerated on at least some E450, without the #ifndef currently used for sun4v in order to support multiple independently PCI domains. The actual allocation/incrementation of the PCI bus numbers is now done in psycho(4), though it no longer establish a mapping between bus numbers and device nodes like ofw_pci_alloc_busno() did as that functionality wasn't used (but can easily brought back if really needed). The now no longer used sys/sparc64/pci/ofw_pci.c is also removed from sys/conf/files.sun4v as ofw_pci_alloc_busno() wasn't used there in the first place. - In ofw_pci_default_{adjust_busrange,intr_pending}() sanity check that the device has a parent before passing it on. - Make psycho_softcs static to sys/sparc64/pci/psycho.c as it's not used outside of that module. - In sys/sparc64/pci/ofw_pcib_subr.c remove the superfluous inclusion of opt_global.h and correct the debug output for adjusting the subordinate bus number. Revision Changes Path 1.91 +0 -1 src/sys/conf/files.sparc64 1.10 +0 -1 src/sys/conf/files.sun4v 1.17 +0 -76 src/sys/sparc64/pci/ofw_pci.c (dead) 1.11 +0 -2 src/sys/sparc64/pci/ofw_pci.h 1.8 +26 -4 src/sys/sparc64/pci/ofw_pci_if.m 1.8 +14 -13 src/sys/sparc64/pci/ofw_pcib_subr.c 1.67 +15 -2 src/sys/sparc64/pci/psycho.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 21:59:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24EA016A421; Mon, 18 Jun 2007 21:59:16 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F24E213C45A; Mon, 18 Jun 2007 21:59:15 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5ILxFof058580; Mon, 18 Jun 2007 21:59:15 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5ILxFkd058579; Mon, 18 Jun 2007 21:59:15 GMT (envelope-from rrs) Message-Id: <200706182159.l5ILxFkd058579@repoman.freebsd.org> From: Randall Stewart Date: Mon, 18 Jun 2007 21:59:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_asconf.c sctp_indata.c sctp_pcb.c sctp_uio.h sctp_usrreq.c sctputil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 21:59:16 -0000 rrs 2007-06-18 21:59:15 UTC FreeBSD src repository Modified files: sys/netinet sctp_asconf.c sctp_indata.c sctp_pcb.c sctp_uio.h sctp_usrreq.c sctputil.c Log: - Fixes cstatic issues found by cisco sa tool (missing frees and such on error legs) - align sctp_sockstore to 64 bit boundary .. Revision Changes Path 1.19 +2 -0 src/sys/netinet/sctp_asconf.c 1.33 +1 -1 src/sys/netinet/sctp_indata.c 1.44 +5 -3 src/sys/netinet/sctp_pcb.c 1.23 +3 -0 src/sys/netinet/sctp_uio.h 1.34 +2 -1 src/sys/netinet/sctp_usrreq.c 1.47 +10 -0 src/sys/netinet/sctputil.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:15:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A025D16A400; Mon, 18 Jun 2007 22:15:18 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7A2CA13C48C; Mon, 18 Jun 2007 22:15:18 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMFILl004632; Mon, 18 Jun 2007 22:15:18 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMFIVD004625; Mon, 18 Jun 2007 22:15:18 GMT (envelope-from marius) Message-Id: <200706182215.l5IMFIVD004625@repoman.freebsd.org> From: Marius Strobl Date: Mon, 18 Jun 2007 22:15:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/syscons scgfbrndr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:15:18 -0000 marius 2007-06-18 22:15:17 UTC FreeBSD src repository Modified files: sys/dev/syscons scgfbrndr.c Log: According to the default font size on sparc64 provide a 12 x 22 mouse pointer instead of a 8 x 16 one so device drivers don't need to bring there own one there and in gfb_mouse() (ab)use the pixel_mask argument of putm() to pass along on/off info as erasing the mouse cursor image by redrawing the text underneath doesn't work as we use hardware cursors on sparc64. Revision Changes Path 1.24 +32 -1 src/sys/dev/syscons/scgfbrndr.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:23:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BE7416A41F; Mon, 18 Jun 2007 22:23:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 43D4813C48A; Mon, 18 Jun 2007 22:23:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMNLhS019064; Mon, 18 Jun 2007 22:23:21 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMNLZt019062; Mon, 18 Jun 2007 22:23:21 GMT (envelope-from imp) Message-Id: <200706182223.l5IMNLZt019062@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:23:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/drivers/ubt ng_ubt.c src/sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:23:21 -0000 imp 2007-06-18 22:23:20 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/ubt ng_ubt.c sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c Log: Finish removing usb_port.h compat macros. Revision Changes Path 1.32 +33 -11 src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c 1.16 +38 -15 src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:24:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BCCF116A468; Mon, 18 Jun 2007 22:24:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9676013C480; Mon, 18 Jun 2007 22:24:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMOWoK020325; Mon, 18 Jun 2007 22:24:32 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMOWiO020324; Mon, 18 Jun 2007 22:24:32 GMT (envelope-from imp) Message-Id: <200706182224.l5IMOWiO020324@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:24:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/if_ndis if_ndis_usb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:24:32 -0000 imp 2007-06-18 22:24:32 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis_usb.c Log: finish removing usb_port.h macros. Use device_foo_t to declare functions a little de-k&r Revision Changes Path 1.9 +14 -14 src/sys/dev/if_ndis/if_ndis_usb.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:25:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F39C416A400; Mon, 18 Jun 2007 22:25:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E4C1713C45A; Mon, 18 Jun 2007 22:25:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMPkUf022846; Mon, 18 Jun 2007 22:25:46 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMPkDr022836; Mon, 18 Jun 2007 22:25:46 GMT (envelope-from imp) Message-Id: <200706182225.l5IMPkDr022836@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:25:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_rum.c if_udav.c if_ural.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:25:47 -0000 imp 2007-06-18 22:25:46 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_rum.c if_udav.c if_ural.c Log: Use device_foo_t to declare kobj methods Fix shutdown type to return int rather than void. Revision Changes Path 1.113 +9 -9 src/sys/dev/usb/if_aue.c 1.51 +9 -9 src/sys/dev/usb/if_axe.c 1.71 +6 -6 src/sys/dev/usb/if_cue.c 1.81 +6 -6 src/sys/dev/usb/if_kue.c 1.38 +10 -9 src/sys/dev/usb/if_rue.c 1.9 +20 -4 src/sys/dev/usb/if_rum.c 1.31 +16 -12 src/sys/dev/usb/if_udav.c 1.61 +4 -3 src/sys/dev/usb/if_ural.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:26:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 511C016A421; Mon, 18 Jun 2007 22:26:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2A07013C455; Mon, 18 Jun 2007 22:26:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMQg5n025785; Mon, 18 Jun 2007 22:26:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMQgYP025784; Mon, 18 Jun 2007 22:26:42 GMT (envelope-from imp) Message-Id: <200706182226.l5IMQgYP025784@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:26:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/usb uaudio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:26:42 -0000 imp 2007-06-18 22:26:42 UTC FreeBSD src repository Modified files: sys/dev/sound/usb uaudio.c Log: Explicitly use usb_port.h to get compat macros. Revision Changes Path 1.35 +1 -0 src/sys/dev/sound/usb/uaudio.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:27:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BE2416A469; Mon, 18 Jun 2007 22:27:58 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6C91913C46E; Mon, 18 Jun 2007 22:27:58 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMRwbl029038; Mon, 18 Jun 2007 22:27:58 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMRweG029034; Mon, 18 Jun 2007 22:27:58 GMT (envelope-from imp) Message-Id: <200706182227.l5IMRweG029034@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:27:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ubsa.c ubser.c udbp.c ufm.c ufoma.c uftdi.c uhid.c umct.c umodem.c uplcom.c uvisor.c uvscom.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:27:58 -0000 imp 2007-06-18 22:27:57 UTC FreeBSD src repository Modified files: sys/dev/usb ubsa.c ubser.c udbp.c ufm.c ufoma.c uftdi.c uhid.c umct.c umodem.c uplcom.c uvisor.c uvscom.c Log: Finish removal of usb_port.h macros. Revision Changes Path 1.30 +3 -3 src/sys/dev/usb/ubsa.c 1.27 +23 -3 src/sys/dev/usb/ubser.c 1.37 +23 -3 src/sys/dev/usb/udbp.c 1.34 +27 -5 src/sys/dev/usb/ufm.c 1.8 +5 -5 src/sys/dev/usb/ufoma.c 1.34 +5 -4 src/sys/dev/usb/uftdi.c 1.94 +41 -15 src/sys/dev/usb/uhid.c 1.18 +4 -2 src/sys/dev/usb/umct.c 1.66 +3 -2 src/sys/dev/usb/umodem.c 1.49 +3 -2 src/sys/dev/usb/uplcom.c 1.36 +3 -2 src/sys/dev/usb/uvisor.c 1.39 +3 -2 src/sys/dev/usb/uvscom.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:28:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49CF916A41F; Mon, 18 Jun 2007 22:28:33 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1DF4C13C4C2; Mon, 18 Jun 2007 22:28:33 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMSW7V030785; Mon, 18 Jun 2007 22:28:33 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMSWY3030780; Mon, 18 Jun 2007 22:28:32 GMT (envelope-from imp) Message-Id: <200706182228.l5IMSWY3030780@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:28:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:28:33 -0000 imp 2007-06-18 22:28:32 UTC FreeBSD src repository Modified files: sys/dev/usb usbdi.c Log: Expand usb_callout_init Revision Changes Path 1.101 +1 -1 src/sys/dev/usb/usbdi.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:29:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA4C816A484; Mon, 18 Jun 2007 22:29:01 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B465813C48A; Mon, 18 Jun 2007 22:29:01 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMT1K9032286; Mon, 18 Jun 2007 22:29:01 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMT1nI032285; Mon, 18 Jun 2007 22:29:01 GMT (envelope-from imp) Message-Id: <200706182229.l5IMT1nI032285@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:29:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:29:02 -0000 imp 2007-06-18 22:29:01 UTC FreeBSD src repository Modified files: sys/dev/usb usb.c Log: Expand usb_port.h macros. Revision Changes Path 1.119 +38 -20 src/sys/dev/usb/usb.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:30:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FF6016A421; Mon, 18 Jun 2007 22:30:09 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EC8BA13C45D; Mon, 18 Jun 2007 22:30:08 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMU8f5034883; Mon, 18 Jun 2007 22:30:08 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMU8sH034875; Mon, 18 Jun 2007 22:30:08 GMT (envelope-from imp) Message-Id: <200706182230.l5IMU8sH034875@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:30:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ulpt.c ums.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:30:09 -0000 imp 2007-06-18 22:30:08 UTC FreeBSD src repository Modified files: sys/dev/usb ulpt.c ums.c Log: Expand usb_port.h macros. Revision Changes Path 1.78 +39 -15 src/sys/dev/usb/ulpt.c 1.92 +1 -0 src/sys/dev/usb/ums.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:31:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D45816A46E; Mon, 18 Jun 2007 22:31:03 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6644313C511; Mon, 18 Jun 2007 22:31:03 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMV3Nw036415; Mon, 18 Jun 2007 22:31:03 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMV3NU035977; Mon, 18 Jun 2007 22:31:03 GMT (envelope-from imp) Message-Id: <200706182231.l5IMV3NU035977@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:30:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usb.h usb_port.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:31:03 -0000 imp 2007-06-18 22:30:53 UTC FreeBSD src repository Modified files: sys/dev/usb usb.h usb_port.h Log: Remove usb_port.h from usb.h, except for one or two useful things that don't belong there (these moved into usb.h). Revision Changes Path 1.46 +4 -2 src/sys/dev/usb/usb.h 1.94 +0 -4 src/sys/dev/usb/usb_port.h From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:31:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6276416A41F; Mon, 18 Jun 2007 22:31:36 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3CCB313C448; Mon, 18 Jun 2007 22:31:36 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMVasB038138; Mon, 18 Jun 2007 22:31:36 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMVaUh038135; Mon, 18 Jun 2007 22:31:36 GMT (envelope-from imp) Message-Id: <200706182231.l5IMVaUh038135@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:31:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ukbd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:31:36 -0000 imp 2007-06-18 22:31:36 UTC FreeBSD src repository Modified files: sys/dev/usb ukbd.c Log: Expand usb_port macros Revision Changes Path 1.68 +26 -6 src/sys/dev/usb/ukbd.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:32:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F203416A41F; Mon, 18 Jun 2007 22:32:09 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CA83B13C46E; Mon, 18 Jun 2007 22:32:09 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMW9kl040214; Mon, 18 Jun 2007 22:32:09 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMW95Y040186; Mon, 18 Jun 2007 22:32:09 GMT (envelope-from imp) Message-Id: <200706182232.l5IMW95Y040186@repoman.freebsd.org> From: Warner Losh Date: Mon, 18 Jun 2007 22:32:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb uhub.c umass.c urio.c uscanner.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:32:10 -0000 imp 2007-06-18 22:32:09 UTC FreeBSD src repository Modified files: sys/dev/usb uhub.c umass.c urio.c uscanner.c Log: Mark the few remaining drivers that haven't been converted as needing usb_port.h by explicitly including it. Revision Changes Path 1.79 +1 -0 src/sys/dev/usb/uhub.c 1.150 +1 -0 src/sys/dev/usb/umass.c 1.46 +1 -0 src/sys/dev/usb/urio.c 1.85 +1 -0 src/sys/dev/usb/uscanner.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:36:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6850216A469; Mon, 18 Jun 2007 22:36:53 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4166413C46E; Mon, 18 Jun 2007 22:36:53 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMarui053945; Mon, 18 Jun 2007 22:36:53 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMarUU053944; Mon, 18 Jun 2007 22:36:53 GMT (envelope-from rrs) Message-Id: <200706182236.l5IMarUU053944@repoman.freebsd.org> From: Randall Stewart Date: Mon, 18 Jun 2007 22:36:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_output.c sctp_timer.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:36:53 -0000 rrs 2007-06-18 22:36:53 UTC FreeBSD src repository Modified files: sys/netinet sctp_output.c sctp_timer.c Log: - Two more static analisys bugs found by cisco's tool on a subsequent run. Revision Changes Path 1.43 +3 -2 src/sys/netinet/sctp_output.c 1.22 +2 -1 src/sys/netinet/sctp_timer.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:39:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0904716A46B; Mon, 18 Jun 2007 22:39:28 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D6BF213C487; Mon, 18 Jun 2007 22:39:27 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMdRkS064141; Mon, 18 Jun 2007 22:39:27 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMdRVi064127; Mon, 18 Jun 2007 22:39:27 GMT (envelope-from ariff) Message-Id: <200706182239.l5IMdRVi064127@repoman.freebsd.org> From: Ariff Abdullah Date: Mon, 18 Jun 2007 22:39:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci/hda hdac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:39:28 -0000 ariff 2007-06-18 22:39:27 UTC FreeBSD src repository Modified files: sys/dev/sound/pci/hda hdac.c Log: Fix headphone jack sensing support for Olivetti Olibook 610-430 XPSE. Tested by: Gonzalo Lionel Rodriguez Revision Changes Path 1.42 +4 -1 src/sys/dev/sound/pci/hda/hdac.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:45:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45BB716A468; Mon, 18 Jun 2007 22:45:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3502213C45D; Mon, 18 Jun 2007 22:45:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMj0E7087810; Mon, 18 Jun 2007 22:45:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMj0kr087756; Mon, 18 Jun 2007 22:45:00 GMT (envelope-from jhb) Message-Id: <200706182245.l5IMj0kr087756@repoman.freebsd.org> From: John Baldwin Date: Mon, 18 Jun 2007 22:44:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/amd64 support.S vm_machdep.c src/sys/amd64/ia32 ia32_sigtramp.S src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master src/sys/ia64/ia64 support.S src/sys/kern kern_thr.c kern_umtx.c src/sys/sys ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:45:00 -0000 jhb 2007-06-18 22:44:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 support.S vm_machdep.c sys/amd64/ia32 ia32_sigtramp.S sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master sys/ia64/ia64 support.S sys/kern kern_thr.c kern_umtx.c sys/sys syscallsubr.h systm.h Log: MFC: Support for running 32-bit multithreaded binaries using libthr on amd64 including: - Add 32-bit wrappers for thr_new(), thr_suspend(), and the umtx system calls. - Add support to amd64 for constructing thread upcalls for 32-bit processes. - Leave %fs and %gs alone in the signal trampoline for 32-bit processes on amd64. - Add 'casuword32()' to amd64 and ia64. Tested by: emaste Revision Changes Path 1.115.2.1 +28 -0 src/sys/amd64/amd64/support.S 1.248.2.3 +43 -1 src/sys/amd64/amd64/vm_machdep.c 1.2.10.1 +0 -4 src/sys/amd64/ia32/ia32_sigtramp.S 1.4.8.1 +13 -0 src/sys/compat/freebsd32/freebsd32.h 1.38.2.11 +54 -0 src/sys/compat/freebsd32/freebsd32_misc.c 1.50.2.12 +11 -7 src/sys/compat/freebsd32/syscalls.master 1.25.2.1 +50 -0 src/sys/ia64/ia64/support.S 1.34.2.5 +57 -20 src/sys/kern/kern_thr.c 1.33.2.3 +294 -3 src/sys/kern/kern_umtx.c 1.31.2.3 +3 -0 src/sys/sys/syscallsubr.h 1.234.2.6 +1 -0 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:45:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F94F16A46B; Mon, 18 Jun 2007 22:45:42 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 38F0513C4BA; Mon, 18 Jun 2007 22:45:42 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMjgEK091903; Mon, 18 Jun 2007 22:45:42 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMjguu091902; Mon, 18 Jun 2007 22:45:42 GMT (envelope-from jhb) Message-Id: <200706182245.l5IMjguu091902@repoman.freebsd.org> From: John Baldwin Date: Mon, 18 Jun 2007 22:45:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:45:42 -0000 jhb 2007-06-18 22:45:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: Regen. Revision Changes Path 1.38.2.13 +26 -1 src/sys/compat/freebsd32/freebsd32_proto.h 1.38.2.13 +7 -6 src/sys/compat/freebsd32/freebsd32_syscall.h 1.29.2.13 +7 -6 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.39.2.13 +7 -6 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-src@FreeBSD.ORG Mon Jun 18 22:49:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84AA516A400; Mon, 18 Jun 2007 22:49:14 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 29A9313C4B0; Mon, 18 Jun 2007 22:49:14 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5IMnEtN099477; Mon, 18 Jun 2007 22:49:14 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5IMnE4H099470; Mon, 18 Jun 2007 22:49:14 GMT (envelope-from pav) Message-Id: <200706182249.l5IMnE4H099470@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 18 Jun 2007 22:49:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 22:49:14 -0000 pav 2007-06-18 22:49:13 UTC FreeBSD src repository (doc,ports committer) Modified files: usr.sbin/pkg_install/lib deps.c Log: - Replace rather inefficient bubble sort with a recursive depth-first search. This speeds up registration of packages considerably. - style(9) police welcome! PR: bin/112630 Submitted by: Stephen Montgomery-Smith Tested by: bento i386 experimental run MFC after: 14 days Revision Changes Path 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 00:09:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6741C16A482; Tue, 19 Jun 2007 00:09:28 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4036F13C458; Tue, 19 Jun 2007 00:09:28 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5J09Stp067595; Tue, 19 Jun 2007 00:09:28 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5J09RYh067543; Tue, 19 Jun 2007 00:09:27 GMT (envelope-from kensmith) Message-Id: <200706190009.l5J09RYh067543@repoman.freebsd.org> From: Ken Smith Date: Tue, 19 Jun 2007 00:09:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT approvers X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 00:09:28 -0000 kensmith 2007-06-19 00:09:27 UTC FreeBSD src repository Modified files: . approvers Log: Begin code freeze for FreeBSD-7.0 release cycle. Approved by: core (implicit) Revision Changes Path 1.40 +1 -1 CVSROOT/approvers From owner-cvs-src@FreeBSD.ORG Tue Jun 19 01:52:12 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BB5F16A46D for ; Tue, 19 Jun 2007 01:52:12 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.229]) by mx1.freebsd.org (Postfix) with ESMTP id 0A25813C458 for ; Tue, 19 Jun 2007 01:52:11 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by nz-out-0506.google.com with SMTP id 14so1365434nzn for ; Mon, 18 Jun 2007 18:52:11 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=DEKty2ApM9MxsLkr0PY2CAsABzxRgxaHlWgVZax49DUY8PMu5FAW3N2C4UTreWl4v2GE7gEfyRED51BnOtBCyRY29uL1nWg/YD2v8LimgDDMKUBowPnpXO6hYt9sKiDWTQ6uKbh+DTcBJoYn3yyY/c1X6juSzkooz/AtrX1eMxc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=hDfq6rVH8JT4UHAbS1zjItr6QCKvCc+heoSqG0QvZyjtpAMnIVbRSCToXM+3xkAgt8/tqWkl4wkNybOqjCQDAwtSYQtGeCIQs01tEnVL5A4YH7ONBDln43xlqG6pVNwTh+CPZ6XrInSNxBhRY2+k0/4iHvLgQ2MmyO6E+MyIM6E= Received: by 10.115.55.1 with SMTP id h1mr6807673wak.1182217930767; Mon, 18 Jun 2007 18:52:10 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.google.com with ESMTP id k9sm15925790wah.2007.06.18.18.52.06 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 18 Jun 2007 18:52:09 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id l5J1q2V4013672 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Jun 2007 10:52:02 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id l5J1q1ZY013671; Tue, 19 Jun 2007 10:52:01 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Tue, 19 Jun 2007 10:51:59 +0900 From: Pyun YongHyeon To: Tom Judge Message-ID: <20070619015159.GB13241@cdnetworks.co.kr> References: <200706110155.l5B1t9d9043150@repoman.freebsd.org> <466CFBE2.1090907@freebsd.org> <20070611074456.GE39661@cdnetworks.co.kr> <466CFEC1.6080100@freebsd.org> <467682C3.4020701@tomjudge.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <467682C3.4020701@tomjudge.com> User-Agent: Mutt/1.4.2.1i Cc: src-committers@freebsd.org, Andre Oppermann , cvs-src@freebsd.org, cvs-all@freebsd.org, rwatson@freebsd.org, Pyun YongHyeon Subject: Re: cvs commit: src/sys/dev/msk if_msk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 01:52:12 -0000 On Mon, Jun 18, 2007 at 02:04:03PM +0100, Tom Judge wrote: > Andre Oppermann wrote: > >Pyun YongHyeon wrote: > >>On Mon, Jun 11, 2007 at 09:38:10AM +0200, Andre Oppermann wrote: > >> > Pyun YongHyeon wrote: > >> > >yongari 2007-06-11 01:55:09 UTC > >> > > > >> > > FreeBSD src repository > >> > > > >> > > Modified files: > >> > > sys/dev/msk if_msk.c > > Log: > >> > > Disable automatic IP ID increment. Due to a hardware bug the > >>automatic > >> > > IP ID increment in TSO case generated corrupted IP packets. > >> > > This change brings back TSO capability. > >> > > > > Revision Changes Path > >> > > 1.16 +0 -15 src/sys/dev/msk/if_msk.c > >> > > Please add check for the DF (Don't fragment) bit in the IP header. > >> > Otherwise we may run into trouble when fragmentation happens along > >> > the path. We almost always set DF on TCP connections. If it is not > >> > set please return EMSGSIZE which will cause TSO to be turned off. > >> > > >>Is there any way to return EMSGSIZE to upper layer? > >>if_start has return type void. > >>Or just dropping the packet if DF bit was not set is enough? > > > >Dropping the packet is not enough. I forgot the IF queue which > >separates the downpath from the encap function... Don't know > >how you can pass up the error. Robert wanted to change the drivers > >queuing model, that would make it possible. CC'ed. > > > > Sorry for jumping in here, but could you not pass the message back up by > dropping the packet and sending a ICMP error back up the stack with the > Error code set for "Fragmentation needed and DF set" and set the MTU > hint to the current interface MTU? Or is this a stupid idea? > I'm unsure but it wouldn't work as TSO is an interface capability. The ICMP error may restart PMTU discovery but it wouldn't disable TSO for the connection, I guess. The only way that disables TSO for the connection would be returning EMSGSIZE to TCP stack. The TCP stack would disable TSO and retry to MTU discovery if it get an EMSGSIZE error. > Tom -- Regards, Pyun YongHyeon From owner-cvs-src@FreeBSD.ORG Tue Jun 19 04:20:58 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5239516A421; Tue, 19 Jun 2007 04:20:58 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 2809413C457; Tue, 19 Jun 2007 04:20:57 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l5J4KvH7015944; Mon, 18 Jun 2007 21:20:57 -0700 (PDT) (envelope-from kientzle@freebsd.org) Message-ID: <467759A9.9040602@freebsd.org> Date: Mon, 18 Jun 2007 21:20:57 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bruce Evans References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> <46760F7A.8020209@freebsd.org> <20070618195605.J43008@delplex.bde.org> In-Reply-To: <20070618195605.J43008@delplex.bde.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, Colin Percival Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 04:20:58 -0000 Bruce, Thanks for your explanation of the status quo. It sounds like lseek() is basically broken by design for anything that isn't a disk or a pipe. That's disappointing. It sounds like the best bsdtar can do is to only use the lseek() optimization if S_ISREG(). > Thus lseek() succeeds bogusly for amlmost all device files except > disks, including tapes. > Tape devices should probably work similarly -- reject offsets that they > can't handle at i/o time. This might be all offsets except 0. You advocate having the lseek() call succeed and the following read() call fail? I don't see how any application could recover from that. (bsdtar recovers from a failed seek, including ESPIPE, by just reading and discarding data; a failed read is a much more serious problem). >> The basic problem is that an lseek() call to a tape >> drive returns success exactly as if it worked. > > Because lseek() doesn't go anywhere near the device driver. > I think it is correct for lseek() to have no physical effect > until i/o time. No physical effect is a nice optimization, but it seems a bit odd for the driver to have no input into whether a particular lseek() request is acceptable. Many devices can do relative but not absolute seeks. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Tue Jun 19 04:48:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E364C16A41F; Tue, 19 Jun 2007 04:48:50 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 5B94613C45E; Tue, 19 Jun 2007 04:48:50 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.14.1/8.14.1) with ESMTP id l5J4mmOR046548; Tue, 19 Jun 2007 08:48:48 +0400 (MSD) (envelope-from ache@nagual.pp.ru) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nagual.pp.ru; s=default; t=1182228528; bh=aXzmJpGW4tlPC9T5DlspaTBbdHGhuDeXGEaUNa4 oSZ4=; l=515; h=Received:Date:From:To:Cc:Subject:Message-ID: Mail-Followup-To:References:MIME-Version:Content-Type: Content-Disposition:In-Reply-To:User-Agent; b=lsD8TEX+wEAkQNviR2RM 2tM/XKTpAU423N4ePohWZyLsK2XnJ9TjpeyIzGRGiw/Y1uF4Anyx6faZk+4sSiPHFsZ q9jpHq17/WowQCx4IxyU4G+GDu0JGd4nNkT6zwcfzRRM1MrU91a2YeDbJPgOWiNuPvz xwI09q/i9630/Y26Q= Received: (from ache@localhost) by nagual.pp.ru (8.14.1/8.14.1/Submit) id l5J4mlf7046547; Tue, 19 Jun 2007 08:48:47 +0400 (MSD) (envelope-from ache) Date: Tue, 19 Jun 2007 08:48:46 +0400 From: Andrey Chernov To: Tim Kientzle Message-ID: <20070619044845.GA46485@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , Bruce Evans , Colin Percival , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200706180036.l5I0asac023540@repoman.freebsd.org> <4675DFC8.8060108@freebsd.org> <46760F7A.8020209@freebsd.org> <20070618195605.J43008@delplex.bde.org> <467759A9.9040602@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <467759A9.9040602@freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Colin Percival , Bruce Evans Subject: Re: cvs commit: src/lib/libarchive archive_read_open_fd.c archive_read_open_filename.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 04:48:51 -0000 On Mon, Jun 18, 2007 at 09:20:57PM -0700, Tim Kientzle wrote: > into whether a particular lseek() request is acceptable. > Many devices can do relative but not absolute seeks. Ah, I understand the problem and it is not related to drivers but misunderstanding what lseek does. lseek changes _virtual_ pointer, not physical. That's driver task to change physical pointer accordingly on the next I/O operation. That's driver task to do it relative or absolute, per what device can. -- http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Tue Jun 19 10:28:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5909616A41F; Tue, 19 Jun 2007 10:28:09 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 352E713C48C; Tue, 19 Jun 2007 10:28:09 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JAS9cI020926; Tue, 19 Jun 2007 10:28:09 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JAS9xD020925; Tue, 19 Jun 2007 10:28:09 GMT (envelope-from delphij) Message-Id: <200706191028.l5JAS9xD020925@repoman.freebsd.org> From: Xin LI Date: Tue, 19 Jun 2007 10:28:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb sl811hs.c slhci_pccard.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 10:28:09 -0000 delphij 2007-06-19 10:28:08 UTC FreeBSD src repository Modified files: sys/dev/usb sl811hs.c slhci_pccard.c Log: Include usb_port.h to fix build. Reported by: tinderbox Approved by: re (mux) Revision Changes Path 1.6 +1 -0 src/sys/dev/usb/sl811hs.c 1.4 +1 -0 src/sys/dev/usb/slhci_pccard.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 13:13:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8B5016A421; Tue, 19 Jun 2007 13:13:18 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C53E113C46A; Tue, 19 Jun 2007 13:13:18 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JDDIr1074506; Tue, 19 Jun 2007 13:13:18 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JDDI90074481; Tue, 19 Jun 2007 13:13:18 GMT (envelope-from kib) Message-Id: <200706191313.l5JDDI90074481@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 19 Jun 2007 13:13:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern subr_unit.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 13:13:19 -0000 kib 2007-06-19 13:13:17 UTC FreeBSD src repository Modified files: sys/kern subr_unit.c Log: Add the witness warning for free_unr. Function could sleep, thus callers shall not have any non-sleepable locks held. Submitted by: Hans Petter Selasky Approved by: re (kensmith) Revision Changes Path 1.8 +1 -0 src/sys/kern/subr_unit.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 13:19:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA90A16A468; Tue, 19 Jun 2007 13:19:23 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 874CD13C44C; Tue, 19 Jun 2007 13:19:23 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JDJNSZ079995; Tue, 19 Jun 2007 13:19:23 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JDJNuq079994; Tue, 19 Jun 2007 13:19:23 GMT (envelope-from kib) Message-Id: <200706191319.l5JDJNuq079994@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 19 Jun 2007 13:19:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_conf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 13:19:23 -0000 kib 2007-06-19 13:19:23 UTC FreeBSD src repository Modified files: sys/kern kern_conf.c Log: devfs_free() calls free_unr(), that may sleep. Postpone call to devfs_free() after cdev mutex is dropped. Reuse cdp_list link for queuing devices awaiting deletion in the cdevp_free_list. Reported by: Hans Petter Selasky Tested by: Peter Holm Approved by: re (kensmith) MFC after: 2 weeks Revision Changes Path 1.203 +34 -6 src/sys/kern/kern_conf.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 14:13:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B63116A41F; Tue, 19 Jun 2007 14:13:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6782213C45E; Tue, 19 Jun 2007 14:13:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JEDleX041409; Tue, 19 Jun 2007 14:13:47 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JEDlPQ041408; Tue, 19 Jun 2007 14:13:47 GMT (envelope-from brueffer) Message-Id: <200706191413.l5JEDlPQ041408@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 19 Jun 2007 14:13:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 14:13:47 -0000 brueffer 2007-06-19 14:13:47 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: - tmpfs on i386,amd64 - gem(4) altq support - AUDIT and SCTP in GENERIC - FireWire MPSAFE - netstat SCTP support - dhclient RFC 3442 support (1) Modified release notes: - MFC markers: mxge(4) and netcat - touch -A entry grammar fix (2) - More manpage references used Submitted by: Andrey V. Elsukov (1) ceri (2) Approved by: re (blanket) Revision Changes Path 1.1042 +25 -6 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Tue Jun 19 14:56:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96C4216A400; Tue, 19 Jun 2007 14:56:36 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5FB13C45A; Tue, 19 Jun 2007 14:56:36 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JEuaWw083088; Tue, 19 Jun 2007 14:56:36 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JEuaWD083075; Tue, 19 Jun 2007 14:56:36 GMT (envelope-from delphij) Message-Id: <200706191456.l5JEuaWD083075@repoman.freebsd.org> From: Xin LI Date: Tue, 19 Jun 2007 14:56:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 14:56:36 -0000 delphij 2007-06-19 14:56:35 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c Log: Fix build problem caused by a set of typos. Reported by: tinderbox Approved by: re (mux) Revision Changes Path 1.17 +6 -6 src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 15:08:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4F7516A484; Tue, 19 Jun 2007 15:08:44 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 903D413C4B0; Tue, 19 Jun 2007 15:08:44 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JF8ipq095649; Tue, 19 Jun 2007 15:08:44 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JF8iMN095636; Tue, 19 Jun 2007 15:08:44 GMT (envelope-from bmah) Message-Id: <200706191508.l5JF8iMN095636@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 19 Jun 2007 15:08:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 15:08:44 -0000 bmah 2007-06-19 15:08:43 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Updated release notes: Note that diffutils was formerly version 2.7 [1]. Add some more verbage with respect to jemalloc and resource limits [2]. Submitted by: delphij [1] Collaboration with: jasone [2] Approved by: re (implicit) Revision Changes Path 1.1043 +9 -2 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Tue Jun 19 15:31:00 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D3B316A468; Tue, 19 Jun 2007 15:31:00 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 3FE5E13C447; Tue, 19 Jun 2007 15:31:00 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5JFSuqr019083; Tue, 19 Jun 2007 09:28:56 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 19 Jun 2007 09:29:28 -0600 (MDT) Message-Id: <20070619.092928.693823917.imp@bsdimp.com> To: delphij@freebsd.org From: "M. Warner Losh" In-Reply-To: <200706191456.l5JEuaWD083075@repoman.freebsd.org> References: <200706191456.l5JEuaWD083075@repoman.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Tue, 19 Jun 2007 09:28:56 -0600 (MDT) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 15:31:00 -0000 In message: <200706191456.l5JEuaWD083075@repoman.freebsd.org> Xin LI writes: : delphij 2007-06-19 14:56:35 UTC : : FreeBSD src repository : : Modified files: : sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c : Log: : Fix build problem caused by a set of typos. : : Reported by: tinderbox : Approved by: re (mux) Broken by: imp Where's those conical hats? Thanks for taking care of this Xin! Warner From owner-cvs-src@FreeBSD.ORG Tue Jun 19 15:56:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1816716A421; Tue, 19 Jun 2007 15:56:33 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E67CB13C4BF; Tue, 19 Jun 2007 15:56:32 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JFuWK7036021; Tue, 19 Jun 2007 15:56:32 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JFuWxm036011; Tue, 19 Jun 2007 15:56:32 GMT (envelope-from rrs) Message-Id: <200706191556.l5JFuWxm036011@repoman.freebsd.org> From: Randall Stewart Date: Tue, 19 Jun 2007 15:56:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 15:56:33 -0000 rrs 2007-06-19 15:56:32 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: - Fix RFC reference to SCTP to be correct. Approved by: re (bmah@freebsd.org) Revision Changes Path 1.1044 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Tue Jun 19 16:02:47 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD65816A469; Tue, 19 Jun 2007 16:02:47 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.200.81]) by mx1.freebsd.org (Postfix) with ESMTP id 7D33313C4B8; Tue, 19 Jun 2007 16:02:47 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from discordia (c-24-147-139-42.hsd1.ma.comcast.net[24.147.139.42]) by comcast.net (sccrmhc11) with ESMTP id <2007061915505901100cottde>; Tue, 19 Jun 2007 15:51:00 +0000 Received: by discordia (Postfix, from userid 103) id EEAF314D522; Tue, 19 Jun 2007 11:50:59 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.1.8-gr1 (2007-02-13) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.8-gr1 Received: from [172.20.1.3] (erwin.int.cokane.org [172.20.1.3]) by discordia (Postfix) with ESMTP id 9F30C14D522; Tue, 19 Jun 2007 11:50:58 -0400 (EDT) From: Coleman Kane To: Pav Lucistnik In-Reply-To: <200706182249.l5IMnE4H099470@repoman.freebsd.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> Content-Type: text/plain Organization: FreeBSD Project Date: Tue, 19 Jun 2007 11:51:13 -0400 Message-Id: <1182268273.23264.3.camel@erwin.int.cokane.org> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 16:02:48 -0000 On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: > pav 2007-06-18 22:49:13 UTC > > FreeBSD src repository (doc,ports committer) > > Modified files: > usr.sbin/pkg_install/lib deps.c > Log: > - Replace rather inefficient bubble sort with a recursive depth-first search. > This speeds up registration of packages considerably. > - style(9) police welcome! > > PR: bin/112630 > Submitted by: Stephen Montgomery-Smith > Tested by: bento i386 experimental run > MFC after: 14 days > > Revision Changes Path > 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > Is this by any chance connected to why many of my gnome2 dependencies would take longer to register than to compile? -- Coleman Kane From owner-cvs-src@FreeBSD.ORG Tue Jun 19 16:05:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26DC616A400; Tue, 19 Jun 2007 16:05:12 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from nat-application.b1.lan.prg.vol.cz (nat-application.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.freebsd.org (Postfix) with ESMTP id 88CD413C44C; Tue, 19 Jun 2007 16:05:11 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by nat-application.b1.lan.prg.vol.cz (8.13.8/8.13.8) with ESMTP id l5JFs4FT026605; Tue, 19 Jun 2007 17:54:04 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.13.8/8.13.8/Submit) id l5JFs4hi026604; Tue, 19 Jun 2007 17:54:04 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Coleman Kane In-Reply-To: <1182268273.23264.3.camel@erwin.int.cokane.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <1182268273.23264.3.camel@erwin.int.cokane.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-s6aEg8MuyGvOYb9UxYSY" Date: Tue, 19 Jun 2007 17:54:03 +0200 Message-Id: <1182268443.21730.75.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 16:05:12 -0000 --=-s6aEg8MuyGvOYb9UxYSY Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Coleman Kane p=ED=B9e v =FAt 19. 06. 2007 v 11:51 -0400: > On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: > > pav 2007-06-18 22:49:13 UTC > >=20 > > FreeBSD src repository (doc,ports committer) > >=20 > > Modified files: > > usr.sbin/pkg_install/lib deps.c=20 > > Log: > > - Replace rather inefficient bubble sort with a recursive depth-first= search. > > This speeds up registration of packages considerably. > > - style(9) police welcome! > > =20 > > PR: bin/112630 > > Submitted by: Stephen Montgomery-Smith > > Tested by: bento i386 experimental run > > MFC after: 14 days > > =20 > > Revision Changes Path > > 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > >=20 >=20 > Is this by any chance connected to why many of my gnome2 dependencies > would take longer to register than to compile? Are you observing slowdown registering ports with this patch? --=20 Pav Lucistnik Sword ownership rights have been under heavy fire since they were determined to be the leading cause of death during the Siege of Acre in the third crusade. --=-s6aEg8MuyGvOYb9UxYSY Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGd/wYntdYP8FOsoIRAsQqAJ9U16/T9r5dFxRfzUc+2pYdDKR8gQCfRg5/ OMMTUEEssUFVtipzuA4piEc= =MRhU -----END PGP SIGNATURE----- --=-s6aEg8MuyGvOYb9UxYSY-- From owner-cvs-src@FreeBSD.ORG Tue Jun 19 16:18:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B293F16A41F; Tue, 19 Jun 2007 16:18:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4CD13C45A; Tue, 19 Jun 2007 16:18:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JGIht7058041; Tue, 19 Jun 2007 16:18:43 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JGIhZX058039; Tue, 19 Jun 2007 16:18:43 GMT (envelope-from rrs) Message-Id: <200706191618.l5JGIhZX058039@repoman.freebsd.org> From: Randall Stewart Date: Tue, 19 Jun 2007 16:18:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/net sctp_connectx.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 16:18:43 -0000 rrs 2007-06-19 16:18:43 UTC FreeBSD src repository Modified files: lib/libc/net sctp_connectx.3 Log: - Fix the signature of sctp_connectx to match the function and adds some text about the last argument. Approved by: re (bmah@freebsd.org) Revision Changes Path 1.4 +6 -2 src/lib/libc/net/sctp_connectx.3 From owner-cvs-src@FreeBSD.ORG Tue Jun 19 16:29:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10E5916A468; Tue, 19 Jun 2007 16:29:48 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DDAE213C4C1; Tue, 19 Jun 2007 16:29:47 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JGTlDm080040; Tue, 19 Jun 2007 16:29:47 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JGTl1V080012; Tue, 19 Jun 2007 16:29:47 GMT (envelope-from brueffer) Message-Id: <200706191629.l5JGTl1V080012@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 19 Jun 2007 16:29:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/net sctp_connectx.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 16:29:48 -0000 brueffer 2007-06-19 16:29:46 UTC FreeBSD src repository Modified files: lib/libc/net sctp_connectx.3 Log: Clean up after previous commit: new sentence -> new line, no empty lines, .Fa macro usage. Approved by: re (blanket) Revision Changes Path 1.5 +6 -4 src/lib/libc/net/sctp_connectx.3 From owner-cvs-src@FreeBSD.ORG Tue Jun 19 18:08:29 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7402C16A468; Tue, 19 Jun 2007 18:08:29 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from alnrmhc15.comcast.net (alnrmhc15.comcast.net [206.18.177.55]) by mx1.freebsd.org (Postfix) with ESMTP id 21B8E13C447; Tue, 19 Jun 2007 18:08:29 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from discordia (c-24-147-139-42.hsd1.ma.comcast.net[24.147.139.42]) by comcast.net (alnrmhc15) with ESMTP id <20070619180828b150017mtce>; Tue, 19 Jun 2007 18:08:28 +0000 Received: by discordia (Postfix, from userid 103) id 260FB14D54E; Tue, 19 Jun 2007 14:08:28 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.1.8-gr1 (2007-02-13) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.8-gr1 Received: from [172.20.1.3] (erwin.int.cokane.org [172.20.1.3]) by discordia (Postfix) with ESMTP id A2C6014D54E; Tue, 19 Jun 2007 14:08:26 -0400 (EDT) From: Coleman Kane To: pav@FreeBSD.org In-Reply-To: <1182268443.21730.75.camel@pav.hide.vol.cz> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <1182268273.23264.3.camel@erwin.int.cokane.org> <1182268443.21730.75.camel@pav.hide.vol.cz> Content-Type: text/plain; charset=UTF-8 Organization: FreeBSD Project Date: Tue, 19 Jun 2007 14:08:41 -0400 Message-Id: <1182276521.23264.6.camel@erwin.int.cokane.org> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 18:08:29 -0000 On Tue, 2007-06-19 at 17:54 +0200, Pav Lucistnik wrote: > Coleman Kane píše v út 19. 06. 2007 v 11:51 -0400: > > On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: > > > pav 2007-06-18 22:49:13 UTC > > > > > > FreeBSD src repository (doc,ports committer) > > > > > > Modified files: > > > usr.sbin/pkg_install/lib deps.c > > > Log: > > > - Replace rather inefficient bubble sort with a recursive depth-first search. > > > This speeds up registration of packages considerably. > > > - style(9) police welcome! > > > > > > PR: bin/112630 > > > Submitted by: Stephen Montgomery-Smith > > > Tested by: bento i386 experimental run > > > MFC after: 14 days > > > > > > Revision Changes Path > > > 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > > > > > > > Is this by any chance connected to why many of my gnome2 dependencies > > would take longer to register than to compile? > > Are you observing slowdown registering ports with this patch? > I don't think so. I don't even know if I have the latest sources for pkg_install down yet. I was actually referring to my experience since the x.org modularization that ended up (I think) causing so many dependencies on some packages that registration was awfully slow. I wanted to know if this patch was expected to fix that problem. -- Coleman From owner-cvs-src@FreeBSD.ORG Tue Jun 19 18:16:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7814B16A400; Tue, 19 Jun 2007 18:16:43 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4F64713C4CA; Tue, 19 Jun 2007 18:16:43 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5JIGhuL090100; Tue, 19 Jun 2007 18:16:43 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5JIGhpf090094; Tue, 19 Jun 2007 18:16:43 GMT (envelope-from bmah) Message-Id: <200706191816.l5JIGhpf090094@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 19 Jun 2007 18:16:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 18:16:43 -0000 bmah 2007-06-19 18:16:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/pseudofs pseudofs_vnops.c Log: MFC: Fix off-by-one error (introduced in r1.60) that had the effect of disallowing a read of exactly MAXPHYS bytes. pseudofs_vnops.c 1.63 -> 1.64 Revision Changes Path 1.56.2.6 +1 -1 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-src@FreeBSD.ORG Tue Jun 19 18:41:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0C5716A41F; Tue, 19 Jun 2007 18:41:25 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 98B1C13C448; Tue, 19 Jun 2007 18:41:25 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 6F4EA1A4D80; Tue, 19 Jun 2007 11:40:35 -0700 (PDT) Received: from rot13.obsecurity.org (rot13.obsecurity.org [192.168.1.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id DC9D351264; Tue, 19 Jun 2007 14:41:24 -0400 (EDT) Received: by rot13.obsecurity.org (Postfix, from userid 1001) id CB973C296; Tue, 19 Jun 2007 14:41:24 -0400 (EDT) Date: Tue, 19 Jun 2007 14:41:24 -0400 From: Kris Kennaway To: Coleman Kane Message-ID: <20070619184124.GA96145@rot13.obsecurity.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <1182268273.23264.3.camel@erwin.int.cokane.org> <1182268443.21730.75.camel@pav.hide.vol.cz> <1182276521.23264.6.camel@erwin.int.cokane.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1182276521.23264.6.camel@erwin.int.cokane.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-src@FreeBSD.org, pav@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 18:41:25 -0000 On Tue, Jun 19, 2007 at 02:08:41PM -0400, Coleman Kane wrote: > On Tue, 2007-06-19 at 17:54 +0200, Pav Lucistnik wrote: > > Coleman Kane p????e v ??t 19. 06. 2007 v 11:51 -0400: > > > On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: > > > > pav 2007-06-18 22:49:13 UTC > > > > > > > > FreeBSD src repository (doc,ports committer) > > > > > > > > Modified files: > > > > usr.sbin/pkg_install/lib deps.c > > > > Log: > > > > - Replace rather inefficient bubble sort with a recursive depth-first search. > > > > This speeds up registration of packages considerably. > > > > - style(9) police welcome! > > > > > > > > PR: bin/112630 > > > > Submitted by: Stephen Montgomery-Smith > > > > Tested by: bento i386 experimental run > > > > MFC after: 14 days > > > > > > > > Revision Changes Path > > > > 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > > > > > > > > > > Is this by any chance connected to why many of my gnome2 dependencies > > > would take longer to register than to compile? > > > > Are you observing slowdown registering ports with this patch? > > > > I don't think so. I don't even know if I have the latest sources for > pkg_install down yet. > > I was actually referring to my experience since the x.org modularization > that ended up (I think) causing so many dependencies on some packages > that registration was awfully slow. I wanted to know if this patch was > expected to fix that problem. Yes, precisely so. Kris From owner-cvs-src@FreeBSD.ORG Tue Jun 19 22:16:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C10EB16A41F for ; Tue, 19 Jun 2007 22:16:28 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9E43613C46E for ; Tue, 19 Jun 2007 22:16:28 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 61507 invoked from network); 19 Jun 2007 18:50:19 -0000 Received: from ppp-71-139-42-13.dsl.snfc21.pacbell.net (HELO ?10.0.0.15?) (nate-mail@71.139.42.13) by root.org with ESMTPA; 19 Jun 2007 18:50:19 -0000 Message-ID: <46782564.70700@root.org> Date: Tue, 19 Jun 2007 11:50:12 -0700 From: Nate Lawson User-Agent: Thunderbird 2.0.0.0 (X11/20070511) MIME-Version: 1.0 To: Kris Kennaway References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <1182268273.23264.3.camel@erwin.int.cokane.org> <1182268443.21730.75.camel@pav.hide.vol.cz> <1182276521.23264.6.camel@erwin.int.cokane.org> <20070619184124.GA96145@rot13.obsecurity.org> In-Reply-To: <20070619184124.GA96145@rot13.obsecurity.org> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, pav@FreeBSD.org, cvs-all@FreeBSD.org, Coleman Kane , src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 22:16:28 -0000 Kris Kennaway wrote: > On Tue, Jun 19, 2007 at 02:08:41PM -0400, Coleman Kane wrote: >> On Tue, 2007-06-19 at 17:54 +0200, Pav Lucistnik wrote: >>> Coleman Kane p????e v ??t 19. 06. 2007 v 11:51 -0400: >>>> On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: >>>>> pav 2007-06-18 22:49:13 UTC >>>>> >>>>> FreeBSD src repository (doc,ports committer) >>>>> >>>>> Modified files: >>>>> usr.sbin/pkg_install/lib deps.c >>>>> Log: >>>>> - Replace rather inefficient bubble sort with a recursive depth-first search. >>>>> This speeds up registration of packages considerably. >>>>> - style(9) police welcome! >>>>> >>>>> PR: bin/112630 >>>>> Submitted by: Stephen Montgomery-Smith >>>>> Tested by: bento i386 experimental run >>>>> MFC after: 14 days >>>>> >>>>> Revision Changes Path >>>>> 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c >>>>> >>>> Is this by any chance connected to why many of my gnome2 dependencies >>>> would take longer to register than to compile? >>> Are you observing slowdown registering ports with this patch? >>> >> I don't think so. I don't even know if I have the latest sources for >> pkg_install down yet. >> >> I was actually referring to my experience since the x.org modularization >> that ended up (I think) causing so many dependencies on some packages >> that registration was awfully slow. I wanted to know if this patch was >> expected to fix that problem. > > Yes, precisely so. Excellent! Thanks for working on this, Pav. -- Nate From owner-cvs-src@FreeBSD.ORG Tue Jun 19 22:40:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD54716A41F for ; Tue, 19 Jun 2007 22:40:21 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id 40DA213C468 for ; Tue, 19 Jun 2007 22:40:21 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (rb5dg130.net.upc.cz [89.176.238.130]) (authenticated bits=0) by raven.customer.vol.cz (8.14.1/8.14.1) with ESMTP id l5JMe8Wl038789 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 20 Jun 2007 00:40:10 +0200 (CEST) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Nate Lawson In-Reply-To: <46782564.70700@root.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <1182268273.23264.3.camel@erwin.int.cokane.org> <1182268443.21730.75.camel@pav.hide.vol.cz> <1182276521.23264.6.camel@erwin.int.cokane.org> <20070619184124.GA96145@rot13.obsecurity.org> <46782564.70700@root.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-P6eLu9KJHkNlyF427foR" Date: Wed, 20 Jun 2007 00:40:08 +0200 Message-Id: <1182292808.38663.23.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 FreeBSD GNOME Team Port X-Spam-Score: -1.349 () AWL,BAYES_20 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 89.176.238.130; Sender-helo: [192.168.0.23]; ) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Coleman Kane , cvs-all@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 22:40:21 -0000 --=-P6eLu9KJHkNlyF427foR Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Nate Lawson p=ED=B9e v =FAt 19. 06. 2007 v 11:50 -0700: > Kris Kennaway wrote: > > On Tue, Jun 19, 2007 at 02:08:41PM -0400, Coleman Kane wrote: > >> On Tue, 2007-06-19 at 17:54 +0200, Pav Lucistnik wrote: > >>> Coleman Kane p????e v ??t 19. 06. 2007 v 11:51 -0400: > >>>> On Mon, 2007-06-18 at 22:49 +0000, Pav Lucistnik wrote: > >>>>> pav 2007-06-18 22:49:13 UTC > >>>>> > >>>>> FreeBSD src repository (doc,ports committer) > >>>>> > >>>>> Modified files: > >>>>> usr.sbin/pkg_install/lib deps.c=20 > >>>>> Log: > >>>>> - Replace rather inefficient bubble sort with a recursive depth-f= irst search. > >>>>> This speeds up registration of packages considerably. > >>>>> - style(9) police welcome! > >>>>> =20 > >>>>> PR: bin/112630 > >>>>> Submitted by: Stephen Montgomery-Smith > >>>>> Tested by: bento i386 experimental run > >>>>> MFC after: 14 days > >>>>> =20 > >>>>> Revision Changes Path > >>>>> 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > >>>>> > >>>> Is this by any chance connected to why many of my gnome2 dependencie= s > >>>> would take longer to register than to compile? > >>> Are you observing slowdown registering ports with this patch? > >>> > >> I don't think so. I don't even know if I have the latest sources for > >> pkg_install down yet. > >> > >> I was actually referring to my experience since the x.org modularizati= on > >> that ended up (I think) causing so many dependencies on some packages > >> that registration was awfully slow. I wanted to know if this patch was > >> expected to fix that problem. > >=20 > > Yes, precisely so. >=20 > Excellent! Thanks for working on this, Pav. All fame goes to the submitter, who wrote it, and to Kris, who managed the experimental run. I'm just a scrape goat for purposes of src repo committing :) --=20 Pav Lucistnik The number you dialed is imaginary. Please turn your phone by 90 degrees and try again. --=-P6eLu9KJHkNlyF427foR Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD4DBQBGeFtEntdYP8FOsoIRAtjjAJdO+VUboIv3CpfLcrJm9aCeJSATAJ9KEcIC Xv4Xn4bTeCGU2bbf8+cMMQ== =DT4n -----END PGP SIGNATURE----- --=-P6eLu9KJHkNlyF427foR-- From owner-cvs-src@FreeBSD.ORG Tue Jun 19 23:16:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A5BF16A41F; Tue, 19 Jun 2007 23:16:59 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id 2063513C44C; Tue, 19 Jun 2007 23:16:59 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5JNGtJS055472 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Jun 2007 16:16:57 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <467863E0.2040906@FreeBSD.org> Date: Tue, 19 Jun 2007 16:16:48 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Pav Lucistnik , Kris Kennaway References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> In-Reply-To: <200706182249.l5IMnE4H099470@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 23:16:59 -0000 I have made the following patch to bring style(9) back and make code more readable. Do you guys want to run it on bento or could I just check it in? http://sobomax.homeunix.org/~sobomax/deps.c.diff -Maxim Pav Lucistnik wrote: > pav 2007-06-18 22:49:13 UTC > > FreeBSD src repository (doc,ports committer) > > Modified files: > usr.sbin/pkg_install/lib deps.c > Log: > - Replace rather inefficient bubble sort with a recursive depth-first search. > This speeds up registration of packages considerably. > - style(9) police welcome! > > PR: bin/112630 > Submitted by: Stephen Montgomery-Smith > Tested by: bento i386 experimental run > MFC after: 14 days > > Revision Changes Path > 1.12 +111 -65 src/usr.sbin/pkg_install/lib/deps.c > > From owner-cvs-src@FreeBSD.ORG Tue Jun 19 23:21:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE66916A421; Tue, 19 Jun 2007 23:21:26 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id B9D2713C448; Tue, 19 Jun 2007 23:21:26 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id B3DAF1A3C19; Tue, 19 Jun 2007 16:20:35 -0700 (PDT) Received: from rot13.obsecurity.org (rot13.obsecurity.org [192.168.1.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 08595512AB; Tue, 19 Jun 2007 19:21:26 -0400 (EDT) Received: by rot13.obsecurity.org (Postfix, from userid 1001) id E9182C296; Tue, 19 Jun 2007 19:21:25 -0400 (EDT) Date: Tue, 19 Jun 2007 19:21:25 -0400 From: Kris Kennaway To: Maxim Sobolev Message-ID: <20070619232125.GA750@rot13.obsecurity.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <467863E0.2040906@FreeBSD.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 23:21:26 -0000 On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: > I have made the following patch to bring style(9) back and make code > more readable. Do you guys want to run it on bento or could I just check > it in? > > http://sobomax.homeunix.org/~sobomax/deps.c.diff Is md5 checksum the same before/after? Kris From owner-cvs-src@FreeBSD.ORG Tue Jun 19 23:22:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D70516A41F; Tue, 19 Jun 2007 23:22:41 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id F3B2A13C469; Tue, 19 Jun 2007 23:22:40 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5JNMcpQ055661 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Jun 2007 16:22:39 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4678653B.8070409@FreeBSD.org> Date: Tue, 19 Jun 2007 16:22:35 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Kris Kennaway References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> In-Reply-To: <20070619232125.GA750@rot13.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 23:22:41 -0000 Kris Kennaway wrote: > On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: >> I have made the following patch to bring style(9) back and make code >> more readable. Do you guys want to run it on bento or could I just check >> it in? >> >> http://sobomax.homeunix.org/~sobomax/deps.c.diff > > Is md5 checksum the same before/after? Well, it has some trivial non-whitespace changes. -Maxim From owner-cvs-src@FreeBSD.ORG Tue Jun 19 23:24:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27D1116A400; Tue, 19 Jun 2007 23:24:52 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 1297413C457; Tue, 19 Jun 2007 23:24:52 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 0B18C1A3C19; Tue, 19 Jun 2007 16:24:01 -0700 (PDT) Received: from rot13.obsecurity.org (rot13.obsecurity.org [192.168.1.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 6A478512C2; Tue, 19 Jun 2007 19:24:51 -0400 (EDT) Received: by rot13.obsecurity.org (Postfix, from userid 1001) id 57EDAC296; Tue, 19 Jun 2007 19:24:51 -0400 (EDT) Date: Tue, 19 Jun 2007 19:24:51 -0400 From: Kris Kennaway To: Maxim Sobolev Message-ID: <20070619232451.GA872@rot13.obsecurity.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> <4678653B.8070409@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4678653B.8070409@FreeBSD.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 23:24:52 -0000 On Tue, Jun 19, 2007 at 04:22:35PM -0700, Maxim Sobolev wrote: > Kris Kennaway wrote: > >On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: > >>I have made the following patch to bring style(9) back and make code > >>more readable. Do you guys want to run it on bento or could I just check > >>it in? > >> > >>http://sobomax.homeunix.org/~sobomax/deps.c.diff > > > >Is md5 checksum the same before/after? > > Well, it has some trivial non-whitespace changes. whitespace in source does not show up in the binary. Kris From owner-cvs-src@FreeBSD.ORG Tue Jun 19 23:27:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC17C16A41F; Tue, 19 Jun 2007 23:27:00 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9D67413C465; Tue, 19 Jun 2007 23:27:00 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5JNQvEp055791 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Jun 2007 16:26:58 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4678663E.2060204@FreeBSD.org> Date: Tue, 19 Jun 2007 16:26:54 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Kris Kennaway References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> <4678653B.8070409@FreeBSD.org> <20070619232451.GA872@rot13.obsecurity.org> In-Reply-To: <20070619232451.GA872@rot13.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 19 Jun 2007 23:27:01 -0000 Kris Kennaway wrote: > On Tue, Jun 19, 2007 at 04:22:35PM -0700, Maxim Sobolev wrote: >> Kris Kennaway wrote: >>> On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: >>>> I have made the following patch to bring style(9) back and make code >>>> more readable. Do you guys want to run it on bento or could I just check >>>> it in? >>>> >>>> http://sobomax.homeunix.org/~sobomax/deps.c.diff >>> Is md5 checksum the same before/after? >> Well, it has some trivial non-whitespace changes. > > whitespace in source does not show up in the binary. Please re-read my message. It has NON-whitespace changes as well. -Maxim From owner-cvs-src@FreeBSD.ORG Wed Jun 20 00:26:50 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1F0616A583; Wed, 20 Jun 2007 00:26:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 7C5D113C457; Wed, 20 Jun 2007 00:26:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l5K0QlKr076918; Tue, 19 Jun 2007 20:26:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: David Xu Date: Tue, 19 Jun 2007 20:26:41 -0400 User-Agent: KMail/1.9.6 References: <200506060513.j565DCur032340@repoman.freebsd.org> In-Reply-To: <200506060513.j565DCur032340@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706192026.41638.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 19 Jun 2007 20:26:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3467/Tue Jun 19 15:38:55 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 00:26:50 -0000 On Monday 06 June 2005 01:13:11 am David Xu wrote: > davidxu 2005-06-06 05:13:11 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_sig.c > Log: > Fix a bug relavant to debugging, a masked signal unexpectedly interrupts > a sleeping thread when process is being debugged. > > PR: GNU/77818 > Tested by: Sean C. Farley This actually breaks other debugging as now debuggers or other processes using procfs/ptrace to catch signals can no longer see ignored signals or SIGSTOP/SIGCONT. The latter breaks strace when execing a new child process as it opens a race where the child process hangs because the parent doesn't ever see that the child process has stopped itself with SIGSTOP (the parent resumes it with SIGCONT when it sees that). The signal shouldn't make it to the target thread if it is ignored, but the process should be stopped and the debugger notified of all signals. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Jun 20 00:29:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 539EC16A400; Wed, 20 Jun 2007 00:29:52 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2D4A413C457; Wed, 20 Jun 2007 00:29:52 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5K0Tq86098362; Wed, 20 Jun 2007 00:29:52 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5K0TqAh098358; Wed, 20 Jun 2007 00:29:52 GMT (envelope-from delphij) Message-Id: <200706200029.l5K0TqAh098358@repoman.freebsd.org> From: Xin LI Date: Wed, 20 Jun 2007 00:29:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/slhci Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 00:29:52 -0000 delphij 2007-06-20 00:29:51 UTC FreeBSD src repository Modified files: sys/modules/slhci Makefile Log: Use .CURDIR when referring source code. This fixes build when 'make obj' was done first. I found this when fixing a problem reported by tinderbox, but forgot to send the patchset to re@ altogether. Approved by: re (kensmith) Revision Changes Path 1.2 +1 -1 src/sys/modules/slhci/Makefile From owner-cvs-src@FreeBSD.ORG Wed Jun 20 02:01:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52C9916A421; Wed, 20 Jun 2007 02:01:39 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 3A87B13C45A; Wed, 20 Jun 2007 02:01:39 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id B1ADB1A4D80; Tue, 19 Jun 2007 19:00:47 -0700 (PDT) Received: from rot13.obsecurity.org (rot13.obsecurity.org [192.168.1.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 87ACA51264; Tue, 19 Jun 2007 22:01:38 -0400 (EDT) Received: by rot13.obsecurity.org (Postfix, from userid 1001) id 748C3C296; Tue, 19 Jun 2007 22:01:38 -0400 (EDT) Date: Tue, 19 Jun 2007 22:01:38 -0400 From: Kris Kennaway To: Maxim Sobolev Message-ID: <20070620020138.GA2486@rot13.obsecurity.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> <4678653B.8070409@FreeBSD.org> <20070619232451.GA872@rot13.obsecurity.org> <4678663E.2060204@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <4678663E.2060204@FreeBSD.org> User-Agent: Mutt/1.4.2.3i Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 02:01:39 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 19, 2007 at 04:26:54PM -0700, Maxim Sobolev wrote: > Kris Kennaway wrote: > >On Tue, Jun 19, 2007 at 04:22:35PM -0700, Maxim Sobolev wrote: > >>Kris Kennaway wrote: > >>>On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: > >>>>I have made the following patch to bring style(9) back and make code= =20 > >>>>more readable. Do you guys want to run it on bento or could I just=20 > >>>>check it in? > >>>> > >>>>http://sobomax.homeunix.org/~sobomax/deps.c.diff > >>>Is md5 checksum the same before/after? > >>Well, it has some trivial non-whitespace changes. > > > >whitespace in source does not show up in the binary. >=20 > Please re-read my message. It has NON-whitespace changes as well. So the answer to my question is ... ? I'm still not sure you understood it. If you are making no functional changes then the md5 of the resulting binary will be unchanged, and this is in fact a good way to check whether you are introducing functional changes or just style/whitespace changes. Kris --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGeIqBWry0BWjoQKURAoJeAJ0Ye1ZTigmDrFfyDqh9UVkEUGRkAgCgq1qP mfDHH5SYBrhxQ8HUQPk4y8M= =Kg/D -----END PGP SIGNATURE----- --bp/iNruPH9dso1Pn-- From owner-cvs-src@FreeBSD.ORG Wed Jun 20 02:04:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C282E16A41F; Wed, 20 Jun 2007 02:04:35 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id A9FAD13C469; Wed, 20 Jun 2007 02:04:35 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 4083A1A4D80; Tue, 19 Jun 2007 19:03:44 -0700 (PDT) Date: Tue, 19 Jun 2007 19:03:44 -0700 From: Alfred Perlstein To: Maxim Sobolev Message-ID: <20070620020344.GI98795@elvis.mu.org> References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> <4678653B.8070409@FreeBSD.org> <20070619232451.GA872@rot13.obsecurity.org> <4678663E.2060204@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4678663E.2060204@FreeBSD.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 02:04:35 -0000 * Maxim Sobolev [070619 16:28] wrote: > Kris Kennaway wrote: > >On Tue, Jun 19, 2007 at 04:22:35PM -0700, Maxim Sobolev wrote: > >>Kris Kennaway wrote: > >>>On Tue, Jun 19, 2007 at 04:16:48PM -0700, Maxim Sobolev wrote: > >>>>I have made the following patch to bring style(9) back and make code > >>>>more readable. Do you guys want to run it on bento or could I just > >>>>check it in? > >>>> > >>>>http://sobomax.homeunix.org/~sobomax/deps.c.diff > >>>Is md5 checksum the same before/after? > >>Well, it has some trivial non-whitespace changes. > > > >whitespace in source does not show up in the binary. > > Please re-read my message. It has NON-whitespace changes as well. > > -Maxim lol.. he means does the resulting binary have the same md5? if it's just style changes, then it should. also, you missed a non-style conformant function. void list_deps(const char *pkgname, char **pkgs, char *listed, that should be: void list_deps -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Wed Jun 20 03:24:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2E8216A421; Wed, 20 Jun 2007 03:24:39 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CDF7313C4AE; Wed, 20 Jun 2007 03:24:39 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5K3Odlq075722; Wed, 20 Jun 2007 03:24:39 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5K3OdVn075715; Wed, 20 Jun 2007 03:24:39 GMT (envelope-from simokawa) Message-Id: <200706200324.l5K3OdVn075715@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Wed, 20 Jun 2007 03:24:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/fwcontrol fwdv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 03:24:40 -0000 simokawa 2007-06-20 03:24:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/fwcontrol fwdv.c Log: MFC: rev 1.7 Increase buffer size of DV stream to prevent buffer overrun. Revision Changes Path 1.5.12.2 +1 -1 src/usr.sbin/fwcontrol/fwdv.c From owner-cvs-src@FreeBSD.ORG Wed Jun 20 05:10:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BA7016A421; Wed, 20 Jun 2007 05:10:55 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7AA2313C44B; Wed, 20 Jun 2007 05:10:55 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5K5AtOj077306; Wed, 20 Jun 2007 05:10:55 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5K5AtMI077294; Wed, 20 Jun 2007 05:10:55 GMT (envelope-from imp) Message-Id: <200706200510.l5K5AtMI077294@repoman.freebsd.org> From: Warner Losh Date: Wed, 20 Jun 2007 05:10:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ehci.c ehci_pci.c hid.c if_rue.c if_rum.c if_udav.c if_ural.c ohci.c uark.c ubsa.c ubser.c ucom.c udbp.c ufm.c uftdi.c uhid.c ukbd.c ulpt.c umass.c umodem.c ums.c uplcom.c urio.c usb.c usb_mem.c usb_port.h usb_quirks.c usb_subr.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 05:10:55 -0000 imp 2007-06-20 05:10:55 UTC FreeBSD src repository Modified files: sys/dev/usb ehci.c ehci_pci.c hid.c if_rue.c if_rum.c if_udav.c if_ural.c ohci.c uark.c ubsa.c ubser.c ucom.c udbp.c ufm.c uftdi.c uhid.c ukbd.c ulpt.c umass.c umodem.c ums.c uplcom.c urio.c usb.c usb_mem.c usb_port.h usb_quirks.c usb_subr.c usbdi.c usbdi_util.c uscanner.c uvscom.c Log: s/logprintf/printf/g Approved by: re@ Revision Changes Path 1.55 +2 -2 src/sys/dev/usb/ehci.c 1.26 +1 -1 src/sys/dev/usb/ehci_pci.c 1.29 +2 -2 src/sys/dev/usb/hid.c 1.39 +1 -1 src/sys/dev/usb/if_rue.c 1.10 +2 -2 src/sys/dev/usb/if_rum.c 1.32 +2 -2 src/sys/dev/usb/if_udav.c 1.62 +2 -2 src/sys/dev/usb/if_ural.c 1.170 +2 -2 src/sys/dev/usb/ohci.c 1.6 +1 -1 src/sys/dev/usb/uark.c 1.31 +1 -1 src/sys/dev/usb/ubsa.c 1.28 +2 -2 src/sys/dev/usb/ubser.c 1.63 +2 -2 src/sys/dev/usb/ucom.c 1.38 +2 -2 src/sys/dev/usb/udbp.c 1.35 +2 -2 src/sys/dev/usb/ufm.c 1.35 +2 -2 src/sys/dev/usb/uftdi.c 1.95 +2 -2 src/sys/dev/usb/uhid.c 1.69 +2 -2 src/sys/dev/usb/ukbd.c 1.79 +2 -2 src/sys/dev/usb/ulpt.c 1.151 +1 -1 src/sys/dev/usb/umass.c 1.67 +1 -1 src/sys/dev/usb/umodem.c 1.93 +2 -2 src/sys/dev/usb/ums.c 1.50 +1 -1 src/sys/dev/usb/uplcom.c 1.47 +2 -2 src/sys/dev/usb/urio.c 1.120 +2 -2 src/sys/dev/usb/usb.c 1.13 +2 -2 src/sys/dev/usb/usb_mem.c 1.95 +2 -2 src/sys/dev/usb/usb_port.h 1.59 +1 -1 src/sys/dev/usb/usb_quirks.c 1.94 +2 -2 src/sys/dev/usb/usb_subr.c 1.102 +2 -2 src/sys/dev/usb/usbdi.c 1.38 +2 -2 src/sys/dev/usb/usbdi_util.c 1.86 +2 -2 src/sys/dev/usb/uscanner.c 1.40 +1 -1 src/sys/dev/usb/uvscom.c From owner-cvs-src@FreeBSD.ORG Wed Jun 20 05:11:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DF5116A421; Wed, 20 Jun 2007 05:11:38 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DCC4013C4AE; Wed, 20 Jun 2007 05:11:37 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5K5Bb8J078559; Wed, 20 Jun 2007 05:11:37 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5K5BbDu078558; Wed, 20 Jun 2007 05:11:37 GMT (envelope-from imp) Message-Id: <200706200511.l5K5BbDu078558@repoman.freebsd.org> From: Warner Losh Date: Wed, 20 Jun 2007 05:11:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/usb uaudio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 05:11:38 -0000 imp 2007-06-20 05:11:37 UTC FreeBSD src repository Modified files: sys/dev/sound/usb uaudio.c Log: s/logprintf/printf/g Approved by: re@ Revision Changes Path 1.36 +35 -35 src/sys/dev/sound/usb/uaudio.c From owner-cvs-src@FreeBSD.ORG Wed Jun 20 07:22:07 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1EAD16A469; Wed, 20 Jun 2007 07:22:07 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 919E013C45A; Wed, 20 Jun 2007 07:22:07 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5K7M3UV053482; Wed, 20 Jun 2007 07:22:05 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4678D5BF.9020609@freebsd.org> Date: Wed, 20 Jun 2007 15:22:39 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20070516 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200506060513.j565DCur032340@repoman.freebsd.org> <200706192026.41638.jhb@freebsd.org> In-Reply-To: <200706192026.41638.jhb@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:22:07 -0000 John Baldwin wrote: > On Monday 06 June 2005 01:13:11 am David Xu wrote: > >>davidxu 2005-06-06 05:13:11 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern kern_sig.c >> Log: >> Fix a bug relavant to debugging, a masked signal unexpectedly interrupts >> a sleeping thread when process is being debugged. >> >> PR: GNU/77818 >> Tested by: Sean C. Farley > > > This actually breaks other debugging as now debuggers or other processes using > procfs/ptrace to catch signals can no longer see ignored signals or > SIGSTOP/SIGCONT. The latter breaks strace when execing a new child process > as it opens a race where the child process hangs because the parent doesn't > ever see that the child process has stopped itself with SIGSTOP (the parent > resumes it with SIGCONT when it sees that). The signal shouldn't make it to > the target thread if it is ignored, but the process should be stopped and the > debugger notified of all signals. > Where can you find the place SIGSTOP can be masked or ignored ? Though SIGCONT can be ignored but it still can resume a suspended process. if ignored signals can be seen by debugger, then a sleep(10) will be interrupted by ignored signals when the process is being debugged, but will work correctly if it is not being debugged, this becauses issignal() must be called by debugged thread to report any signals to debugger, the thread should be woken up. David Xu From owner-cvs-src@FreeBSD.ORG Wed Jun 20 08:29:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0390416A400; Wed, 20 Jun 2007 08:29:19 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D204213C447; Wed, 20 Jun 2007 08:29:18 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5K8TIrR057872; Wed, 20 Jun 2007 08:29:18 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5K8TIro057868; Wed, 20 Jun 2007 08:29:18 GMT (envelope-from philip) Message-Id: <200706200829.l5K8TIro057868@repoman.freebsd.org> From: Philip Paeps Date: Wed, 20 Jun 2007 08:29:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 08:29:19 -0000 philip 2007-06-20 08:29:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/moused moused.c Log: MFC: moused.c rev 1.79 Fix a (very) longstanding bug in moused(8) affecting high-resolution rodents when linear acceleration (-a) was enabled with a <1 value to slow them down. Previously, rounding errors would eat small movements so the mouse had to be moved a certain distance to get any movement at all. We now calculate the rounding errors and take them into account when reporting movement. Submitted by: Oliver Fromme Revision Changes Path 1.70.2.5 +41 -6 src/usr.sbin/moused/moused.c From owner-cvs-src@FreeBSD.ORG Wed Jun 20 08:47:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 080C416A469; Wed, 20 Jun 2007 08:47:17 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id BFD3D13C46E; Wed, 20 Jun 2007 08:47:16 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5K8lBGp071665 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 20 Jun 2007 01:47:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4678E98D.3080905@FreeBSD.org> Date: Wed, 20 Jun 2007 01:47:09 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Kris Kennaway References: <200706182249.l5IMnE4H099470@repoman.freebsd.org> <467863E0.2040906@FreeBSD.org> <20070619232125.GA750@rot13.obsecurity.org> <4678653B.8070409@FreeBSD.org> <20070619232451.GA872@rot13.obsecurity.org> <4678663E.2060204@FreeBSD.org> <20070620020138.GA2486@rot13.obsecurity.org> In-Reply-To: <20070620020138.GA2486@rot13.obsecurity.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Pav Lucistnik , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib deps.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 08:47:17 -0000 Kris Kennaway wrote: > So the answer to my question is ... ? I'm still not sure you > understood it. If you are making no functional changes then the md5 > of the resulting binary will be unchanged, and this is in fact a good > way to check whether you are introducing functional changes or just > style/whitespace changes. Well, perhaps I did not make myself entirely clear. There were in fact some small functional changes (such as replacing fprintf(stderr...) with warnx() for consistency with the rest if the code and using abort(3) instead of exit(3) if sh.t happens) so that the checksum will not be the same. If you take a look at the patch it should be quite obvious what I am talking about. -Maxim From owner-cvs-src@FreeBSD.ORG Thu Jun 21 03:30:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3C2016A41F; Thu, 21 Jun 2007 03:30:18 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D541E13C447; Thu, 21 Jun 2007 03:30:18 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5L3UIqY084012; Thu, 21 Jun 2007 03:30:18 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5L3UIbj084008; Thu, 21 Jun 2007 03:30:18 GMT (envelope-from kmacy) Message-Id: <200706210330.l5L3UIbj084008@repoman.freebsd.org> From: Kip Macy Date: Thu, 21 Jun 2007 03:30:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_adapter.h cxgb_l2t.h cxgb_main.c cxgb_offload.c cxgb_sge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 03:30:19 -0000 kmacy 2007-06-21 03:30:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/cxgb cxgb_adapter.h cxgb_l2t.h cxgb_main.c cxgb_offload.c cxgb_sge.c Log: MFC: - switch adapter and port lock over to using sx so that resources can be allocated atomically - add debug macros for printing lock initialization / teardown - add buffers to port_info and adapter to allow each lock to have a unique name - destroy mutexes initialized by cxgb_offload_init - remove recursive calls to ADAPTER_LOCK - move callout_drain calls so that they don't occur with the lock held - ensure that only as many qsets as are needed are initialized and destroyed Sponsored by: Chelsio Inc. Revision Changes Path 1.2.2.5 +85 -7 src/sys/dev/cxgb/cxgb_adapter.h 1.1.2.3 +1 -0 src/sys/dev/cxgb/cxgb_l2t.h 1.3.2.6 +88 -63 src/sys/dev/cxgb/cxgb_main.c 1.2.2.3 +9 -1 src/sys/dev/cxgb/cxgb_offload.c 1.2.2.6 +24 -15 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 10:39:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4571416A400; Thu, 21 Jun 2007 10:39:25 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1FE8E13C447; Thu, 21 Jun 2007 10:39:25 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LAdPOP031895; Thu, 21 Jun 2007 10:39:25 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LAdO21031890; Thu, 21 Jun 2007 10:39:24 GMT (envelope-from delphij) Message-Id: <200706211039.l5LAdO21031890@repoman.freebsd.org> From: Xin LI Date: Thu, 21 Jun 2007 10:39:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/less main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 10:39:25 -0000 delphij 2007-06-21 10:39:24 UTC FreeBSD src repository Modified files: contrib/less main.c Log: Restore a historical behavior that +foo is considered as a filename by more(1). The less(1) behavior is keep intact. PR: bin/51488 Prodded by: demon Approved by: re (hrs) Revision Changes Path 1.8 +2 -1 src/contrib/less/main.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 10:42:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3B5616A46C; Thu, 21 Jun 2007 10:42:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AD26C13C43E; Thu, 21 Jun 2007 10:42:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LAgxrk032890; Thu, 21 Jun 2007 10:42:59 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LAgx9T032889; Thu, 21 Jun 2007 10:42:59 GMT (envelope-from delphij) Message-Id: <200706211042.l5LAgx9T032889@repoman.freebsd.org> From: Xin LI Date: Thu, 21 Jun 2007 10:42:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: LESS Cc: Subject: cvs commit: src/contrib/less - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 10:42:59 -0000 delphij 2007-06-21 10:42:59 UTC FreeBSD src repository src/contrib/less - Imported sources Update of /home/ncvs/src/contrib/less In directory repoman.freebsd.org:/tmp/cvs-serv32796 Log Message: Virgin import of less v406. Approved by: re (hrs) Status: Vendor Tag: LESS Release Tags: v406 U src/contrib/less/brac.c U src/contrib/less/ch.c U src/contrib/less/charset.c U src/contrib/less/charset.h U src/contrib/less/cmd.h U src/contrib/less/cmdbuf.c C src/contrib/less/command.c U src/contrib/less/configure U src/contrib/less/configure.ac U src/contrib/less/COPYING U src/contrib/less/decode.c U src/contrib/less/defines.ds U src/contrib/less/defines.h.in U src/contrib/less/defines.o2 U src/contrib/less/defines.o9 U src/contrib/less/defines.wn U src/contrib/less/edit.c U src/contrib/less/filename.c C src/contrib/less/forwback.c U src/contrib/less/funcs.h U src/contrib/less/help.c U src/contrib/less/ifile.c U src/contrib/less/input.c U src/contrib/less/INSTALL U src/contrib/less/install.sh U src/contrib/less/jump.c U src/contrib/less/less.h U src/contrib/less/less.hlp U src/contrib/less/less.man U src/contrib/less/less.nro U src/contrib/less/lessecho.c U src/contrib/less/lessecho.man U src/contrib/less/lessecho.nro U src/contrib/less/lesskey.c U src/contrib/less/lesskey.h U src/contrib/less/lesskey.man U src/contrib/less/lesskey.nro U src/contrib/less/lglob.h U src/contrib/less/LICENSE U src/contrib/less/line.c U src/contrib/less/linenum.c U src/contrib/less/lsystem.c U src/contrib/less/main.c U src/contrib/less/Makefile.aut U src/contrib/less/Makefile.dsb U src/contrib/less/Makefile.dsg U src/contrib/less/Makefile.dsu U src/contrib/less/Makefile.in U src/contrib/less/Makefile.o2e U src/contrib/less/Makefile.o9c U src/contrib/less/Makefile.o9u U src/contrib/less/Makefile.wnb U src/contrib/less/Makefile.wnm U src/contrib/less/mark.c U src/contrib/less/mkfuncs.awk U src/contrib/less/mkhelp.c U src/contrib/less/mkinstalldirs U src/contrib/less/NEWS U src/contrib/less/optfunc.c U src/contrib/less/option.c U src/contrib/less/option.h U src/contrib/less/opttbl.c U src/contrib/less/os.c U src/contrib/less/output.c U src/contrib/less/pckeys.h U src/contrib/less/position.c U src/contrib/less/position.h U src/contrib/less/prompt.c U src/contrib/less/README U src/contrib/less/regexp.c U src/contrib/less/regexp.h C src/contrib/less/screen.c U src/contrib/less/scrsize.c C src/contrib/less/search.c U src/contrib/less/signal.c U src/contrib/less/tags.c U src/contrib/less/ttyin.c U src/contrib/less/version.c 4 conflicts created by this import. Use the following command to help the merge: cvs checkout -jLESS:yesterday -jLESS src/contrib/less From owner-cvs-src@FreeBSD.ORG Thu Jun 21 10:44:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18C6216A41F; Thu, 21 Jun 2007 10:44:52 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E71B313C465; Thu, 21 Jun 2007 10:44:51 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LAipok033220; Thu, 21 Jun 2007 10:44:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LAip7X033216; Thu, 21 Jun 2007 10:44:51 GMT (envelope-from delphij) Message-Id: <200706211044.l5LAip7X033216@repoman.freebsd.org> From: Xin LI Date: Thu, 21 Jun 2007 10:44:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/less command.c forwback.c screen.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 10:44:52 -0000 delphij 2007-06-21 10:44:50 UTC FreeBSD src repository Modified files: contrib/less command.c forwback.c screen.c Log: Resolve conflicts after less(1) v406 import. Approved by: re (hrs) Revision Changes Path 1.8 +1 -1 src/contrib/less/command.c 1.7 +0 -3 src/contrib/less/forwback.c 1.7 +18 -0 src/contrib/less/screen.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 14:36:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 982BB16A41F; Thu, 21 Jun 2007 14:36:23 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 72E8D13C45D; Thu, 21 Jun 2007 14:36:23 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LEaN5W092934; Thu, 21 Jun 2007 14:36:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LEaNpl092933; Thu, 21 Jun 2007 14:36:23 GMT (envelope-from imp) Message-Id: <200706211436.l5LEaNpl092933@repoman.freebsd.org> From: Warner Losh Date: Thu, 21 Jun 2007 14:36:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usb_port.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 14:36:23 -0000 imp 2007-06-21 14:36:22 UTC FreeBSD src repository Modified files: sys/dev/usb usb_port.h Log: Restore approximately FreeBDS 6.x's level of compatibility macros. Older drivers that do not wish to convert to the native API (which will work with both 6.x and 7.x) can simply include . Drivers in the tree shouldn't these macros, unless they actually work on other OSes and are actively maintained. Approved by: re@ Revision Changes Path 1.96 +74 -4 src/sys/dev/usb/usb_port.h From owner-cvs-src@FreeBSD.ORG Thu Jun 21 14:42:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32B4316A421; Thu, 21 Jun 2007 14:42:36 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2290C13C483; Thu, 21 Jun 2007 14:42:36 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LEgam5094276; Thu, 21 Jun 2007 14:42:36 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LEgZdt094275; Thu, 21 Jun 2007 14:42:35 GMT (envelope-from imp) Message-Id: <200706211442.l5LEgZdt094275@repoman.freebsd.org> From: Warner Losh Date: Thu, 21 Jun 2007 14:42:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ehci_pci.c if_rum.c if_ural.c ohci_pci.c ubser.c ucycom.c udbp.c ufm.c ufoma.c uhci_pci.c uhid.c uhub.c uipaq.c ukbd.c ulpt.c umass.c umodem.c ums.c urio.c usb_quirks.c usb_quirks.h uscanner.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 14:42:36 -0000 imp 2007-06-21 14:42:35 UTC FreeBSD src repository Modified files: sys/dev/usb ehci_pci.c if_rum.c if_ural.c ohci_pci.c ubser.c ucycom.c udbp.c ufm.c ufoma.c uhci_pci.c uhid.c uhub.c uipaq.c ukbd.c ulpt.c umass.c umodem.c ums.c urio.c usb_quirks.c usb_quirks.h uscanner.c Log: Latest round of usb cleanups: o Consistently use device_foo_t and bus_foo_t for functions implementing device_foo and bus_foo respectively. Adjust those routines that were wrong (we should do this throughout the tree). o make all the modules depend on usb. Otherwise these modules won't load. o ucycom doesn't need usb_port.h o Minor unifdefing o uhub, umass, ums, urio, uscanner conversion complete. o ukbd: Remove the NO_SET_PROTO quirk (fixes a PR 77940). NetBSD removed their check and setting the proto a long time ago. o umodem panic fixed. UQ_ASSUME_CM_OVER_DATA quirk removed because I've never seen a umodem that needed this rejection for proection (this gets rid of ~20% of the quirks). Approved by: re@ (kensmith) PR: 77940 Revision Changes Path 1.27 +5 -5 src/sys/dev/usb/ehci_pci.c 1.11 +1 -0 src/sys/dev/usb/if_rum.c 1.63 +1 -0 src/sys/dev/usb/if_ural.c 1.50 +4 -4 src/sys/dev/usb/ohci_pci.c 1.29 +1 -1 src/sys/dev/usb/ubser.c 1.6 +3 -4 src/sys/dev/usb/ucycom.c 1.39 +1 -0 src/sys/dev/usb/udbp.c 1.36 +1 -0 src/sys/dev/usb/ufm.c 1.9 +3 -3 src/sys/dev/usb/ufoma.c 1.61 +4 -7 src/sys/dev/usb/uhci_pci.c 1.96 +0 -1 src/sys/dev/usb/uhid.c 1.80 +38 -20 src/sys/dev/usb/uhub.c 1.7 +1 -1 src/sys/dev/usb/uipaq.c 1.70 +1 -9 src/sys/dev/usb/ukbd.c 1.80 +1 -0 src/sys/dev/usb/ulpt.c 1.152 +30 -9 src/sys/dev/usb/umass.c 1.68 +7 -12 src/sys/dev/usb/umodem.c 1.94 +37 -23 src/sys/dev/usb/ums.c 1.48 +31 -172 src/sys/dev/usb/urio.c 1.60 +1 -34 src/sys/dev/usb/usb_quirks.c 1.24 +0 -3 src/sys/dev/usb/usb_quirks.h 1.87 +31 -13 src/sys/dev/usb/uscanner.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 16:39:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD0FC16A400; Thu, 21 Jun 2007 16:39:25 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 86BBA13C4B8; Thu, 21 Jun 2007 16:39:25 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LGdP9Y018658; Thu, 21 Jun 2007 16:39:25 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LGdPJ7018657; Thu, 21 Jun 2007 16:39:25 GMT (envelope-from brueffer) Message-Id: <200706211639.l5LGdPJ7018657@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 21 Jun 2007 16:39:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 lock.9 locking.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:39:25 -0000 brueffer 2007-06-21 16:39:25 UTC FreeBSD src repository Modified files: share/man/man9 lock.9 locking.9 Log: Remove duplicate xref and add missing commas. PR: 113891 Submitted by: pluknet Approved by: re (blanket) Revision Changes Path 1.17 +0 -1 src/share/man/man9/lock.9 1.10 +3 -3 src/share/man/man9/locking.9 From owner-cvs-src@FreeBSD.ORG Thu Jun 21 17:55:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D7CA16A400; Thu, 21 Jun 2007 17:55:29 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4761F13C465; Thu, 21 Jun 2007 17:55:29 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LHtTmR045593; Thu, 21 Jun 2007 17:55:29 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LHtSZa045592; Thu, 21 Jun 2007 17:55:28 GMT (envelope-from imp) Message-Id: <200706211755.l5LHtSZa045592@repoman.freebsd.org> From: Warner Losh Date: Thu, 21 Jun 2007 17:55:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c usbdevs uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 17:55:29 -0000 imp 2007-06-21 17:55:28 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c usbdevs uvisor.c Log: Fix two PRs by adding vendor IDs: PR 108097: ADMtek 851X USB-to-LAN adapter PR 74849: Samsung SPH-i500 does not attach properly as usb modem/Palm device PR: 108097, 74849 Approved by: re@ (kensmith trivial usb blanket) Revision Changes Path 1.114 +1 -0 src/sys/dev/usb/if_aue.c 1.297 +3 -1 src/sys/dev/usb/usbdevs 1.37 +1 -0 src/sys/dev/usb/uvisor.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 19:55:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8294216A400; Thu, 21 Jun 2007 19:55:49 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5C88D13C447; Thu, 21 Jun 2007 19:55:49 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LJtnvU086143; Thu, 21 Jun 2007 19:55:49 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LJtna6086142; Thu, 21 Jun 2007 19:55:49 GMT (envelope-from emax) Message-Id: <200706211955.l5LJtna6086142@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 21 Jun 2007 19:55:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/socket ng_btsocket_rfcomm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 19:55:49 -0000 emax 2007-06-21 19:55:49 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/socket ng_btsocket_rfcomm.c Log: Replace sosend() with direct call to .pru_send method on the L2CAP socket. This is to avoid LOR with sx(9) lock in sblock() called from sosend_generic(). Approved by: re (kensmith) MFC after: 1 week Revision Changes Path 1.25 +2 -2 src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 20:13:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2808B16A46F; Thu, 21 Jun 2007 20:13:08 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0227A13C480; Thu, 21 Jun 2007 20:13:08 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LKD70L096511; Thu, 21 Jun 2007 20:13:07 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LKD7jV096510; Thu, 21 Jun 2007 20:13:07 GMT (envelope-from imp) Message-Id: <200706212013.l5LKD7jV096510@repoman.freebsd.org> From: Warner Losh Date: Thu, 21 Jun 2007 20:13:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:13:08 -0000 imp 2007-06-21 20:13:07 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Add support for YANO external USB-HDD. Submitted by: Norihiro TANAKA PR: 94742 Approved by: re (kensmith blanket) Revision Changes Path 1.153 +4 -0 src/sys/dev/usb/umass.c 1.298 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Thu Jun 21 20:27:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE1B916A400; Thu, 21 Jun 2007 20:27:24 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 87F2E13C45A; Thu, 21 Jun 2007 20:27:24 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LKROiC099079; Thu, 21 Jun 2007 20:27:24 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LKRONL099078; Thu, 21 Jun 2007 20:27:24 GMT (envelope-from bmah) Message-Id: <200706212027.l5LKRONL099078@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 21 Jun 2007 20:27:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:27:24 -0000 bmah 2007-06-21 20:27:24 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Updated release notes: less v406. Approved by: re (implicitly) Revision Changes Path 1.1045 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Thu Jun 21 20:58:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0CD116A468; Thu, 21 Jun 2007 20:58:45 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BB6BD13C447; Thu, 21 Jun 2007 20:58:45 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LKwjf5013336; Thu, 21 Jun 2007 20:58:45 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LKwj04013335; Thu, 21 Jun 2007 20:58:45 GMT (envelope-from ariff) Message-Id: <200706212058.l5LKwj04013335@repoman.freebsd.org> From: Ariff Abdullah Date: Thu, 21 Jun 2007 20:58:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/sound/pci/hda hdac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:58:46 -0000 ariff 2007-06-21 20:58:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pci/hda hdac.c Log: MFC: (revision 1.42) - Fix headphone jack sensing support for Olivetti Olibook 610-430 XPSE [1]. - Drain all callout handlers during driver detach appropriately. - M_NOWAIT -> M_WAITOK Tested by: [1] Gonzalo Lionel Rodriguez Revision Changes Path 1.36.2.3 +7 -7 src/sys/dev/sound/pci/hda/hdac.c From owner-cvs-src@FreeBSD.ORG Thu Jun 21 22:50:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F067E16A421; Thu, 21 Jun 2007 22:50:37 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E107213C457; Thu, 21 Jun 2007 22:50:37 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LMob3F038271; Thu, 21 Jun 2007 22:50:37 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LMobq4038270; Thu, 21 Jun 2007 22:50:37 GMT (envelope-from njl) Message-Id: <200706212250.l5LMobq4038270@repoman.freebsd.org> From: Nate Lawson Date: Thu, 21 Jun 2007 22:50:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc devd.conf rc.resume rc.suspend src/sys/i386/acpica acpi_machdep.c src/usr.sbin/acpi/acpiconf acpiconf.c src/sys/dev/acpica acpi.c acpiio.h acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 22:50:38 -0000 njl 2007-06-21 22:50:37 UTC FreeBSD src repository Modified files: etc devd.conf rc.suspend rc.resume sys/i386/acpica acpi_machdep.c usr.sbin/acpi/acpiconf acpiconf.c sys/dev/acpica acpi.c acpiio.h acpivar.h Log: Update the suspend/resume user API while maintaining backwards compat. Improvements: * /etc/rc.suspend,rc.resume are always run, no matter the source of the suspend request (user or kernel, apm or acpi) * suspend now requires positive user acknowledgement. If a user program wants to cancel the suspend, they can. If one of the user programs hangs or doesn't respond within 10 seconds, the system suspends anyway. * /dev/apm is clonable, allowing multiple listeners for suspend events. In the future, xorg-server can use this to be informed about suspend even if there are other listeners (i.e. apmd). Changes: * Two new ACPI ioctls: REQSLPSTATE and ACKSLPSTATE. Request begins the process of suspending by notifying all listeners. acpi is monitored by devd(8) and /dev/apm listener(s) are also counted. Users register their approval or disapproval via Ack. If anyone disapproves, suspend is vetoed. * Old user programs or kernel modules that used SETSLPSTATE continue to work. A message is printed once that this interface is deprecated. * acpiconf gains the -k flag to ack the suspend request. This flag is undocumented on purpose since it's only used by /etc/rc.suspend. It is not intended to be a permanent change and will be removed once a better power API is implemented. * S5 (power off) is no longer supported via acpiconf -s 5 or apm -z/-Z. This restores previous behavior of halt/shutdown -p being the interface. * Miscellaneous improvements to error reporting Approved by: re Revision Changes Path 1.38 +14 -0 src/etc/devd.conf 1.8 +8 -4 src/etc/rc.resume 1.7 +10 -5 src/etc/rc.suspend 1.240 +179 -12 src/sys/dev/acpica/acpi.c 1.17 +7 -1 src/sys/dev/acpica/acpiio.h 1.107 +25 -0 src/sys/dev/acpica/acpivar.h 1.36 +216 -26 src/sys/i386/acpica/acpi_machdep.c 1.26 +22 -28 src/usr.sbin/acpi/acpiconf/acpiconf.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 00:01:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF4D416A421; Fri, 22 Jun 2007 00:01:57 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 12B1113C43E; Fri, 22 Jun 2007 00:01:57 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M01ucl053761; Fri, 22 Jun 2007 00:01:56 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M01u8Z053760; Fri, 22 Jun 2007 00:01:56 GMT (envelope-from marck) Message-Id: <200706220001.l5M01u8Z053760@repoman.freebsd.org> From: Dmitry Morozovsky Date: Fri, 22 Jun 2007 00:01:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 00:01:57 -0000 marck 2007-06-22 00:01:56 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) usr.sbin/powerd powerd.c Log: MFC rev 1.21: Failing to set new frequency should not lead to powerd exiting. Change err(3) to warn(3) as three other cases. Approved by: njl, des Revision Changes Path 1.6.2.5 +1 -1 src/usr.sbin/powerd/powerd.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 03:46:07 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5B8016A421; Fri, 22 Jun 2007 03:46:07 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from relay02.kiev.sovam.com (relay02.kiev.sovam.com [62.64.120.197]) by mx1.freebsd.org (Postfix) with ESMTP id 67D4A13C45B; Fri, 22 Jun 2007 03:46:07 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from [89.162.146.170] (helo=skuns.kiev.zoral.com.ua) by relay02.kiev.sovam.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1I1a60-000EbB-W6; Fri, 22 Jun 2007 06:46:06 +0300 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by skuns.kiev.zoral.com.ua (8.14.1/8.14.1) with ESMTP id l5M3jpHv090389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 22 Jun 2007 06:45:51 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1) with ESMTP id l5M3ju5N046808; Fri, 22 Jun 2007 06:45:56 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1/Submit) id l5M3jtWl046807; Fri, 22 Jun 2007 06:45:55 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 22 Jun 2007 06:45:55 +0300 From: Kostik Belousov To: Nate Lawson Message-ID: <20070622034555.GD2268@deviant.kiev.zoral.com.ua> References: <200706212250.l5LMobq4038270@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UHrgcb0BFsIl160g" Content-Disposition: inline In-Reply-To: <200706212250.l5LMobq4038270@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: ClamAV version 0.90.2, clamav-milter version 0.90.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on skuns.kiev.zoral.com.ua X-Scanner-Signature: 8fcfa5a562f326ba64a474cd1db6e25e X-DrWeb-checked: yes X-SpamTest-Envelope-From: kostikbel@gmail.com X-SpamTest-Group-ID: 00000000 X-SpamTest-Header: Not Detected X-SpamTest-Info: Profiles 1164 [June 21 2007] X-SpamTest-Info: helo_type=3 X-SpamTest-Method: none X-SpamTest-Rate: 0 X-SpamTest-Status: Not detected X-SpamTest-Status-Extended: not_detected X-SpamTest-Version: SMTP-Filter Version 3.0.0 [0255], KAS30/Release Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc devd.conf rc.resume rc.suspend src/sys/i386/acpica acpi_machdep.c src/usr.sbin/acpi/acpiconf acpiconf.c src/sys/dev/acpica acpi.c acpiio.h acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 03:46:07 -0000 --UHrgcb0BFsIl160g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 21, 2007 at 10:50:37PM +0000, Nate Lawson wrote: > njl 2007-06-21 22:50:37 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc devd.conf rc.suspend rc.resume=20 > sys/i386/acpica acpi_machdep.c=20 > usr.sbin/acpi/acpiconf acpiconf.c=20 > sys/dev/acpica acpi.c acpiio.h acpivar.h=20 > Log: > Update the suspend/resume user API while maintaining backwards compat. > =20 > Improvements: > * /dev/apm is clonable, allowing multiple listeners for suspend events. Did you evaluate/tested destroy_dev_sched() KPI for your needs ? I do not see any protection for several opens going parallel on given cdev. I.e., I think that si_drv1 assignment in open() could cause problems. Generally, as I know, system does not enforce any serialization between calls to cdev methods for mp-safe drivers. --UHrgcb0BFsIl160g Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGe0XyC3+MBN1Mb4gRAvYXAKCGsACMh2o+X8DhqzkRhbFJ90M0ZgCfYuXJ 1rFGi2eCL7yw0cckudSnbUg= =y+lx -----END PGP SIGNATURE----- --UHrgcb0BFsIl160g-- From owner-cvs-src@FreeBSD.ORG Fri Jun 22 03:54:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB9A416A41F; Fri, 22 Jun 2007 03:54:53 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A4A7513C43E; Fri, 22 Jun 2007 03:54:53 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M3sr3b010637; Fri, 22 Jun 2007 03:54:53 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M3sr6c010636; Fri, 22 Jun 2007 03:54:53 GMT (envelope-from yongari) Message-Id: <200706220354.l5M3sr6c010636@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 22 Jun 2007 03:54:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/powerpc busdma_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 03:54:53 -0000 yongari 2007-06-22 03:54:53 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc busdma_machdep.c Log: Honor maxsegsz of less than a page size in a DMA tag. Previously it used to return PAGE_SIZE without respect to restrictions of a DMA tag. This affected all of the busdma load functions that use _bus_dmamap_loader_buffer() as their back-end. Reviewed by: scottl (long a ago) Approved by: re (hrs) Revision Changes Path 1.27 +2 -0 src/sys/powerpc/powerpc/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 03:57:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D113A16A474; Fri, 22 Jun 2007 03:57:37 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A8F0813C4AE; Fri, 22 Jun 2007 03:57:37 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M3vbLk011088; Fri, 22 Jun 2007 03:57:37 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M3vbFV011087; Fri, 22 Jun 2007 03:57:37 GMT (envelope-from yongari) Message-Id: <200706220357.l5M3vbFV011087@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 22 Jun 2007 03:57:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/powerpc/powerpc busdma_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 03:57:37 -0000 yongari 2007-06-22 03:57:37 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc busdma_machdep.c Log: Reimplement bus_dmamap_load with bus_dmamap_load_buffer. Previously it didn't honor parent dma tag's restrictions such that an invalid dma segment could be passed to device. The driver for the device may panic in sanity check routine for the dma segment or may produce unexpected results. I have no idea how it could ever have worked before. Reviewed by: grehan Tested by: gad Approved by: re (hrs) Revision Changes Path 1.28 +32 -68 src/sys/powerpc/powerpc/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:14:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F98516A468; Fri, 22 Jun 2007 05:14:28 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 189A913C45B; Fri, 22 Jun 2007 05:14:28 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5ERb4036698; Fri, 22 Jun 2007 05:14:27 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5ERB3036697; Fri, 22 Jun 2007 05:14:27 GMT (envelope-from imp) Message-Id: <200706220514.l5M5ERB3036697@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:14:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb udbp.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:14:28 -0000 imp 2007-06-22 05:14:27 UTC FreeBSD src repository Modified files: sys/dev/usb udbp.c usbdevs Log: USL101 Host-to-Host bridge support PR: 82436 Submitted by: Maxim M. Kazachek Approved by: re (kensmith) Revision Changes Path 1.40 +7 -3 src/sys/dev/usb/udbp.c 1.299 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:20:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0924316A41F; Fri, 22 Jun 2007 05:20:12 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C35C813C457; Fri, 22 Jun 2007 05:20:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5KBR7037332; Fri, 22 Jun 2007 05:20:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5KBUK037330; Fri, 22 Jun 2007 05:20:11 GMT (envelope-from imp) Message-Id: <200706220520.l5M5KBUK037330@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:20:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:20:12 -0000 imp 2007-06-22 05:20:11 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c usbdevs Log: USB Ethernet Adaptor "ELECOM LD-USB20" PR: 86195 Submitted by: kato Approved by: re (kensmith) Revision Changes Path 1.115 +1 -0 src/sys/dev/usb/if_aue.c 1.300 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:33:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E4D116A41F; Fri, 22 Jun 2007 05:33:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1676513C447; Fri, 22 Jun 2007 05:33:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5XKTT040683; Fri, 22 Jun 2007 05:33:20 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5XKnh040682; Fri, 22 Jun 2007 05:33:20 GMT (envelope-from imp) Message-Id: <200706220533.l5M5XKnh040682@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:33:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdevs uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:33:21 -0000 imp 2007-06-22 05:33:20 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uvisor.c Log: Update uvisor to support the Fossil Abacus Wrist PDA Submitted by: Simon Dick PR: 96714 Approved by: re (kensmith, blanket) Revision Changes Path 1.301 +4 -0 src/sys/dev/usb/usbdevs 1.38 +1 -0 src/sys/dev/usb/uvisor.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:44:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC02E16A421; Fri, 22 Jun 2007 05:44:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A4F0313C4B0; Fri, 22 Jun 2007 05:44:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5iglL042928; Fri, 22 Jun 2007 05:44:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5igsI042926; Fri, 22 Jun 2007 05:44:42 GMT (envelope-from imp) Message-Id: <200706220544.l5M5igsI042926@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:44:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb uftdi.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:44:42 -0000 imp 2007-06-22 05:44:42 UTC FreeBSD src repository Modified files: sys/dev/usb uftdi.c usbdevs Log: Crystalfontz CFA-635 20x4 USB LCD (plus minor sorting) Submitted by: John Wilson PR: 107526 Approved by: re (kensmith, blanket) Revision Changes Path 1.36 +2 -0 src/sys/dev/usb/uftdi.c 1.302 +11 -14 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:47:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A36816A400; Fri, 22 Jun 2007 05:47:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1952213C457; Fri, 22 Jun 2007 05:47:01 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5l0AP043243; Fri, 22 Jun 2007 05:47:00 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5l0Qa043242; Fri, 22 Jun 2007 05:47:00 GMT (envelope-from kientzle) Message-Id: <200706220547.l5M5l0Qa043242@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 22 Jun 2007 05:47:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive Makefile archive.h.in archive_write_set_format.c archive_write_set_format_by_name.c archive_write_set_format_cpio_newc.c src/lib/libarchive/test Makefile test_write_format_cpio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:47:01 -0000 kientzle 2007-06-22 05:47:00 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive.h.in archive_write_set_format.c archive_write_set_format_by_name.c lib/libarchive/test Makefile Added files: lib/libarchive archive_write_set_format_cpio_newc.c lib/libarchive/test test_write_format_cpio.c Log: Support for writing the 'newc' cpio format, plus a minimal test harness for the cpio formats. Thanks to: Rudolf Marek Approved by: re@ Revision Changes Path 1.73 +1 -0 src/lib/libarchive/Makefile 1.45 +1 -0 src/lib/libarchive/archive.h.in 1.5 +1 -0 src/lib/libarchive/archive_write_set_format.c 1.7 +2 -0 src/lib/libarchive/archive_write_set_format_by_name.c 1.1 +274 -0 src/lib/libarchive/archive_write_set_format_cpio_newc.c (new) 1.8 +2 -0 src/lib/libarchive/test/Makefile 1.1 +112 -0 src/lib/libarchive/test/test_write_format_cpio.c (new) From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:49:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9B5816A4CF; Fri, 22 Jun 2007 05:49:12 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C071E13C45D; Fri, 22 Jun 2007 05:49:12 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5nCSZ043475; Fri, 22 Jun 2007 05:49:12 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5nCFB043474; Fri, 22 Jun 2007 05:49:12 GMT (envelope-from imp) Message-Id: <200706220549.l5M5nCFB043474@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:49:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdevs uscanner.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:49:13 -0000 imp 2007-06-22 05:49:12 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uscanner.c Log: add Benq 3300U/4300U support Submitted by: Denis Sadykov PR: 110477 Approved by: re (kensmith, blanket) Revision Changes Path 1.303 +1 -0 src/sys/dev/usb/usbdevs 1.88 +1 -0 src/sys/dev/usb/uscanner.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:49:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEAA816A53A; Fri, 22 Jun 2007 05:49:13 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C096813C45E; Fri, 22 Jun 2007 05:49:13 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5nDFM043502; Fri, 22 Jun 2007 05:49:13 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5nDDI043501; Fri, 22 Jun 2007 05:49:13 GMT (envelope-from kientzle) Message-Id: <200706220549.l5M5nDDI043501@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 22 Jun 2007 05:49:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive/test Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:49:14 -0000 kientzle 2007-06-22 05:49:13 UTC FreeBSD src repository Modified files: lib/libarchive/test Makefile Log: Ouch. I partially screwed up the last commit by enabling a test that's not ready yet. Pointy hat: /me Approved by: re@ Revision Changes Path 1.9 +0 -1 src/lib/libarchive/test/Makefile From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:53:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F77616A469; Fri, 22 Jun 2007 05:53:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3854013C489; Fri, 22 Jun 2007 05:53:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5r68w044708; Fri, 22 Jun 2007 05:53:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5r5AB044707; Fri, 22 Jun 2007 05:53:05 GMT (envelope-from imp) Message-Id: <200706220553.l5M5r5AB044707@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:53:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb uftdi.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:53:06 -0000 imp 2007-06-22 05:53:05 UTC FreeBSD src repository Modified files: sys/dev/usb uftdi.c usbdevs Log: Tactrix Openport support Submitted by: Jonathan Charest PR: 110992 Approved by: re (kensmith, blanket) Revision Changes Path 1.37 +6 -0 src/sys/dev/usb/uftdi.c 1.304 +3 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Jun 22 05:56:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DA9616A41F; Fri, 22 Jun 2007 05:56:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 75D0813C44C; Fri, 22 Jun 2007 05:56:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M5u6Fi045466; Fri, 22 Jun 2007 05:56:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M5u6Il045462; Fri, 22 Jun 2007 05:56:06 GMT (envelope-from imp) Message-Id: <200706220556.l5M5u6Il045462@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 05:56:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ubsa.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:56:06 -0000 imp 2007-06-22 05:56:06 UTC FreeBSD src repository Modified files: sys/dev/usb ubsa.c usbdevs Log: add support for Option GlobeTrotter 3G+ (PR says this may be from OpenBSD) Submitted by: Simun Mikecin PR: 111710 Approved by: re (kensmith, blanket) Revision Changes Path 1.32 +2 -0 src/sys/dev/usb/ubsa.c 1.305 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Jun 22 06:02:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9839416A421; Fri, 22 Jun 2007 06:02:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7166A13C44C; Fri, 22 Jun 2007 06:02:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5M62LS1047578; Fri, 22 Jun 2007 06:02:21 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5M62Ll6047577; Fri, 22 Jun 2007 06:02:21 GMT (envelope-from imp) Message-Id: <200706220602.l5M62Ll6047577@repoman.freebsd.org> From: Warner Losh Date: Fri, 22 Jun 2007 06:02:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdevs uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:02:21 -0000 imp 2007-06-22 06:02:20 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uvisor.c Log: Add support for Garmin iQue 3600 Submitted by: Lapo Luchini PR: 113324 Approved by: re (kensmith, blanket) Revision Changes Path 1.306 +19 -15 src/sys/dev/usb/usbdevs 1.39 +1 -0 src/sys/dev/usb/uvisor.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 10:04:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5E7416A469; Fri, 22 Jun 2007 10:04:07 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7F09213C480; Fri, 22 Jun 2007 10:04:07 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MA47JX008903; Fri, 22 Jun 2007 10:04:07 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MA479W008899; Fri, 22 Jun 2007 10:04:07 GMT (envelope-from dwmalone) Message-Id: <200706221004.l5MA479W008899@repoman.freebsd.org> From: David Malone Date: Fri, 22 Jun 2007 10:04:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/periodic periodic.8 periodic.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 10:04:07 -0000 dwmalone 2007-06-22 10:04:06 UTC FreeBSD src repository Modified files: usr.sbin/periodic periodic.8 periodic.sh Log: Add an option to make periodic(8) quiet when no output was generated. The man page part of the patch is my fault, the changes to the periodic script is Dominik's. PR: 88486 Submitted by: Dominik Brettnacher Reviewed by: brian Approved by: re MFC after: 1 month Revision Changes Path 1.31 +5 -0 src/usr.sbin/periodic/periodic.8 1.21 +8 -5 src/usr.sbin/periodic/periodic.sh From owner-cvs-src@FreeBSD.ORG Fri Jun 22 13:22:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA5DA16A400; Fri, 22 Jun 2007 13:22:37 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ADC1913C458; Fri, 22 Jun 2007 13:22:37 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MDMbw0063576; Fri, 22 Jun 2007 13:22:37 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MDMbZX063575; Fri, 22 Jun 2007 13:22:37 GMT (envelope-from kib) Message-Id: <200706221322.l5MDMbZX063575@repoman.freebsd.org> From: Konstantin Belousov Date: Fri, 22 Jun 2007 13:22:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c src/sys/ufs/ufs ufs_inode.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:22:37 -0000 kib 2007-06-22 13:22:37 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_softdep.c sys/ufs/ufs ufs_inode.c Log: Fix livelock that could occur when snapshoting UFS with quotas, where some quota limit was exceeded. Sequence of UFS_VALLOC()/UFS_VFREE() call there could cause inodeblock to have both freefile and inodedep dependencies without any inode in the block being marked for write. Then, softdep_check_suspend() would return EAGAIN forewer. Force write of inodeblock with allocated freefile softdependency by setting IN_MODIFIED flag in softdep_freefile and unconditionally calling UFS_UPDATE() in ufs_reclaim. Reported by: kris Debug help and tested by: Peter Holm Approved by: re (kensmith) MFC after: 3 weeks Revision Changes Path 1.211 +1 -0 src/sys/ufs/ffs/ffs_softdep.c 1.69 +2 -3 src/sys/ufs/ufs/ufs_inode.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 13:50:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75D1116A400; Fri, 22 Jun 2007 13:50:57 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6900E13C46A; Fri, 22 Jun 2007 13:50:57 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MDovNV068607; Fri, 22 Jun 2007 13:50:57 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MDovRs068603; Fri, 22 Jun 2007 13:50:57 GMT (envelope-from rrs) Message-Id: <200706221350.l5MDovRs068603@repoman.freebsd.org> From: Randall Stewart Date: Fri, 22 Jun 2007 13:50:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_indata.c sctp_indata.h sctp_input.c sctp_uio.h sctputil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:50:57 -0000 rrs 2007-06-22 13:50:57 UTC FreeBSD src repository Modified files: sys/netinet sctp_indata.c sctp_indata.h sctp_input.c sctp_uio.h sctputil.c Log: - Fix stream reset so it limits the number of streams that can be listed - Fix fwd-tsn to use proper accessor so it does not overrun mbufs - Fix stream reset error reporting to actually work (it has always been broken if the peer rejects a stream reset) - Some 64 bit friendly changes Approved by: re(bmah@freebsd.org) Revision Changes Path 1.34 +12 -5 src/sys/netinet/sctp_indata.c 1.9 +1 -1 src/sys/netinet/sctp_indata.h 1.45 +45 -15 src/sys/netinet/sctp_input.c 1.24 +180 -175 src/sys/netinet/sctp_uio.h 1.48 +2 -2 src/sys/netinet/sctputil.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 13:59:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 576A216A41F; Fri, 22 Jun 2007 13:59:55 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 32DDB13C447; Fri, 22 Jun 2007 13:59:55 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MDxtai070627; Fri, 22 Jun 2007 13:59:55 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MDxt23070626; Fri, 22 Jun 2007 13:59:55 GMT (envelope-from rrs) Message-Id: <200706221359.l5MDxt23070626@repoman.freebsd.org> From: Randall Stewart Date: Fri, 22 Jun 2007 13:59:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/net sctp_sys_calls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:59:55 -0000 rrs 2007-06-22 13:59:55 UTC FreeBSD src repository Modified files: lib/libc/net sctp_sys_calls.c Log: - Fix incorrect error return on sctp_getaddrlen - Fix a memory leak when a non v4/v6 address was passed in. - Take out strange line that copy's back to the src array incorrectly (corrupting the input array). Approved by: re(bmah@freebsd.org) Obtained from: Weongyo Jeong(weongyo.jeong@gmail.com) Revision Changes Path 1.9 +3 -3 src/lib/libc/net/sctp_sys_calls.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 14:40:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7C8E16A41F; Fri, 22 Jun 2007 14:40:09 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C3EFF13C483; Fri, 22 Jun 2007 14:40:09 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MEe9vb086826; Fri, 22 Jun 2007 14:40:09 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MEe9iR086817; Fri, 22 Jun 2007 14:40:09 GMT (envelope-from rrs) Message-Id: <200706221440.l5MEe9iR086817@repoman.freebsd.org> From: Randall Stewart Date: Fri, 22 Jun 2007 14:40:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 14:40:10 -0000 rrs 2007-06-22 14:40:09 UTC FreeBSD src repository Modified files: sys/netinet sctp_input.c Log: - Fix type casts in calling sctp_m_getptr, it expects a int not an unsigned (returned by sizeof) also add cast to comparison check for size bounds. Approved by: re(bmah@freebsd.org) Revision Changes Path 1.46 +2 -2 src/sys/netinet/sctp_input.c From owner-cvs-src@FreeBSD.ORG Fri Jun 22 15:01:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39D5016A41F; Fri, 22 Jun 2007 15:01:35 +0000 (UTC) (envelope-from simon@benji.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id DF7B713C458; Fri, 22 Jun 2007 15:01:34 +0000 (UTC) (envelope-from simon@benji.nitro.dk) Received: from benji.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 9B5422D53A9; Fri, 22 Jun 2007 15:01:33 +0000 (UTC) Received: by benji.nitro.dk (Postfix, from userid 2000) id F3BB3FF3D; Fri, 22 Jun 2007 17:01:34 +0200 (CEST) Date: Fri, 22 Jun 2007 17:01:34 +0200 From: "Simon L. Nielsen" To: Warner Losh Message-ID: <20070622150133.GA977@zaphod.nitro.dk> References: <200706211755.l5LHtSZa045592@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200706211755.l5LHtSZa045592@repoman.freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_aue.c usbdevs uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 15:01:35 -0000 On 2007.06.21 17:55:28 +0000, Warner Losh wrote: > imp 2007-06-21 17:55:28 UTC > > FreeBSD src repository > > Modified files: > sys/dev/usb if_aue.c usbdevs uvisor.c > Log: > Fix two PRs by adding vendor IDs: > > PR 108097: ADMtek 851X USB-to-LAN adapter > PR 74849: Samsung SPH-i500 does not attach properly as usb modem/Palm device Could you update the relevant manual pages for these changes, or are you planning on doing that later? -- Simon L. Nielsen From owner-cvs-src@FreeBSD.ORG Fri Jun 22 16:10:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40E2216A400; Fri, 22 Jun 2007 16:10:04 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E9F5B13C448; Fri, 22 Jun 2007 16:10:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5MG8mk5068660; Fri, 22 Jun 2007 10:08:48 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 22 Jun 2007 10:08:47 -0600 (MDT) Message-Id: <20070622.100847.41701886.imp@bsdimp.com> To: simon@FreeBSD.org From: Warner Losh In-Reply-To: <20070622150133.GA977@zaphod.nitro.dk> References: <200706211755.l5LHtSZa045592@repoman.freebsd.org> <20070622150133.GA977@zaphod.nitro.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 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 22 Jun 2007 10:08:48 -0600 (MDT) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_aue.c usbdevs uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 16:10:04 -0000 From: "Simon L. Nielsen" Subject: Re: cvs commit: src/sys/dev/usb if_aue.c usbdevs uvisor.c Date: Fri, 22 Jun 2007 17:01:34 +0200 > On 2007.06.21 17:55:28 +0000, Warner Losh wrote: > > imp 2007-06-21 17:55:28 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/usb if_aue.c usbdevs uvisor.c > > Log: > > Fix two PRs by adding vendor IDs: > > > > PR 108097: ADMtek 851X USB-to-LAN adapter > > PR 74849: Samsung SPH-i500 does not attach properly as usb modem/Palm device > > Could you update the relevant manual pages for these changes, or are > you planning on doing that later? It would be most helpful if someone else could do that. I'm planning another pass through the PR database to find device IDs, as well as looking at our sister projects as well. Once all of that is done, it would be good to audit all our man pages. One issue, however, is that so many different companies make identical adapters that it might get added as an I-O DATA device because a Japanese user had one, but also be a Linksys or a Buffalo device here in the US. Warner From owner-cvs-src@FreeBSD.ORG Fri Jun 22 16:34:51 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36B7B16A41F; Fri, 22 Jun 2007 16:34:51 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id B47FC13C448; Fri, 22 Jun 2007 16:34:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l5MGYlNA002579; Fri, 22 Jun 2007 12:34:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: David Xu Date: Fri, 22 Jun 2007 12:14:21 -0400 User-Agent: KMail/1.9.6 References: <200506060513.j565DCur032340@repoman.freebsd.org> <200706192026.41638.jhb@freebsd.org> <4678D5BF.9020609@freebsd.org> In-Reply-To: <4678D5BF.9020609@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706221214.23776.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 22 Jun 2007 12:34:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3493/Fri Jun 22 05:18:44 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 16:34:51 -0000 On Wednesday 20 June 2007 03:22:39 am David Xu wrote: > John Baldwin wrote: > > On Monday 06 June 2005 01:13:11 am David Xu wrote: > > > >>davidxu 2005-06-06 05:13:11 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> sys/kern kern_sig.c > >> Log: > >> Fix a bug relavant to debugging, a masked signal unexpectedly interrupts > >> a sleeping thread when process is being debugged. > >> > >> PR: GNU/77818 > >> Tested by: Sean C. Farley > > > > > > This actually breaks other debugging as now debuggers or other processes using > > procfs/ptrace to catch signals can no longer see ignored signals or > > SIGSTOP/SIGCONT. The latter breaks strace when execing a new child process > > as it opens a race where the child process hangs because the parent doesn't > > ever see that the child process has stopped itself with SIGSTOP (the parent > > resumes it with SIGCONT when it sees that). The signal shouldn't make it to > > the target thread if it is ignored, but the process should be stopped and the > > debugger notified of all signals. > > > > Where can you find the place SIGSTOP can be masked or ignored ? > Though SIGCONT can be ignored but it still can resume a suspended > process. if ignored signals can be seen by debugger, then a sleep(10) > will be interrupted by ignored signals when the process is being > debugged, but will work correctly if it is not being debugged, this > becauses issignal() must be called by debugged thread to report any > signals to debugger, the thread should be woken up. I added a printf to stopevent() for S_SIG and it wasn't invoked for SIGSTOP, so PIOCSTATUS ioctl via procfs never returns a status saying the process is stopped on SIGSTOP. Rather than try to untangle the mess that is the signal code I just patched strace to use the same algo truss does for exec'ing a new child process. 4.x worked fine though both for gdb and the existing strace algo, so 6.x as it currently stands is a regression. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Jun 22 21:35:59 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9C1316A421 for ; Fri, 22 Jun 2007 21:35:59 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 807BD13C465 for ; Fri, 22 Jun 2007 21:35:59 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 67386 invoked from network); 22 Jun 2007 17:24:15 -0000 Received: from ppp-71-139-42-13.dsl.snfc21.pacbell.net (HELO ?10.0.0.15?) (nate-mail@71.139.42.13) by root.org with ESMTPA; 22 Jun 2007 17:24:15 -0000 Message-ID: <467C05B8.6090105@root.org> Date: Fri, 22 Jun 2007 10:24:08 -0700 From: Nate Lawson User-Agent: Thunderbird 2.0.0.0 (X11/20070511) MIME-Version: 1.0 To: Kostik Belousov References: <200706212250.l5LMobq4038270@repoman.freebsd.org> <20070622034555.GD2268@deviant.kiev.zoral.com.ua> In-Reply-To: <20070622034555.GD2268@deviant.kiev.zoral.com.ua> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc devd.conf rc.resume rc.suspend src/sys/i386/acpica acpi_machdep.c src/usr.sbin/acpi/acpiconf acpiconf.c src/sys/dev/acpica acpi.c acpiio.h acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 21:36:00 -0000 Kostik Belousov wrote: > On Thu, Jun 21, 2007 at 10:50:37PM +0000, Nate Lawson wrote: >> njl 2007-06-21 22:50:37 UTC >> >> FreeBSD src repository >> >> Modified files: >> etc devd.conf rc.suspend rc.resume >> sys/i386/acpica acpi_machdep.c >> usr.sbin/acpi/acpiconf acpiconf.c >> sys/dev/acpica acpi.c acpiio.h acpivar.h >> Log: >> Update the suspend/resume user API while maintaining backwards compat. >> >> Improvements: >> * /dev/apm is clonable, allowing multiple listeners for suspend events. > Did you evaluate/tested destroy_dev_sched() KPI for your needs ? Comments on your patch coming via private email. > I do not see any protection for several opens going parallel on given cdev. > I.e., I think that si_drv1 assignment in open() could cause problems. > Generally, as I know, system does not enforce any serialization between > calls to cdev methods for mp-safe drivers. Right, something your patch doesn't implement that we need is for SI_CHEAPCLONE to really mean "no export to devfs". -- Nate From owner-cvs-src@FreeBSD.ORG Fri Jun 22 23:28:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C43E16A46C; Fri, 22 Jun 2007 23:28:34 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 698A413C489; Fri, 22 Jun 2007 23:28:34 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MNSY5Q046751; Fri, 22 Jun 2007 23:28:34 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MNSYsF046750; Fri, 22 Jun 2007 23:28:34 GMT (envelope-from thompsa) Message-Id: <200706222328.l5MNSYsF046750@repoman.freebsd.org> From: Andrew Thompson Date: Fri, 22 Jun 2007 23:28:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net bridgestp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 23:28:34 -0000 thompsa 2007-06-22 23:28:33 UTC FreeBSD src repository Modified files: sys/net bridgestp.c Log: Check the correct port to see if synced is true. PR: misc/113958 Submitted by: Aaron Needles Approved by: re (bmah) MFC after: 1 week Revision Changes Path 1.37 +2 -2 src/sys/net/bridgestp.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 00:02:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6BBC16A41F; Sat, 23 Jun 2007 00:02:22 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B7CA613C447; Sat, 23 Jun 2007 00:02:21 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N02KJ6053407; Sat, 23 Jun 2007 00:02:20 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N02KiU053405; Sat, 23 Jun 2007 00:02:20 GMT (envelope-from mjacob) Message-Id: <200706230002.l5N02KiU053405@repoman.freebsd.org> From: Matt Jacob Date: Sat, 23 Jun 2007 00:02:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sym sym_hipd.c src/sys/netatm atm_cm.c src/sys/netatm/ipatm ipatm_event.c src/sys/netatm/spans spans_proto.c src/sys/netatm/uni sscf_uni_lower.c uniarp.c uniarp_timer.c unisig_decode.h unisig_proto.c src/sys/netgraph ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 00:02:22 -0000 mjacob 2007-06-23 00:02:20 UTC FreeBSD src repository Modified files: sys/dev/sym sym_hipd.c sys/netatm atm_cm.c sys/netatm/ipatm ipatm_event.c sys/netatm/spans spans_proto.c sys/netatm/uni sscf_uni_lower.c uniarp.c uniarp_timer.c unisig_decode.h unisig_proto.c sys/netgraph ng_parse.c Log: Fix various compilation warnings for gcc-4.2. Approved by: re (bruce) Revision Changes Path 1.66 +1 -1 src/sys/dev/sym/sym_hipd.c 1.35 +1 -1 src/sys/netatm/atm_cm.c 1.11 +1 -1 src/sys/netatm/ipatm/ipatm_event.c 1.15 +3 -3 src/sys/netatm/spans/spans_proto.c 1.14 +1 -1 src/sys/netatm/uni/sscf_uni_lower.c 1.24 +1 -1 src/sys/netatm/uni/uniarp.c 1.12 +1 -1 src/sys/netatm/uni/uniarp_timer.c 1.5 +2 -13 src/sys/netatm/uni/unisig_decode.h 1.13 +3 -3 src/sys/netatm/uni/unisig_proto.c 1.30 +3 -3 src/sys/netgraph/ng_parse.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 04:18:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B0C516A480; Sat, 23 Jun 2007 04:18:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 44B9713C4B8; Sat, 23 Jun 2007 04:18:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N4IjlT018840; Sat, 23 Jun 2007 04:18:45 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N4Ij7J018839; Sat, 23 Jun 2007 04:18:45 GMT (envelope-from imp) Message-Id: <200706230418.l5N4Ij7J018839@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 04:18:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb umodem.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 04:18:45 -0000 imp 2007-06-23 04:18:44 UTC FreeBSD src repository Modified files: sys/dev/usb umodem.c Log: Initialize id before using it. Submitted by: mjacob Approved by: re@ Revision Changes Path 1.69 +1 -1 src/sys/dev/usb/umodem.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 04:20:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8C7A16A41F; Sat, 23 Jun 2007 04:20:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 828A813C46C; Sat, 23 Jun 2007 04:20:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N4KOGs019545; Sat, 23 Jun 2007 04:20:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N4KOtl019541; Sat, 23 Jun 2007 04:20:24 GMT (envelope-from imp) Message-Id: <200706230420.l5N4KOtl019541@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 04:20:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb ukbd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 04:20:24 -0000 imp 2007-06-23 04:20:24 UTC FreeBSD src repository Modified files: sys/dev/usb ukbd.c Log: We need a special module loader routine, not the stock usbd one. This also eliminates a routine unused message. Submitted by: mjacob Approved by: re@ Revision Changes Path 1.71 +1 -1 src/sys/dev/usb/ukbd.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 04:34:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 305E216A41F; Sat, 23 Jun 2007 04:34:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0900113C45A; Sat, 23 Jun 2007 04:34:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N4Ycgb023421; Sat, 23 Jun 2007 04:34:38 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N4YcbC023420; Sat, 23 Jun 2007 04:34:38 GMT (envelope-from imp) Message-Id: <200706230434.l5N4YcbC023420@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 04:34:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/drivers/ubt ng_ubt.c src/sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 04:34:39 -0000 imp 2007-06-23 04:34:38 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/ubt ng_ubt.c sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c Log: These modules depend on usb, make that explicit Approved by: re@ Revision Changes Path 1.33 +2 -0 src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c 1.18 +2 -0 src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 05:52:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5881416A469; Sat, 23 Jun 2007 05:52:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 30ED413C45A; Sat, 23 Jun 2007 05:52:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N5qDcZ047767; Sat, 23 Jun 2007 05:52:13 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N5qDns047766; Sat, 23 Jun 2007 05:52:13 GMT (envelope-from imp) Message-Id: <200706230552.l5N5qDns047766@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 05:52:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 05:52:13 -0000 imp 2007-06-23 05:52:12 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c usbdevs Log: Merge some device IDs from OpenBSD for aue. Minor sorting of usbdevs to fix disorder. Obtained from: OpenBSD Approved by: re@ (blanket) Revision Changes Path 1.116 +9 -0 src/sys/dev/usb/if_aue.c 1.307 +29 -11 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sat Jun 23 05:59:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CEAD216A46B; Sat, 23 Jun 2007 05:59:53 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A6FC813C455; Sat, 23 Jun 2007 05:59:53 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N5xrpp048802; Sat, 23 Jun 2007 05:59:53 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N5xrCw048801; Sat, 23 Jun 2007 05:59:53 GMT (envelope-from imp) Message-Id: <200706230559.l5N5xrCw048801@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 05:59:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 05:59:53 -0000 imp 2007-06-23 05:59:53 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c Log: Remove duplicate ID and recall that I comes after E in alphabetical listings. Approved by: re@ Revision Changes Path 1.117 +1 -2 src/sys/dev/usb/if_aue.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:19:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8486A16A400; Sat, 23 Jun 2007 06:19:40 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5C5BC13C45B; Sat, 23 Jun 2007 06:19:40 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6JexO053682; Sat, 23 Jun 2007 06:19:40 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6Jedu053681; Sat, 23 Jun 2007 06:19:40 GMT (envelope-from maxim) Message-Id: <200706230619.l5N6Jedu053681@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 23 Jun 2007 06:19:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/mtree mtree.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 06:19:40 -0000 maxim 2007-06-23 06:19:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/mtree mtree.8 Log: MFC rev. 1.56: an example how to create /etc/mtree style mtree(8) files. Revision Changes Path 1.52.2.3 +12 -1 src/usr.sbin/mtree/mtree.8 From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:22:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B300F16A46B; Sat, 23 Jun 2007 06:22:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8AE1C13C43E; Sat, 23 Jun 2007 06:22:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6MPea054681; Sat, 23 Jun 2007 06:22:25 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6MPKa054680; Sat, 23 Jun 2007 06:22:25 GMT (envelope-from maxim) Message-Id: <200706230622.l5N6MPKa054680@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 23 Jun 2007 06:22:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/sockstat sockstat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 06:22:25 -0000 maxim 2007-06-23 06:22:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/sockstat sockstat.c Log: MFC rev. 1.17: do not warn if the process exits before we get its name. Revision Changes Path 1.13.2.1 +3 -1 src/usr.bin/sockstat/sockstat.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:29:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A78916A469; Sat, 23 Jun 2007 06:29:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 129B913C469; Sat, 23 Jun 2007 06:29:21 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6TK7i055646; Sat, 23 Jun 2007 06:29:20 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6TKlu055645; Sat, 23 Jun 2007 06:29:20 GMT (envelope-from imp) Message-Id: <200706230629.l5N6TKlu055645@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 06:29:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_cue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 06:29:21 -0000 imp 2007-06-23 06:29:19 UTC FreeBSD src repository Modified files: sys/dev/usb if_cue.c Log: Note the Belkin F5U111 Adapter is covered by NETMATE entry. Approved by: re (blanket) Revision Changes Path 1.72 +1 -0 src/sys/dev/usb/if_cue.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:42:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5635616A41F; Sat, 23 Jun 2007 06:42:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2DF2013C46E; Sat, 23 Jun 2007 06:42:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6gf6q058611; Sat, 23 Jun 2007 06:42:41 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6gfmG058610; Sat, 23 Jun 2007 06:42:41 GMT (envelope-from rafan) Message-Id: <200706230642.l5N6gfmG058610@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 23 Jun 2007 06:42:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 06:42:41 -0000 rafan 2007-06-23 06:42:40 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: - Remove the warning about NULL filesystem. It is stable and safe to use in both 6.x and 7.x. This is based on feedbacks on this thread http://docs.freebsd.org/cgi/getmsg.cgi?fetch=81818+0+current/freebsd-stable and my use it on 6.x. MFC after: 3 days - Update the warning about UNION filesystem. It is now actively maintained, although there are still some issues being resolved. Reviewed by: freebsd-stable@, kris, bmah Approved by: re (bmah) Revision Changes Path 1.1435 +6 -4 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:47:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8146216A41F; Sat, 23 Jun 2007 06:47:44 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 58E5A13C457; Sat, 23 Jun 2007 06:47:44 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6lirE059408; Sat, 23 Jun 2007 06:47:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6lilK059407; Sat, 23 Jun 2007 06:47:44 GMT (envelope-from imp) Message-Id: <200706230647.l5N6lilK059407@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 06:47:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_cdce.c if_kue.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 06:47:44 -0000 imp 2007-06-23 06:47:44 UTC FreeBSD src repository Modified files: sys/dev/usb if_cdce.c if_kue.c usbdevs Log: Add a boatload of devices from OpenBSD and NetBSD to kue and cdce. Obtained From: OpenBSD/NetBSD Approved by: re (blanket) Revision Changes Path 1.24 +8 -4 src/sys/dev/usb/if_cdce.c 1.82 +26 -11 src/sys/dev/usb/if_kue.c 1.308 +40 -7 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sat Jun 23 06:52:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 563AF16A468; Sat, 23 Jun 2007 06:52:57 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE2A13C480; Sat, 23 Jun 2007 06:52:57 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5N6qv6J060667; Sat, 23 Jun 2007 06:52:57 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5N6qvll060660; Sat, 23 Jun 2007 06:52:57 GMT (envelope-from imp) Message-Id: <200706230652.l5N6qvll060660@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 06:52:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_ural.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 06:52:57 -0000 imp 2007-06-23 06:52:56 UTC FreeBSD src repository Modified files: sys/dev/usb if_ural.c usbdevs Log: Drag in another device: The Surecom RT2570. Obtained from: OpenBSD Approved by: re@ (blanket for device IDs) Revision Changes Path 1.64 +1 -0 src/sys/dev/usb/if_ural.c 1.309 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sat Jun 23 10:35:50 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A127C16A400; Sat, 23 Jun 2007 10:35:50 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 55DC613C44C; Sat, 23 Jun 2007 10:35:50 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5C470.dip.t-dialin.net [84.165.196.112]) by redbull.bpaserver.net (Postfix) with ESMTP id E70252E081; Sat, 23 Jun 2007 12:35:45 +0200 (CEST) Received: from deskjail (deskjail.Leidinger.net [192.168.1.109]) by outgoing.leidinger.net (Postfix) with ESMTP id AF7305B53A4; Sat, 23 Jun 2007 12:33:59 +0200 (CEST) Date: Sat, 23 Jun 2007 12:36:26 +0200 From: Alexander Leidinger To: Matt Jacob Message-ID: <20070623123626.1fde9513@deskjail> In-Reply-To: <200706230002.l5N02KiU053405@repoman.freebsd.org> References: <200706230002.l5N02KiU053405@repoman.freebsd.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sym sym_hipd.c src/sys/netatm atm_cm.c src/sys/netatm/ipatm ipatm_event.c src/sys/netatm/spans spans_proto.c src/sys/netatm/uni sscf_uni_lower.c uniarp.c uniarp_timer.c unisig_decode.h unisig_proto.c src/sys/netgraph ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 10:35:50 -0000 Quoting Matt Jacob (Sat, 23 Jun 2007 00:02:20 +0000 (UTC)): > mjacob 2007-06-23 00:02:20 UTC > > FreeBSD src repository > > Modified files: > sys/dev/sym sym_hipd.c > sys/netatm atm_cm.c > sys/netatm/ipatm ipatm_event.c > sys/netatm/spans spans_proto.c > sys/netatm/uni sscf_uni_lower.c uniarp.c uniarp_timer.c > unisig_decode.h unisig_proto.c > sys/netgraph ng_parse.c > Log: > Fix various compilation warnings for gcc-4.2. Have you planed to MFC such fixes? I'm trying to prepare a MFC patch for something else on my -current system, and gcc comes into my way. I foxes some in a quick an easy way (I didn't care if it is the right way, as it doesn't belong to the parts I want to prepare, so the not-interesting parts compile now), but it would be nice if it would be fixed officially. Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-src@FreeBSD.ORG Sat Jun 23 14:34:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CDF216A46D; Sat, 23 Jun 2007 14:34:31 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 16D0313C44C; Sat, 23 Jun 2007 14:34:31 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NEYUGc083344; Sat, 23 Jun 2007 14:34:30 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NEYUxH083343; Sat, 23 Jun 2007 14:34:30 GMT (envelope-from joel) Message-Id: <200706231434.l5NEYUxH083343@repoman.freebsd.org> From: Joel Dahl Date: Sat, 23 Jun 2007 14:34:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 pcm.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 14:34:31 -0000 joel 2007-06-23 14:34:30 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 pcm.4 Log: Document two new sysctls: hw.snd.compat_linux_mmap and hw.snd.default_auto. Reviewed by: ariff Approved by: re (hrs) Revision Changes Path 1.52 +9 -1 src/share/man/man4/pcm.4 From owner-cvs-src@FreeBSD.ORG Sat Jun 23 15:28:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BE5016A41F; Sat, 23 Jun 2007 15:28:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 66C1513C45B; Sat, 23 Jun 2007 15:28:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NFS1xK094759; Sat, 23 Jun 2007 15:28:01 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NFS1O9094758; Sat, 23 Jun 2007 15:28:01 GMT (envelope-from delphij) Message-Id: <200706231528.l5NFS1O9094758@repoman.freebsd.org> From: Xin LI Date: Sat, 23 Jun 2007 15:28:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/less main.c screen.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 15:28:01 -0000 delphij 2007-06-23 15:28:01 UTC FreeBSD src repository Modified files: contrib/less main.c screen.c Log: In more(1) mode, restore the historical behavior where curses init and deinit characters are not delivered. Instead of hacking screen.c, we set no_init to implement the behavior. Reported by: mnag Approved by: re (hrs) Revision Changes Path 1.9 +2 -1 src/contrib/less/main.c 1.8 +2 -12 src/contrib/less/screen.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 15:37:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 082F116A474; Sat, 23 Jun 2007 15:37:35 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D525913C4BC; Sat, 23 Jun 2007 15:37:34 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NFbYhi096739; Sat, 23 Jun 2007 15:37:34 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NFbYtn096738; Sat, 23 Jun 2007 15:37:34 GMT (envelope-from brueffer) Message-Id: <200706231537.l5NFbYtn096738@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 23 Jun 2007 15:37:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc/sys modstat.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 15:37:35 -0000 brueffer 2007-06-23 15:37:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys modstat.2 Log: MFC: rev. 1.11 Catch up with the code. Revision Changes Path 1.10.8.1 +2 -2 src/lib/libc/sys/modstat.2 From owner-cvs-src@FreeBSD.ORG Sat Jun 23 16:50:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14CB516A468; Sat, 23 Jun 2007 16:50:47 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E54C313C45A; Sat, 23 Jun 2007 16:50:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NGok4I022001; Sat, 23 Jun 2007 16:50:46 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NGokc7022000; Sat, 23 Jun 2007 16:50:46 GMT (envelope-from imp) Message-Id: <200706231650.l5NGokc7022000@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 16:50:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 16:50:47 -0000 imp 2007-06-23 16:50:46 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs Log: For USBVERBOSE case, we can't have " in any of the names. Submitted by: Flemming Jacobsen Approved by: re (blanket) Revision Changes Path 1.310 +5 -5 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sat Jun 23 18:30:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from [127.0.0.1] (freefall.freebsd.org [69.147.83.40]) by hub.freebsd.org (Postfix) with ESMTP id 447F816A468; Sat, 23 Jun 2007 18:30:08 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Message-ID: <467D66B1.5000103@FreeBSD.org> Date: Sat, 23 Jun 2007 15:30:09 -0300 From: Marcus Alves Grando Organization: FreeBSD.org User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Xin LI References: <200706231528.l5NFS1O9094758@repoman.freebsd.org> In-Reply-To: <200706231528.l5NFS1O9094758@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/less main.c screen.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 18:30:11 -0000 Xin LI wrote: > delphij 2007-06-23 15:28:01 UTC > > FreeBSD src repository > > Modified files: > contrib/less main.c screen.c > Log: > In more(1) mode, restore the historical behavior where curses init > and deinit characters are not delivered. > > Instead of hacking screen.c, we set no_init to implement the behavior. > Thanks ;) > Reported by: mnag > Approved by: re (hrs) > > Revision Changes Path > 1.9 +2 -1 src/contrib/less/main.c > 1.8 +2 -12 src/contrib/less/screen.c > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" > > ------------------------------------------------------ > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/contrib/less/main.c.diff?&r1=1.8&r2=1.9 > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/contrib/less/screen.c.diff?&r1=1.7&r2=1.8 > -- Marcus Alves Grando marcus(at)sbh.eng.br | Personal mnag(at)FreeBSD.org | FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Jun 23 19:18:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE6C816A46B; Sat, 23 Jun 2007 19:18:51 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AAA5B13C468; Sat, 23 Jun 2007 19:18:51 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NJIpsM033044; Sat, 23 Jun 2007 19:18:51 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NJIp8g033043; Sat, 23 Jun 2007 19:18:51 GMT (envelope-from emaste) Message-Id: <200706231918.l5NJIp8g033043@repoman.freebsd.org> From: Ed Maste Date: Sat, 23 Jun 2007 19:18:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern kern_umtx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 19:18:51 -0000 emaste 2007-06-23 19:18:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_umtx.c Log: MFC compat32 argument to do_wait() to make it use fuword32() for readling longs from 32 bit processes. Submitted by: jhb Revision Changes Path 1.33.2.4 +8 -4 src/sys/kern/kern_umtx.c From owner-cvs-src@FreeBSD.ORG Sat Jun 23 21:52:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB38C16A421; Sat, 23 Jun 2007 21:52:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A7C9613C44C; Sat, 23 Jun 2007 21:52:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5NLqF5F057485; Sat, 23 Jun 2007 21:52:15 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5NLqE7c057479; Sat, 23 Jun 2007 21:52:14 GMT (envelope-from imp) Message-Id: <200706232152.l5NLqE7c057479@repoman.freebsd.org> From: Warner Losh Date: Sat, 23 Jun 2007 21:52:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-usb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Jun 2007 21:52:15 -0000 imp 2007-06-23 21:52:07 UTC FreeBSD src repository Modified files: sys/dev/ata ata-usb.c Log: Include usb_port.h Approved by: re@ (blanket and/or cleanup commit approval) Revision Changes Path 1.7 +1 -0 src/sys/dev/ata/ata-usb.c