From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 03:13:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2243410656A4 for ; Sun, 17 Oct 2010 03:13:48 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E9F028FC18 for ; Sun, 17 Oct 2010 03:13:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H3DlnS084800 for ; Sun, 17 Oct 2010 03:13:47 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H3Dlj2084799 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 03:13:47 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010170313.o9H3Dlj2084799@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 17 Oct 2010 03:13:30 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/netipsec ipsec_output.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 03:13:48 -0000 bz 2010-10-17 03:13:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netipsec ipsec_output.c Log: SVN rev 213944 on 2010-10-17 03:13:30Z by bz MFC r213836: Style: make the asterisk go with the variable name, not the type. Revision Changes Path 1.16.2.5 +1 -1 src/sys/netipsec/ipsec_output.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 07:12:10 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E153106566B for ; Sun, 17 Oct 2010 07:12:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D4E988FC18 for ; Sun, 17 Oct 2010 07:12:09 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H7C9cf017911 for ; Sun, 17 Oct 2010 07:12:09 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H7C9TK017910 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 07:12:09 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010170712.o9H7C9TK017910@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Sun, 17 Oct 2010 07:11:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/usr.bin/ncal Makefile ncal.1 ncal.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 07:12:10 -0000 edwin 2010-10-17 07:11:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.bin/ncal Makefile ncal.1 ncal.c Log: SVN rev 213945 on 2010-10-17 07:11:40Z by edwin Mega-merge of ncal into stable/7: r186401: Implement a new feature for the "-m" option: if the month number is followed by 'f' or 'p', use the following or preceding month of that number, respectively. Document this. Also includes other minor grammatical and punctuation fixes to the manual page (capitalize Easter, etc.). r191330: Implement highlighting of today in month view of cal/ncal just like gnu cal does. This is currently disabled for year view because of hard coded padding in that case. This will hopefully be fixed soon. r191364: Couple of changes based on feedback o Change mr/me to so/se [1]. o Introduce a -h option to disable highlighting. [2] o Spell STDOUT_FILENO as such and pass NULL to tgetent() to handle the case of unset TERM. [3] r191687: Fixed missing dependency. r194366: Fix column width of weekday names for multibyte locales. r194447: Since the width is always 2, it is enough to put just one trailing space is enough. r204697: - Implement -3 option (show previous, this and next month) option. - Add -A option (months after this month). - Add -B option (months before this month). - Fix highlighting of today in year overview. - Fix aligning of "foreign" characters. r204706: Remove no-op of WARNS?= r204849: - document the -3, -A and -B properly in Synopsis. - add highlight of current date for non-terminals. - fix -J option. - code cleanup. r204908: - Fix the highlighting for non-terminals when the last week is not 7 days long. - "-m " now prints only the month, not the whole year. r205071: - With the introduction of -A, -B and -3, not all combinations of arguments makes sense anymore. For example, what would a combination of -3 (show three months) and -y (show the whole year) do? We will abort on these cases. - Move the debug option -d to -H (from highlight), while -d is now used for setting the day of "today" so that -y and friends can be tested. r205427: Replace -b with -C and -B (as proposed by Alexander). Add -3, -A and -B to the usage. Update regression test for the new parameters. r212032: Use basename(3) to determine the name of the program. Revision Changes Path 1.8.10.1 +2 -3 src/usr.bin/ncal/Makefile 1.19.2.2 +78 -18 src/usr.bin/ncal/ncal.1 1.19.10.4 +505 -234 src/usr.bin/ncal/ncal.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 08:45:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDACB106566C for ; Sun, 17 Oct 2010 08:45:00 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BDF1C8FC08 for ; Sun, 17 Oct 2010 08:45:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H8j01W025417 for ; Sun, 17 Oct 2010 08:45:00 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H8j05K025416 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 08:45:00 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010170845.o9H8j05K025416@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 17 Oct 2010 08:44:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/netipsec ipsec_output.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 08:45:01 -0000 bz 2010-10-17 08:44:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netipsec ipsec_output.c Log: SVN rev 213946 on 2010-10-17 08:44:34Z by bz MFC r213837: Remove dead code: assignment to a local variable not used anywhere after that. Revision Changes Path 1.16.2.6 +1 -3 src/sys/netipsec/ipsec_output.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 08:46:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D2DC106566B for ; Sun, 17 Oct 2010 08:46:51 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 608C58FC15 for ; Sun, 17 Oct 2010 08:46:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H8kp6H025582 for ; Sun, 17 Oct 2010 08:46:51 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H8kpBo025581 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 08:46:51 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010170846.o9H8kpBo025581@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 17 Oct 2010 08:46:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netinet ip_options.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 08:46:51 -0000 bz 2010-10-17 08:46:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netinet ip_options.c Log: SVN rev 213947 on 2010-10-17 08:46:34Z by bz MFC r213832: Use ifa_ifwithaddr_check() rather than ifa_ifwithaddr() as we are not interested in the result and would leak a reference otherwise. PR: kern/151435 Submitted by: Andrew Boyer (aboyer averesystems.com) Revision Changes Path 1.21.2.3 +1 -1 src/sys/netinet/ip_options.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 08:59:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8336F10657C0 for ; Sun, 17 Oct 2010 08:59:12 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 566998FC14 for ; Sun, 17 Oct 2010 08:59:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H8xC6P037382 for ; Sun, 17 Oct 2010 08:59:12 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H8xCva037381 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 08:59:12 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010170859.o9H8xCva037381@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 17 Oct 2010 08:59:02 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netipsec ipsec_output.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 08:59:12 -0000 bz 2010-10-17 08:59:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netipsec ipsec_output.c Log: SVN rev 213948 on 2010-10-17 08:59:02Z by bz MFC r213836: Style: make the asterisk go with the variable name, not the type. Revision Changes Path 1.27.2.2 +1 -1 src/sys/netipsec/ipsec_output.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 09:14:03 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81FDF106566B for ; Sun, 17 Oct 2010 09:14:03 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5524B8FC15 for ; Sun, 17 Oct 2010 09:14:03 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9H9E3E9039489 for ; Sun, 17 Oct 2010 09:14:03 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9H9E3F9039488 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 09:14:03 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010170914.o9H9E3F9039488@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 17 Oct 2010 09:13:47 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netipsec ipsec_output.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 09:14:03 -0000 bz 2010-10-17 09:13:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netipsec ipsec_output.c Log: SVN rev 213949 on 2010-10-17 09:13:47Z by bz MFC r213837: Remove dead code: assignment to a local variable not used anywhere after that. Revision Changes Path 1.27.2.3 +1 -3 src/sys/netipsec/ipsec_output.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 11:02:20 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 202611065693 for ; Sun, 17 Oct 2010 11:02:20 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0CC738FC08 for ; Sun, 17 Oct 2010 11:02:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HB2JF9048613 for ; Sun, 17 Oct 2010 11:02:19 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HB2JBM048612 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 11:02:19 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010171102.o9HB2JBM048612@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Sun, 17 Oct 2010 11:01:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern init_main.c kern_thread.c src/sys/sys proc.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 11:02:20 -0000 davidxu 2010-10-17 11:01:52 UTC FreeBSD src repository Modified files: sys/kern init_main.c kern_thread.c sys/sys proc.h Log: SVN rev 213950 on 2010-10-17 11:01:52Z by davidxu - Insert thread0 into correct thread hash link list. - In thr_exit() and kthread_exit(), only remove thread from hash if it can directly exit, otherwise let exit1() do it. - In thread_suspend_check(), fix cleanup code when thread needs to exit. This change seems fixed the "Bad link elm " panic found by Peter Holm. Stress testing: pho Revision Changes Path 1.316 +1 -1 src/sys/kern/init_main.c 1.297 +7 -19 src/sys/kern/kern_thread.c 1.560 +1 -1 src/sys/sys/proc.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 11:40:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A7DB106564A for ; Sun, 17 Oct 2010 11:40:42 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F16FD8FC22 for ; Sun, 17 Oct 2010 11:40:41 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HBef4c052614 for ; Sun, 17 Oct 2010 11:40:41 GMT (envelope-from jh@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HBefFP052613 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 11:40:41 GMT (envelope-from jh@repoman.freebsd.org) Message-Id: <201010171140.o9HBefFP052613@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jh@repoman.freebsd.org using -f From: Jaakko Heinonen Date: Sun, 17 Oct 2010 11:40:29 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 11:40:42 -0000 jh 2010-10-17 11:40:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) gnu/usr.bin/groff/tmac mdoc.local Log: SVN rev 213951 on 2010-10-17 11:40:29Z by jh MFC r213835: Add FreeBSD 8.2. Revision Changes Path 1.68.2.8 +1 -0 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 11:52:17 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B69210656C0 for ; Sun, 17 Oct 2010 11:52:17 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5857B8FC0A for ; Sun, 17 Oct 2010 11:52:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HBqHN7053383 for ; Sun, 17 Oct 2010 11:52:17 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HBqHeU053382 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 11:52:17 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171152.o9HBqHeU053382@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 11:51:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 11:52:17 -0000 marius 2010-10-17 11:51:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sparc64/sparc64 machdep.c Log: SVN rev 213952 on 2010-10-17 11:51:55Z by marius MFC: r213873 Explicitly lower the PIL to 0 as part of enabling interrupts, similar to what is done on other platforms. Unlike as with the sched_throw(NULL) called on BSPs during their startup apparently there's nothing which will reliably lower it on APs. I'm unsure why this only came up on V215 though, breaking these with r207248. My best guess is that these are the only supported ones so far fast enough to lose some race. PR: 151404 Revision Changes Path 1.155.2.13 +1 -0 src/sys/sparc64/sparc64/machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 11:52:23 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CE6B10656C7 for ; Sun, 17 Oct 2010 11:52:23 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 49D508FC13 for ; Sun, 17 Oct 2010 11:52:23 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HBqNUN053406 for ; Sun, 17 Oct 2010 11:52:23 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HBqNrU053405 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 11:52:23 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171152.o9HBqNrU053405@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 11:51:59 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 11:52:23 -0000 marius 2010-10-17 11:51:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sparc64/sparc64 machdep.c Log: SVN rev 213953 on 2010-10-17 11:51:59Z by marius MFC: r213873 Explicitly lower the PIL to 0 as part of enabling interrupts, similar to what is done on other platforms. Unlike as with the sched_throw(NULL) called on BSPs during their startup apparently there's nothing which will reliably lower it on APs. I'm unsure why this only came up on V215 though, breaking these with r207248. My best guess is that these are the only supported ones so far fast enough to lose some race. PR: 151404 Revision Changes Path 1.138.2.21 +1 -0 src/sys/sparc64/sparc64/machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:05:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FBE910657C0 for ; Sun, 17 Oct 2010 12:05:59 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 52A448FC16 for ; Sun, 17 Oct 2010 12:05:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HC5xLK055492 for ; Sun, 17 Oct 2010 12:05:59 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HC5xZX055491 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:05:59 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171205.o9HC5xZX055491@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:05:37 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sparc64/sparc64 elf_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:05:59 -0000 marius 2010-10-17 12:05:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sparc64/sparc64 elf_machdep.c Log: SVN rev 213954 on 2010-10-17 12:05:37Z by marius MFC: r213104 minor simplifications and cosmetics Revision Changes Path 1.29.2.4 +6 -10 src/sys/sparc64/sparc64/elf_machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:06:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EF6210657C0 for ; Sun, 17 Oct 2010 12:06:05 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 41CF98FC19 for ; Sun, 17 Oct 2010 12:06:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HC65S3055515 for ; Sun, 17 Oct 2010 12:06:05 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HC65HO055514 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:06:05 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171206.o9HC65HO055514@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:05:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/sparc64/sparc64 elf_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:06:05 -0000 marius 2010-10-17 12:05:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sparc64/sparc64 elf_machdep.c Log: SVN rev 213955 on 2010-10-17 12:05:39Z by marius MFC: r213104 minor simplifications and cosmetics Revision Changes Path 1.23.2.5 +5 -8 src/sys/sparc64/sparc64/elf_machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:12:07 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A0E510656A3 for ; Sun, 17 Oct 2010 12:12:07 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 28DDC8FC1A for ; Sun, 17 Oct 2010 12:12:07 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCC7pt056149 for ; Sun, 17 Oct 2010 12:12:07 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCC7GD056148 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:12:07 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171212.o9HCC7GD056148@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:11:42 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/amd64/include _inttypes.h src/sys/dev/hme if_hme_sbus.c if_hmereg.h if_hmevar.h src/sys/dev/le am79900var.h am7990var.h if_le_ledma.c lancevar.h src/sys/dev/mii bmtphyreg.h icsphyreg.h lxtphyreg.h mii.c mii_physubr.c miidevs miivar.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:12:07 -0000 marius 2010-10-17 12:11:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/amd64/include _inttypes.h sys/dev/hme if_hme_sbus.c if_hmereg.h if_hmevar.h sys/dev/le am79900var.h am7990var.h if_le_ledma.c lancevar.h sys/dev/mii bmtphyreg.h icsphyreg.h lxtphyreg.h mii.c mii_physubr.c miidevs miivar.h nsphyreg.h nsphyterreg.h qsphyreg.h ukphy_subr.c sys/i386/include _inttypes.h sys/ia64/include _inttypes.h sys/mips/include _inttypes.h sys/mips/malta gtreg.h sys/powerpc/include _inttypes.h sys/sparc64/include _inttypes.h sys/sparc64/sbus lsi64854reg.h lsi64854var.h ofw_sbus.h sys/sun4v/include _inttypes.h sys/sys clock.h Log: SVN rev 213956 on 2010-10-17 12:11:42Z by marius MFC: r204646 The NetBSD Foundation has granted permission to remove clause 3 and 4 from the software. Obtained from: NetBSD Revision Changes Path 1.3.34.2 +0 -7 src/sys/amd64/include/_inttypes.h 1.20.2.2 +0 -7 src/sys/dev/hme/if_hme_sbus.c 1.8.2.2 +0 -7 src/sys/dev/hme/if_hmereg.h 1.11.2.2 +0 -7 src/sys/dev/hme/if_hmevar.h 1.1.12.2 +0 -7 src/sys/dev/le/am79900var.h 1.1.12.2 +0 -7 src/sys/dev/le/am7990var.h 1.5.2.2 +0 -7 src/sys/dev/le/if_le_ledma.c 1.3.10.2 +0 -7 src/sys/dev/le/lancevar.h 1.2.22.2 +0 -7 src/sys/dev/mii/bmtphyreg.h 1.1.12.2 +0 -7 src/sys/dev/mii/icsphyreg.h 1.1.38.2 +0 -7 src/sys/dev/mii/lxtphyreg.h 1.31.2.3 +0 -7 src/sys/dev/mii/mii.c 1.29.10.2 +0 -7 src/sys/dev/mii/mii_physubr.c 1.65.2.10 +0 -7 src/sys/dev/mii/miidevs 1.21.10.2 +0 -7 src/sys/dev/mii/miivar.h 1.2.56.2 +0 -7 src/sys/dev/mii/nsphyreg.h 1.1.6.2 +0 -7 src/sys/dev/mii/nsphyterreg.h 1.1.38.2 +0 -7 src/sys/dev/mii/qsphyreg.h 1.10.2.2 +0 -7 src/sys/dev/mii/ukphy_subr.c 1.2.36.2 +0 -7 src/sys/i386/include/_inttypes.h 1.2.36.2 +0 -7 src/sys/ia64/include/_inttypes.h 1.1.2.2 +0 -7 src/sys/mips/include/_inttypes.h 1.1.2.2 +0 -7 src/sys/mips/malta/gtreg.h 1.2.28.2 +0 -7 src/sys/powerpc/include/_inttypes.h 1.2.36.2 +0 -7 src/sys/sparc64/include/_inttypes.h 1.3.22.2 +0 -7 src/sys/sparc64/sbus/lsi64854reg.h 1.7.2.2 +0 -7 src/sys/sparc64/sbus/lsi64854var.h 1.1.36.2 +0 -7 src/sys/sparc64/sbus/ofw_sbus.h 1.1.10.2 +0 -7 src/sys/sun4v/include/_inttypes.h 1.8.2.2 +0 -7 src/sys/sys/clock.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:12:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 337AE10656A3 for ; Sun, 17 Oct 2010 12:12:21 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 024AC8FC18 for ; Sun, 17 Oct 2010 12:12:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCCKS4056293 for ; Sun, 17 Oct 2010 12:12:20 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCCKuS056292 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:12:20 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171212.o9HCCKuS056292@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:11:43 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/amd64/include _inttypes.h src/sys/dev/hme if_hme_sbus.c if_hmereg.h if_hmevar.h src/sys/dev/le am79900var.h am7990var.h if_le_ledma.c lancevar.h src/sys/dev/mii bmtphyreg.h icsphyreg.h lxtphyreg.h mii.c mii_physubr.c miidevs miivar.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:12:21 -0000 marius 2010-10-17 12:11:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/amd64/include _inttypes.h sys/dev/hme if_hme_sbus.c if_hmereg.h if_hmevar.h sys/dev/le am79900var.h am7990var.h if_le_ledma.c lancevar.h sys/dev/mii bmtphyreg.h icsphyreg.h lxtphyreg.h mii.c mii_physubr.c miidevs miivar.h nsphyreg.h nsphyterreg.h qsphyreg.h ukphy_subr.c sys/i386/include _inttypes.h sys/ia64/include _inttypes.h sys/powerpc/include _inttypes.h sys/sparc64/include _inttypes.h sys/sparc64/sbus lsi64854reg.h lsi64854var.h ofw_sbus.h sys/sun4v/include _inttypes.h sys/sys clock.h Log: SVN rev 213957 on 2010-10-17 12:11:43Z by marius MFC: r204646 The NetBSD Foundation has granted permission to remove clause 3 and 4 from the software. Obtained from: NetBSD Revision Changes Path 1.3.22.1 +0 -7 src/sys/amd64/include/_inttypes.h 1.18.2.3 +0 -7 src/sys/dev/hme/if_hme_sbus.c 1.7.2.2 +0 -7 src/sys/dev/hme/if_hmereg.h 1.10.2.2 +0 -7 src/sys/dev/hme/if_hmevar.h 1.1.4.1 +0 -7 src/sys/dev/le/am79900var.h 1.1.4.1 +0 -7 src/sys/dev/le/am7990var.h 1.4.2.2 +0 -7 src/sys/dev/le/if_le_ledma.c 1.3.2.1 +0 -7 src/sys/dev/le/lancevar.h 1.2.10.1 +0 -7 src/sys/dev/mii/bmtphyreg.h 1.1.2.1 +0 -7 src/sys/dev/mii/icsphyreg.h 1.1.26.1 +0 -7 src/sys/dev/mii/lxtphyreg.h 1.29.2.1 +0 -7 src/sys/dev/mii/mii.c 1.29.2.1 +0 -7 src/sys/dev/mii/mii_physubr.c 1.46.2.22 +0 -7 src/sys/dev/mii/miidevs 1.21.2.1 +0 -7 src/sys/dev/mii/miivar.h 1.2.44.1 +0 -7 src/sys/dev/mii/nsphyreg.h 1.1.2.2 +0 -7 src/sys/dev/mii/nsphyterreg.h 1.1.26.1 +0 -7 src/sys/dev/mii/qsphyreg.h 1.9.2.2 +0 -7 src/sys/dev/mii/ukphy_subr.c 1.2.24.1 +0 -7 src/sys/i386/include/_inttypes.h 1.2.24.1 +0 -7 src/sys/ia64/include/_inttypes.h 1.2.16.1 +0 -7 src/sys/powerpc/include/_inttypes.h 1.2.24.1 +0 -7 src/sys/sparc64/include/_inttypes.h 1.3.10.1 +0 -7 src/sys/sparc64/sbus/lsi64854reg.h 1.6.2.2 +0 -7 src/sys/sparc64/sbus/lsi64854var.h 1.1.24.1 +0 -7 src/sys/sparc64/sbus/ofw_sbus.h 1.1.2.1 +0 -7 src/sys/sun4v/include/_inttypes.h 1.7.2.1 +0 -7 src/sys/sys/clock.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:16:56 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC88110656C5 for ; Sun, 17 Oct 2010 12:16:56 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A79358FC08 for ; Sun, 17 Oct 2010 12:16:56 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCGunN056673 for ; Sun, 17 Oct 2010 12:16:56 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCGuHU056672 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:16:56 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171216.o9HCGuHU056672@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:16:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/mii acphy.c bmtphy.c exphy.c gentbi.c icsphy.c lxtphy.c mii.h nsphy.c nsphyter.c qsphy.c tlphy.c tlphyreg.h ukphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:16:56 -0000 marius 2010-10-17 12:16:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/mii acphy.c bmtphy.c exphy.c gentbi.c icsphy.c lxtphy.c mii.h nsphy.c nsphyter.c qsphy.c tlphy.c tlphyreg.h ukphy.c Log: SVN rev 213958 on 2010-10-17 12:16:36Z by marius MFC: r213188 - Remove clause 3 and 4 from TNF licenses. - Remove closes 3 & 4 from Manuel Bouyer's license. Obtained from: NetBSD Revision Changes Path 1.21.10.2 +0 -12 src/sys/dev/mii/acphy.c 1.12.10.2 +0 -12 src/sys/dev/mii/bmtphy.c 1.23.10.2 +0 -12 src/sys/dev/mii/exphy.c 1.4.2.2 +0 -12 src/sys/dev/mii/gentbi.c 1.1.12.2 +0 -12 src/sys/dev/mii/icsphy.c 1.20.2.2 +0 -12 src/sys/dev/mii/lxtphy.c 1.5.22.2 +0 -5 src/sys/dev/mii/mii.h 1.30.2.2 +0 -12 src/sys/dev/mii/nsphy.c 1.1.6.2 +0 -12 src/sys/dev/mii/nsphyter.c 1.18.10.2 +0 -12 src/sys/dev/mii/qsphy.c 1.24.2.2 +0 -12 src/sys/dev/mii/tlphy.c 1.3.22.2 +0 -5 src/sys/dev/mii/tlphyreg.h 1.20.10.2 +0 -12 src/sys/dev/mii/ukphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:17:02 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D60510656C3 for ; Sun, 17 Oct 2010 12:17:02 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 787F08FC17 for ; Sun, 17 Oct 2010 12:17:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCH2Fj056731 for ; Sun, 17 Oct 2010 12:17:02 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCH2wc056730 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:17:02 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171217.o9HCH2wc056730@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:16:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii acphy.c bmtphy.c exphy.c gentbi.c icsphy.c lxtphy.c mii.h nsphy.c nsphyter.c qsphy.c tlphy.c tlphyreg.h ukphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:17:02 -0000 marius 2010-10-17 12:16:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii acphy.c bmtphy.c exphy.c gentbi.c icsphy.c lxtphy.c mii.h nsphy.c nsphyter.c qsphy.c tlphy.c tlphyreg.h ukphy.c Log: SVN rev 213959 on 2010-10-17 12:16:38Z by marius MFC: r213188 - Remove clause 3 and 4 from TNF licenses. - Remove closes 3 & 4 from Manuel Bouyer's license. Obtained from: NetBSD Revision Changes Path 1.21.2.1 +0 -12 src/sys/dev/mii/acphy.c 1.12.2.1 +0 -12 src/sys/dev/mii/bmtphy.c 1.23.2.1 +0 -12 src/sys/dev/mii/exphy.c 1.3.2.2 +0 -12 src/sys/dev/mii/gentbi.c 1.1.2.1 +0 -12 src/sys/dev/mii/icsphy.c 1.19.2.2 +0 -12 src/sys/dev/mii/lxtphy.c 1.5.10.1 +0 -5 src/sys/dev/mii/mii.h 1.28.2.3 +0 -12 src/sys/dev/mii/nsphy.c 1.1.2.2 +0 -12 src/sys/dev/mii/nsphyter.c 1.18.2.1 +0 -12 src/sys/dev/mii/qsphy.c 1.22.2.1 +0 -12 src/sys/dev/mii/tlphy.c 1.3.10.1 +0 -5 src/sys/dev/mii/tlphyreg.h 1.20.2.1 +0 -12 src/sys/dev/mii/ukphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:30:23 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EB3C10656DA for ; Sun, 17 Oct 2010 12:30:10 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 309728FC12 for ; Sun, 17 Oct 2010 12:30:10 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCUAEo057955 for ; Sun, 17 Oct 2010 12:30:10 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCUAGs057954 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:30:10 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171230.o9HCUAGs057954@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:29:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/dc dcphy.c pnphy.c src/sys/dev/mii acphy.c amphy.c atphy.c axphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c gentbi.c icsphy.c inphy.c ip1000phy.c jmphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c nsphy.c nsphyter.c pnaphy.c qsphy.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:30:23 -0000 marius 2010-10-17 12:29:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/dc dcphy.c pnphy.c sys/dev/mii acphy.c amphy.c atphy.c axphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c gentbi.c icsphy.c inphy.c ip1000phy.c jmphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c nsphy.c nsphyter.c pnaphy.c qsphy.c rgephy.c rlphy.c rlswitch.c ruephy.c smcphy.c tdkphy.c truephy.c ukphy.c xmphy.c Log: SVN rev 213960 on 2010-10-17 12:29:57Z by marius MFC: r213229 Use the mii_data provided via mii_attach_args and mii_pdata respectively instead of reaching out for the softc of the parent. Revision Changes Path 1.35.2.2 +1 -1 src/sys/dev/dc/dcphy.c 1.23.2.2 +1 -1 src/sys/dev/dc/pnphy.c 1.21.10.3 +1 -1 src/sys/dev/mii/acphy.c 1.24.2.2 +1 -1 src/sys/dev/mii/amphy.c 1.3.2.3 +1 -1 src/sys/dev/mii/atphy.c 1.1.2.2 +1 -1 src/sys/dev/mii/axphy.c 1.12.10.3 +1 -1 src/sys/dev/mii/bmtphy.c 1.78.2.10 +1 -1 src/sys/dev/mii/brgphy.c 1.17.2.2 +1 -1 src/sys/dev/mii/ciphy.c 1.30.2.9 +1 -1 src/sys/dev/mii/e1000phy.c 1.23.10.3 +1 -1 src/sys/dev/mii/exphy.c 1.4.2.3 +1 -1 src/sys/dev/mii/gentbi.c 1.1.12.3 +1 -1 src/sys/dev/mii/icsphy.c 1.17.10.2 +1 -1 src/sys/dev/mii/inphy.c 1.7.2.3 +1 -1 src/sys/dev/mii/ip1000phy.c 1.1.6.2 +1 -1 src/sys/dev/mii/jmphy.c 1.20.2.3 +1 -1 src/sys/dev/mii/lxtphy.c 1.29.10.3 +1 -2 src/sys/dev/mii/mii_physubr.c 1.25.2.2 +1 -1 src/sys/dev/mii/mlphy.c 1.25.2.2 +1 -1 src/sys/dev/mii/nsgphy.c 1.30.2.3 +1 -1 src/sys/dev/mii/nsphy.c 1.1.6.3 +1 -1 src/sys/dev/mii/nsphyter.c 1.18.10.2 +1 -1 src/sys/dev/mii/pnaphy.c 1.18.10.3 +1 -1 src/sys/dev/mii/qsphy.c 1.21.2.2 +1 -1 src/sys/dev/mii/rgephy.c 1.32.2.2 +1 -1 src/sys/dev/mii/rlphy.c 1.1.10.2 +1 -1 src/sys/dev/mii/rlswitch.c 1.6.10.2 +1 -1 src/sys/dev/mii/ruephy.c 1.1.2.2 +1 -1 src/sys/dev/mii/smcphy.c 1.23.2.2 +1 -1 src/sys/dev/mii/tdkphy.c 1.2.2.3 +1 -1 src/sys/dev/mii/truephy.c 1.20.10.3 +1 -1 src/sys/dev/mii/ukphy.c 1.21.10.2 +1 -1 src/sys/dev/mii/xmphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:30:32 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27CD71065670 for ; Sun, 17 Oct 2010 12:30:32 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EAA8B8FC1D for ; Sun, 17 Oct 2010 12:30:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCUVb9058131 for ; Sun, 17 Oct 2010 12:30:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCUVm1058130 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:30:31 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171230.o9HCUVm1058130@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:30:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/dc dcphy.c pnphy.c src/sys/dev/mii acphy.c amphy.c atphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c gentbi.c icsphy.c inphy.c ip1000phy.c jmphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c nsphy.c nsphyter.c pnaphy.c qsphy.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:30:32 -0000 marius 2010-10-17 12:30:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/dc dcphy.c pnphy.c sys/dev/mii acphy.c amphy.c atphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c gentbi.c icsphy.c inphy.c ip1000phy.c jmphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c nsphy.c nsphyter.c pnaphy.c qsphy.c rgephy.c rlphy.c rlswitch.c ruephy.c tdkphy.c truephy.c ukphy.c xmphy.c Log: SVN rev 213961 on 2010-10-17 12:30:01Z by marius MFC: r213229 Use the mii_data provided via mii_attach_args and mii_pdata respectively instead of reaching out for the softc of the parent. Revision Changes Path 1.32.2.4 +1 -1 src/sys/dev/dc/dcphy.c 1.21.2.3 +1 -1 src/sys/dev/dc/pnphy.c 1.21.2.2 +1 -1 src/sys/dev/mii/acphy.c 1.22.2.2 +1 -1 src/sys/dev/mii/amphy.c 1.1.2.5 +1 -1 src/sys/dev/mii/atphy.c 1.12.2.2 +1 -1 src/sys/dev/mii/bmtphy.c 1.70.2.15 +1 -1 src/sys/dev/mii/brgphy.c 1.9.2.3 +1 -1 src/sys/dev/mii/ciphy.c 1.18.2.16 +1 -1 src/sys/dev/mii/e1000phy.c 1.23.2.2 +1 -1 src/sys/dev/mii/exphy.c 1.3.2.3 +1 -1 src/sys/dev/mii/gentbi.c 1.1.2.2 +1 -1 src/sys/dev/mii/icsphy.c 1.17.2.1 +1 -1 src/sys/dev/mii/inphy.c 1.2.2.7 +1 -1 src/sys/dev/mii/ip1000phy.c 1.1.2.2 +1 -1 src/sys/dev/mii/jmphy.c 1.19.2.3 +1 -1 src/sys/dev/mii/lxtphy.c 1.29.2.2 +1 -2 src/sys/dev/mii/mii_physubr.c 1.22.2.1 +1 -1 src/sys/dev/mii/mlphy.c 1.24.2.2 +1 -1 src/sys/dev/mii/nsgphy.c 1.28.2.4 +1 -1 src/sys/dev/mii/nsphy.c 1.1.2.3 +1 -1 src/sys/dev/mii/nsphyter.c 1.18.2.1 +1 -1 src/sys/dev/mii/pnaphy.c 1.18.2.2 +1 -1 src/sys/dev/mii/qsphy.c 1.15.2.6 +1 -1 src/sys/dev/mii/rgephy.c 1.31.2.2 +1 -1 src/sys/dev/mii/rlphy.c 1.1.2.1 +1 -1 src/sys/dev/mii/rlswitch.c 1.6.2.1 +1 -1 src/sys/dev/mii/ruephy.c 1.22.2.2 +1 -1 src/sys/dev/mii/tdkphy.c 1.1.2.3 +1 -1 src/sys/dev/mii/truephy.c 1.20.2.2 +1 -1 src/sys/dev/mii/ukphy.c 1.21.2.1 +1 -1 src/sys/dev/mii/xmphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:33:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74DC51065956 for ; Sun, 17 Oct 2010 12:33:37 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47BF28FC19 for ; Sun, 17 Oct 2010 12:33:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCXbci058451 for ; Sun, 17 Oct 2010 12:33:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCXbkE058450 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:33:37 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171233.o9HCXbkE058450@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:33:15 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/mii mii.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:33:37 -0000 marius 2010-10-17 12:33:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/mii mii.c Log: SVN rev 213962 on 2010-10-17 12:33:15Z by marius MFC: r213361 Try to adhere to style(9) and be consistent within this file. Revision Changes Path 1.31.2.4 +22 -21 src/sys/dev/mii/mii.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:33:43 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D8EF1065949 for ; Sun, 17 Oct 2010 12:33:43 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 40C848FC23 for ; Sun, 17 Oct 2010 12:33:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCXh9N058469 for ; Sun, 17 Oct 2010 12:33:43 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCXhQj058468 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:33:43 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171233.o9HCXhQj058468@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:33:15 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii mii.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:33:43 -0000 marius 2010-10-17 12:33:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii mii.c Log: SVN rev 213963 on 2010-10-17 12:33:15Z by marius MFC: r213361 Try to adhere to style(9) and be consistent within this file. Revision Changes Path 1.29.2.2 +22 -21 src/sys/dev/mii/mii.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:34:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DD721065788 for ; Sun, 17 Oct 2010 12:34:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 40D998FC13 for ; Sun, 17 Oct 2010 12:34:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HCYYid058535 for ; Sun, 17 Oct 2010 12:34:34 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HCYYrJ058534 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:34:34 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171234.o9HCYYrJ058534@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:34:20 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii amphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:34:34 -0000 marius 2010-10-17 12:34:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii amphy.c Log: SVN rev 213964 on 2010-10-17 12:34:20Z by marius MFC: r175703 Fix a typo in a comment. Revision Changes Path 1.22.2.3 +1 -1 src/sys/dev/mii/amphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:43:25 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E3CE1065670 for ; Sun, 17 Oct 2010 12:43:25 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 501518FC0C for ; Sun, 17 Oct 2010 12:43:25 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HChPOW059245 for ; Sun, 17 Oct 2010 12:43:25 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HChP9t059244 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:43:25 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171243.o9HChP9t059244@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:43:15 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii ciphy.c miidevs X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:43:25 -0000 marius 2010-10-17 12:43:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii ciphy.c miidevs Log: SVN rev 213965 on 2010-10-17 12:43:15Z by marius MFC: r176773, r178598 Recognize Cicada CS8204 and CS8244 PHYs. Revision Changes Path 1.9.2.4 +5 -1 src/sys/dev/mii/ciphy.c 1.46.2.23 +2 -0 src/sys/dev/mii/miidevs From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 12:47:16 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78B6D1065780 for ; Sun, 17 Oct 2010 12:47:16 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B45B8FC1B for ; Sun, 17 Oct 2010 12:47:16 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HClGCd070528 for ; Sun, 17 Oct 2010 12:47:16 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HClGx6070527 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 12:47:16 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171247.o9HClGx6070527@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 12:47:07 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii e1000phy.c miidevs X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 12:47:16 -0000 marius 2010-10-17 12:47:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii e1000phy.c miidevs Log: SVN rev 213966 on 2010-10-17 12:47:07Z by marius MFC: r182751 Recognize 88E1116R phy variation. This part is found on some embedded devices. Obtained from: Semihalf Revision Changes Path 1.18.2.17 +1 -0 src/sys/dev/mii/e1000phy.c 1.46.2.24 +1 -0 src/sys/dev/mii/miidevs From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:06:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A43CC1065670 for ; Sun, 17 Oct 2010 13:06:37 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 773928FC19 for ; Sun, 17 Oct 2010 13:06:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HD6bCX072976 for ; Sun, 17 Oct 2010 13:06:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HD6b0N072975 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:06:37 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171306.o9HD6b0N072975@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:06:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii mlphy.c tlphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:06:37 -0000 marius 2010-10-17 13:06:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii mlphy.c tlphy.c Log: SVN rev 213967 on 2010-10-17 13:06:18Z by marius r182037, r182038, r182064 When there's an error, we don't want to free the children, since it will be stack garbage. Revision Changes Path 1.22.2.2 +8 -6 src/sys/dev/mii/mlphy.c 1.22.2.2 +2 -2 src/sys/dev/mii/tlphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:07:43 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FB0F1065694 for ; Sun, 17 Oct 2010 13:07:43 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 42B948FC21 for ; Sun, 17 Oct 2010 13:07:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HD7h76073052 for ; Sun, 17 Oct 2010 13:07:43 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HD7htN073051 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:07:43 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171307.o9HD7htN073051@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:07:35 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii mlphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:07:43 -0000 marius 2010-10-17 13:07:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii mlphy.c Log: SVN rev 213968 on 2010-10-17 13:07:35Z by marius MFC: r182067 Move the code that looks for the companion phy to a subroutine to make sure we get the error handling right in both places. This also simplifies the code somewhat. Revision Changes Path 1.22.2.3 +22 -23 src/sys/dev/mii/mlphy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:10:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 720AA106566C for ; Sun, 17 Oct 2010 13:10:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 44EAC8FC0A for ; Sun, 17 Oct 2010 13:10:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDAY5V073292 for ; Sun, 17 Oct 2010 13:10:34 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDAYEB073291 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:10:34 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171310.o9HDAYEB073291@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:10:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii rgephy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:10:34 -0000 marius 2010-10-17 13:10:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii rgephy.c Log: SVN rev 213969 on 2010-10-17 13:10:22Z by marius MFC: r173164 Setting sc->mii_anegticks to MII_ANEGTICKS_GIGE in rgephy_attach() is redundant. mii_phy_add_media() already takes care of that. Pointed out by: marius Revision Changes Path 1.15.2.7 +0 -1 src/sys/dev/mii/rgephy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:11:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7312C106564A for ; Sun, 17 Oct 2010 13:11:55 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45DBD8FC15 for ; Sun, 17 Oct 2010 13:11:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDBtZe073479 for ; Sun, 17 Oct 2010 13:11:55 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDBtDD073478 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:11:55 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171311.o9HDBtDD073478@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:11:46 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/mii truephy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:11:55 -0000 marius 2010-10-17 13:11:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/mii truephy.c Log: SVN rev 213970 on 2010-10-17 13:11:46Z by marius MFC: r185421 Renamed the FRAMELEN macro to TRUEPHY_FRAMELEN as for powerpc it seems to be possible to collide with FRAMELEN from machine/frame.h. Found by: zec Revision Changes Path 1.1.2.4 +3 -2 src/sys/dev/mii/truephy.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:13:31 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FE0F1065705 for ; Sun, 17 Oct 2010 13:13:31 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 52FBC8FC14 for ; Sun, 17 Oct 2010 13:13:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDDVNM073589 for ; Sun, 17 Oct 2010 13:13:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDDV22073588 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:13:31 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171313.o9HDDV22073588@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:13:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/sun4v/include endian.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:13:31 -0000 marius 2010-10-17 13:13:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sun4v/include endian.h Log: SVN rev 213971 on 2010-10-17 13:13:12Z by marius MFC: r213575 Just use the sparc64 version of this header rather than duplicating it. Revision Changes Path 1.2.2.1 +2 -117 src/sys/sun4v/include/endian.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:13:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 797641065702 for ; Sun, 17 Oct 2010 13:13:37 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4C5818FC17 for ; Sun, 17 Oct 2010 13:13:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDDbYg073609 for ; Sun, 17 Oct 2010 13:13:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDDbs1073608 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:13:37 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171313.o9HDDbs1073608@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:13:13 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sun4v/include endian.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:13:37 -0000 marius 2010-10-17 13:13:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sun4v/include endian.h Log: SVN rev 213972 on 2010-10-17 13:13:13Z by marius MFC: r213575 Just use the sparc64 version of this header rather than duplicating it. Revision Changes Path 1.2.10.2 +2 -117 src/sys/sun4v/include/endian.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:41:28 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99E9F10657A4 for ; Sun, 17 Oct 2010 13:41:28 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6CC7D8FC17 for ; Sun, 17 Oct 2010 13:41:28 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDfSDA075673 for ; Sun, 17 Oct 2010 13:41:28 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDfStI075672 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:41:28 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171341.o9HDfStI075672@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:41:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sparc64/include endian.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:41:28 -0000 marius 2010-10-17 13:41:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sparc64/include endian.h Log: SVN rev 213973 on 2010-10-17 13:41:09Z by marius MFC: r213578 In the replacement text of the __bswapN_const() macros cast the argument to the expected type so they work like the corresponding __bswapN_var() functions and the compiler doesn't complain when arguments of different width are passed. Revision Changes Path 1.16.10.2 +14 -12 src/sys/sparc64/include/endian.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:41:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72F881065784 for ; Sun, 17 Oct 2010 13:41:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 459748FC0A for ; Sun, 17 Oct 2010 13:41:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDfYf9075691 for ; Sun, 17 Oct 2010 13:41:34 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDfYxd075690 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:41:34 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171341.o9HDfYxd075690@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 13:41:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/sparc64/include endian.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:41:34 -0000 marius 2010-10-17 13:41:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sparc64/include endian.h Log: SVN rev 213974 on 2010-10-17 13:41:12Z by marius MFC: r213578 In the replacement text of the __bswapN_const() macros cast the argument to the expected type so they work like the corresponding __bswapN_var() functions and the compiler doesn't complain when arguments of different width are passed. Revision Changes Path 1.16.2.1 +14 -12 src/sys/sparc64/include/endian.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 13:47:25 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D111106566C for ; Sun, 17 Oct 2010 13:47:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4FF638FC08 for ; Sun, 17 Oct 2010 13:47:25 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HDlPu3076088 for ; Sun, 17 Oct 2010 13:47:25 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HDlPSi076087 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 13:47:25 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201010171347.o9HDlPSi076087@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Sun, 17 Oct 2010 13:47:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/compat/linux linux_util.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 13:47:25 -0000 kib 2010-10-17 13:47:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/compat/linux linux_util.h Log: SVN rev 213975 on 2010-10-17 13:47:03Z by kib MFC r213846: Remove stale comment. Revision Changes Path 1.31.2.2 +0 -5 src/sys/compat/linux/linux_util.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 14:25:31 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B048A1065670 for ; Sun, 17 Oct 2010 14:25:31 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 82E218FC1B for ; Sun, 17 Oct 2010 14:25:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HEPVXo079850 for ; Sun, 17 Oct 2010 14:25:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HEPVFZ079849 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 14:25:31 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171425.o9HEPVFZ079849@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 14:25:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/sparc64/sparc64 mp_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 14:25:31 -0000 marius 2010-10-17 14:25:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sparc64/sparc64 mp_machdep.c Log: SVN rev 213976 on 2010-10-17 14:25:01Z by marius MFC: r213868 - In the spirit of r212559 add a comment describing what will eventually lower the PIL. - Just as with the AP ensure that the (S)TICK timer(s) are in a known state when starting BSPs. Revision Changes Path 1.36.2.17 +11 -1 src/sys/sparc64/sparc64/mp_machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 14:26:07 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7498B106566C for ; Sun, 17 Oct 2010 14:26:07 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4739F8FC18 for ; Sun, 17 Oct 2010 14:26:07 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HEQ7tA079929 for ; Sun, 17 Oct 2010 14:26:07 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HEQ7R9079928 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 14:26:07 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171426.o9HEQ7R9079928@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 14:25:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sparc64/sparc64 mp_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 14:26:07 -0000 marius 2010-10-17 14:25:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sparc64/sparc64 mp_machdep.c Log: SVN rev 213977 on 2010-10-17 14:25:55Z by marius MFC: r213868 - In the spirit of r212559 add a comment describing what will eventually lower the PIL. - Just as with the AP ensure that the (S)TICK timer(s) are in a known state when starting BSPs. Revision Changes Path 1.52.2.9 +11 -1 src/sys/sparc64/sparc64/mp_machdep.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 14:49:13 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 957451065673 for ; Sun, 17 Oct 2010 14:49:13 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 688B18FC1B for ; Sun, 17 Oct 2010 14:49:13 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HEnD9X081784 for ; Sun, 17 Oct 2010 14:49:13 GMT (envelope-from jh@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HEnDcb081781 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 14:49:13 GMT (envelope-from jh@repoman.freebsd.org) Message-Id: <201010171449.o9HEnDcb081781@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jh@repoman.freebsd.org using -f From: Jaakko Heinonen Date: Sun, 17 Oct 2010 14:48:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sbin/mount mount.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 14:49:13 -0000 jh 2010-10-17 14:48:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sbin/mount mount.c Log: SVN rev 213978 on 2010-10-17 14:48:53Z by jh MFC r213298: Fix printing of the "rw" mount option in fstab(5) format (-p option). fstab(5) format requires that one of "rw", "rq" or "ro" is always specified. PR: bin/123021 Revision Changes Path 1.107.2.5 +12 -12 src/sbin/mount/mount.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 15:23:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6875106566C for ; Sun, 17 Oct 2010 15:23:20 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 59AD58FC12 for ; Sun, 17 Oct 2010 15:23:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HFNKBG085224 for ; Sun, 17 Oct 2010 15:23:20 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HFNKJd085223 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 15:23:20 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Message-Id: <201010171523.o9HFNKJd085223@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to nwhitehorn@repoman.freebsd.org using -f From: Nathan Whitehorn Date: Sun, 17 Oct 2010 15:22:59 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/powerpc/aim mmu_oea.c mmu_oea64.c src/sys/powerpc/include pmap.h vm.h src/sys/powerpc/powerpc bus_machdep.c mmu_if.m pmap_dispatch.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 15:23:21 -0000 nwhitehorn 2010-10-17 15:22:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/powerpc/aim mmu_oea.c mmu_oea64.c sys/powerpc/include pmap.h vm.h sys/powerpc/powerpc bus_machdep.c mmu_if.m pmap_dispatch.c Log: SVN rev 213979 on 2010-10-17 15:22:59Z by nwhitehorn MFC r213307,213335: Add support for memory attributes (pmap_mapdev_attr() and friends) on PowerPC/AIM. This is currently stubbed out on Book-E, since I have no idea how to implement it there. Revision Changes Path 1.130.2.9 +100 -42 src/sys/powerpc/aim/mmu_oea.c 1.4.2.18 +81 -34 src/sys/powerpc/aim/mmu_oea64.c 1.26.2.3 +6 -4 src/sys/powerpc/include/pmap.h 1.3.2.2 +7 -5 src/sys/powerpc/include/vm.h 1.4.2.2 +27 -3 src/sys/powerpc/powerpc/bus_machdep.c 1.11.2.3 +62 -0 src/sys/powerpc/powerpc/mmu_if.m 1.19.2.3 +24 -0 src/sys/powerpc/powerpc/pmap_dispatch.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 15:25:56 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D21110656A5 for ; Sun, 17 Oct 2010 15:25:56 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5FC1D8FC16 for ; Sun, 17 Oct 2010 15:25:56 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HFPubk085477 for ; Sun, 17 Oct 2010 15:25:56 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HFPuFj085476 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 15:25:56 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010171525.o9HFPuFj085476@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Sun, 17 Oct 2010 15:25:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/usr.sbin/ntp config.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 15:25:56 -0000 glebius 2010-10-17 15:25:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) usr.sbin/ntp config.h Log: SVN rev 213980 on 2010-10-17 15:25:33Z by glebius Merge 213831: Enable the shared memory reference clock driver. The GPS devices are getting more and more popular, as source of precise time, and the gpsd daemon from ports is using the shared memory to synchronize with ntpd. Reviewed by: roberto Revision Changes Path 1.16.2.2 +1 -1 src/usr.sbin/ntp/config.h From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 15:47:47 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 968E410656C6 for ; Sun, 17 Oct 2010 15:47:47 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 696108FC1F for ; Sun, 17 Oct 2010 15:47:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HFllYH087038 for ; Sun, 17 Oct 2010 15:47:47 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HFllfV087037 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 15:47:47 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010171547.o9HFllfV087037@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sun, 17 Oct 2010 15:47:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/hastd hastd.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 15:47:47 -0000 pjd 2010-10-17 15:47:27 UTC FreeBSD src repository Modified files: sbin/hastd hastd.c Log: SVN rev 213981 on 2010-10-17 15:47:27Z by pjd Log correct connection when canceling half-open connection. Submitted by: Mikolaj Golub MFC after: 3 days Revision Changes Path 1.23 +2 -1 src/sbin/hastd/hastd.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 15:56:08 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78FE0106566C for ; Sun, 17 Oct 2010 15:56:08 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4AF928FC13 for ; Sun, 17 Oct 2010 15:56:08 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HFu8Te087628 for ; Sun, 17 Oct 2010 15:56:08 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HFu8iO087627 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 15:56:08 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Message-Id: <201010171556.o9HFu8iO087627@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to nwhitehorn@repoman.freebsd.org using -f From: Nathan Whitehorn Date: Sun, 17 Oct 2010 15:55:46 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/powerpc/powerpc pmap_dispatch.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 15:56:08 -0000 nwhitehorn 2010-10-17 15:55:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/powerpc/powerpc pmap_dispatch.c Log: SVN rev 213982 on 2010-10-17 15:55:46Z by nwhitehorn MFC r213360: Missed some changes in the last commit required to build LINT. Revision Changes Path 1.19.2.4 +3 -3 src/sys/powerpc/powerpc/pmap_dispatch.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 16:30:44 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B15A91065697 for ; Sun, 17 Oct 2010 16:30:44 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1E78FC20 for ; Sun, 17 Oct 2010 16:30:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HGUie1091187 for ; Sun, 17 Oct 2010 16:30:44 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HGUiFO091186 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 16:30:44 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201010171630.o9HGUiFO091186@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Sun, 17 Oct 2010 16:30:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile vput.9 vrele.9 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 16:30:44 -0000 kib 2010-10-17 16:30:33 UTC FreeBSD src repository Modified files: share/man/man9 Makefile vrele.9 Removed files: share/man/man9 vput.9 Log: SVN rev 213983 on 2010-10-17 16:30:33Z by kib Document vunref(9), add some important notes for vrele(9) and vput(9). Merge all three manpages to one, removing separate file for vput(9). MFC after: 1 week Revision Changes Path 1.376 +2 -1 src/share/man/man9/Makefile 1.14 +0 -63 src/share/man/man9/vput.9 (dead) 1.15 +47 -7 src/share/man/man9/vrele.9 From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 16:43:35 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A831010657C7 for ; Sun, 17 Oct 2010 16:43:35 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7975B8FC0C for ; Sun, 17 Oct 2010 16:43:35 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HGhZ6a092242 for ; Sun, 17 Oct 2010 16:43:35 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HGhZSm092241 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 16:43:35 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010171643.o9HGhZSm092241@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sun, 17 Oct 2010 16:43:20 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sbin/hastd control.c hastd.c hooks.c hooks.h pjdlog.c primary.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 16:43:35 -0000 pjd 2010-10-17 16:43:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sbin/hastd control.c hastd.c hooks.c hooks.h pjdlog.c primary.c Log: SVN rev 213984 on 2010-10-17 16:43:20Z by pjd MFC r213183,r213428,r213429,r213430,r213529,r213530,r213531,r213533,r213579, r213580,r213938,r213939,r213981: r213183: Plug memory leak on fork(2) failure. Submitted by: Mikolaj Golub r213428: We can't mask ignored signal, so install dummy signal hander for SIGCHLD before masking it. This fixes bogus reports about hooks running for too long and other problems related to garbage-collecting child processes. Reported by: Mikolaj Golub r213429: hook_check() is now only used to report about long-running hooks, so the argument is redundant, remove it. r213430: Decrease report interval to 5 seconds, as this also means we will check for signals every 5 seconds and not every 10 seconds as before. r213529: Don't close local component on exit as we can hang waiting on g_waitidle. I'm unable to reproduce the race described in comment anymore and also the comment is incorrect - localfd represents local component from configuration file, eg. /dev/da0 and not HAST provider. Reported by: Mikolaj Golub r213530: Start the guard thread first, so we can handle signals from the very begining. Reported by: Mikolaj Golub r213531: Log error message when we fail to destroy ggate provider. r213533: Clear ggate structures before using them. We don't initialize all the field and there can be some garbage from the stack. r213579: We close the event socketpair early in the mainloop to prevent spaming with error messages, so when we clean up after child process, we have to check if the event socketpair is still there. Submitted by: Mikolaj Golub r213580: We can't zero out ggio request, as we have some fields in there we initialize once during start-up. Reported by: Mikolaj Golub r213938: Clear signal mask before executing a hook. Submitted by: Mikolaj Golub r213939: Use one fprintf() instead of two. r213981: Log correct connection when canceling half-open connection. Submitted by: Mikolaj Golub Revision Changes Path 1.1.2.4 +4 -2 src/sbin/hastd/control.c 1.2.2.7 +15 -3 src/sbin/hastd/hastd.c 1.1.2.4 +5 -11 src/sbin/hastd/hooks.c 1.1.2.4 +1 -1 src/sbin/hastd/hooks.h 1.2.2.5 +1 -2 src/sbin/hastd/pjdlog.c 1.3.2.7 +12 -11 src/sbin/hastd/primary.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 16:47:11 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A2B710656C4 for ; Sun, 17 Oct 2010 16:47:11 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 56F1B8FC24 for ; Sun, 17 Oct 2010 16:47:11 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HGlBoK002483 for ; Sun, 17 Oct 2010 16:47:11 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HGlBuR002463 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 16:47:11 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010171647.o9HGlBuR002463@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 17 Oct 2010 16:46:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 tick.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 16:47:11 -0000 marius 2010-10-17 16:46:54 UTC FreeBSD src repository Modified files: sys/sparc64/sparc64 tick.c Log: SVN rev 213985 on 2010-10-17 16:46:54Z by marius - In oneshot-mode it doesn't make sense to try to compensate the clock drift in order to achieve a more stable clock as the tick intervals may vary in the first place. In fact I haven't seen this code kick in when in oneshot-mode so just skip it in that case. - There's no need to explicitly stop the (S)TICK counter in oneshot-mode with every tick as it just won't trigger again with the (S)TICK compare register set to a value in the past (with a wrap-around once every ~195 years of uptime at 1.5 GHz this isn't something we have to worry about in practice). - Given that we'll disable interrupts completely anyway there's no need to enter critical sections. Revision Changes Path 1.30 +41 -45 src/sys/sparc64/sparc64/tick.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 17:32:02 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A157A1065674 for ; Sun, 17 Oct 2010 17:32:02 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8E09C8FC16 for ; Sun, 17 Oct 2010 17:32:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HHW2tp007769 for ; Sun, 17 Oct 2010 17:32:02 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HHW2YC007768 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 17:32:02 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Message-Id: <201010171732.o9HHW2YC007768@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to nwhitehorn@repoman.freebsd.org using -f From: Nathan Whitehorn Date: Sun, 17 Oct 2010 17:31:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_clock.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 17:32:02 -0000 nwhitehorn 2010-10-17 17:31:49 UTC FreeBSD src repository Modified files: sys/kern subr_clock.c Log: SVN rev 213986 on 2010-10-17 17:31:49Z by nwhitehorn Fix an XXX comment by answering 'no'. OS X does not set the day-of-week counter on SMU-based systems, which causes FreeBSD to reject the RTC time when used in a dual-boot environment. Since we don't use the day-of-week counter anyway, solve this by just not checking that it matches. MFC after: 3 weeks Revision Changes Path 1.16 +0 -4 src/sys/kern/subr_clock.c From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 17:40:10 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAB511065673 for ; Sun, 17 Oct 2010 17:40:10 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A666C8FC1B for ; Sun, 17 Oct 2010 17:40:10 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HHeA29008402 for ; Sun, 17 Oct 2010 17:40:10 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HHeAng008401 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 17:40:10 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010171740.o9HHeAng008401@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Sun, 17 Oct 2010 17:39:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/usb usb_msctest.c usb_msctest.h usbdevs src/sys/dev/usb/serial u3g.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 17:40:10 -0000 glebius 2010-10-17 17:39:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/usb usb_msctest.c usb_msctest.h usbdevs sys/dev/usb/serial u3g.c Log: SVN rev 213987 on 2010-10-17 17:39:54Z by glebius Merge from head 213480,213481,213717: Add support to Alcatel/TCTMobile X080S USB 3G modem. The device needs special eject command to reappear as modem. It also requires DIR_IN flag in the command message, so we supply some dummy data along with the command. Revision Changes Path 1.19.2.18 +5 -0 src/sys/dev/usb/serial/u3g.c 1.11.2.6 +10 -1 src/sys/dev/usb/usb_msctest.c 1.5.2.4 +1 -0 src/sys/dev/usb/usb_msctest.h 1.421.2.52 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 18:49:01 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0B71106566C for ; Sun, 17 Oct 2010 18:49:01 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B333C8FC14 for ; Sun, 17 Oct 2010 18:49:01 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HIn11B014441 for ; Sun, 17 Oct 2010 18:49:01 GMT (envelope-from culot@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HIn1Wc014440 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 18:49:01 GMT (envelope-from culot@repoman.freebsd.org) Message-Id: <201010171849.o9HIn1Wc014440@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to culot@repoman.freebsd.org using -f From: Frederic Culot Date: Sun, 17 Oct 2010 18:48:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/misc committers-ports.dot X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 18:49:02 -0000 culot 2010-10-17 18:48:51 UTC FreeBSD src repository Modified files: share/misc committers-ports.dot Log: SVN rev 213988 on 2010-10-17 18:48:51Z by culot Add an entry for myself to committers-ports.dot. Approved by: sahil@ (mentor) Revision Changes Path 1.98 +5 -0 src/share/misc/committers-ports.dot From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 19:02:57 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CB2C10657C3 for ; Sun, 17 Oct 2010 19:02:57 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6F0B08FC18 for ; Sun, 17 Oct 2010 19:02:57 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HJ2vCT015449 for ; Sun, 17 Oct 2010 19:02:57 GMT (envelope-from culot@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HJ2vsh015448 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 19:02:57 GMT (envelope-from culot@repoman.freebsd.org) Message-Id: <201010171902.o9HJ2vsh015448@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to culot@repoman.freebsd.org using -f From: Frederic Culot Date: Sun, 17 Oct 2010 19:02:42 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 19:02:57 -0000 culot 2010-10-17 19:02:42 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: SVN rev 213990 on 2010-10-17 19:02:42Z by culot Add myself to calendar.freebsd. Approved by: sahil@ (mentor) Revision Changes Path 1.272 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 20:02:10 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F4D2106566C for ; Sun, 17 Oct 2010 20:02:10 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D684D8FC1F for ; Sun, 17 Oct 2010 20:02:09 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HK299K020737 for ; Sun, 17 Oct 2010 20:02:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HK29sU020736 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 20:02:09 GMT (envelope-from scottl@repoman.freebsd.org) Message-Id: <201010172002.o9HK29sU020736@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to scottl@repoman.freebsd.org using -f From: Scott Long Date: Sun, 17 Oct 2010 20:01:56 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/mps Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 20:02:10 -0000 scottl 2010-10-17 20:01:56 UTC FreeBSD src repository Modified files: sys/modules/mps Makefile Log: SVN rev 213993 on 2010-10-17 20:01:56Z by scottl Re-add opt_mps.h and opt_cam.h, lost in the previous rev. Revision Changes Path 1.3 +1 -1 src/sys/modules/mps/Makefile From owner-cvs-src-old@FreeBSD.ORG Sun Oct 17 20:11:49 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9302E1065670 for ; Sun, 17 Oct 2010 20:11:49 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B2368FC17 for ; Sun, 17 Oct 2010 20:11:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9HKBnLl022645 for ; Sun, 17 Oct 2010 20:11:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9HKBnhc022644 for cvs-src-old@freebsd.org; Sun, 17 Oct 2010 20:11:49 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010172011.o9HKBnhc022644@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sun, 17 Oct 2010 20:10:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/etc/rc.d Makefile gptboot src/sbin/geom/class/part gpart.8 src/sys/boot/common crc32.c crc32.h gpt.c gpt.h util.c util.h src/sys/boot/i386/common cons.c cons.h drv.c drv.h rbx.h src/sys/boot/i386/gptboot Makefile gptboot.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Oct 2010 20:11:49 -0000 pjd 2010-10-17 20:10:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) etc/rc.d Makefile sbin/geom/class/part gpart.8 sys/boot/i386/gptboot Makefile gptboot.c sys/boot/i386/gptzfsboot Makefile sys/boot/i386/zfsboot Makefile zfsboot.c sys/boot/zfs Makefile zfsimpl.c sys/geom/part g_part_gpt.c sys/sys gpt.h Added files: (Branch: RELENG_8) etc/rc.d gptboot sys/boot/common crc32.c crc32.h gpt.c gpt.h util.c util.h sys/boot/i386/common cons.c cons.h drv.c drv.h rbx.h Log: SVN rev 213994 on 2010-10-17 20:10:00Z by pjd MFC r213133,r213135,r213136,r213137,r213245: r213133: Add three GPT attributes: GPT_ENT_ATTR_BOOTME - this is bootable partition GPT_ENT_ATTR_BOOTONCE - try to boot only once from this partition GPT_ENT_ATTR_BOOTFAILED - set this flag if we cannot boot from partition containing GPT_ENT_ATTR_BOOTONCE flag; note that if we cannot boot from partition that contains only GPT_ENT_ATTR_BOOTME flag, the GPT_ENT_ATTR_BOOTFAILED flag won't be set According to wikipedia Microsoft TechNet says that attributes are divided into two halves: the lower 4 bytes representing partition independent attributes, and the upper 4 bytes are partition type dependent. Microsoft is already using bits 60 (read-only), 62 (hidden) and 63 (do not automount) and I'd like to not collide with those, so we are using bit 59 (bootme), 58 (bootonce) and 57 (bootfailed). Reviewed by: arch (Message-ID: <20100917234542.GE1902@garage.freebsd.pl>) r213135: Allow to configure GPT attributes. It shouldn't be allowed to set bootfailed attribute (it should be allowed only to unset it), but for test purposes it might be useful, so the current code allows it. Reviewed by: arch@ (Message-ID: <20100917234542.GE1902@garage.freebsd.pl>) r213136: - Split code shared by almost any boot loader into separate files and clean up most layering violations: sys/boot/i386/common/rbx.h: RBX_* defines OPT_SET() OPT_CHECK() sys/boot/common/util.[ch]: memcpy() memset() memcmp() bcpy() bzero() bcmp() strcmp() strncmp() [new] strcpy() strcat() strchr() strlen() printf() sys/boot/i386/common/cons.[ch]: ioctrl putc() xputc() putchar() getc() xgetc() keyhit() [now takes number of seconds as an argument] getstr() sys/boot/i386/common/drv.[ch]: struct dsk drvread() drvwrite() [new] drvsize() [new] sys/boot/common/crc32.[ch] [new] sys/boot/common/gpt.[ch] [new] - Teach gptboot and gptzfsboot about new files. I haven't touched the rest, but there is still a lot of code duplication to be removed. - Implement full GPT support. Currently we just read primary header and partition table and don't care about checksums, etc. After this change we verify checksums of primary header and primary partition table and if there is a problem we fall back to backup header and backup partition table. - Clean up most messages to use prefix of boot program, so in case of an error we know where the error comes from, eg.: gptboot: unable to read primary GPT header - If we can't boot, print boot prompt only once and not every five seconds. - Honour newly added GPT attributes: bootme - this is bootable partition bootonce - try to boot from this partition only once bootfailed - we failed to boot from this partition - Change boot order of gptboot to the following: 1. Try to boot from all the partitions that have both 'bootme' and 'bootonce' attributes one by one. 2. Try to boot from all the partitions that have only 'bootme' attribute one by one. 3. If there are no partitions with 'bootme' attribute, boot from the first UFS partition. - The 'bootonce' functionality is implemented in the following way: 1. Walk through all the partitions and when 'bootonce' attribute is found without 'bootme' attribute, remove 'bootonce' attribute and set 'bootfailed' attribute. 'bootonce' attribute alone means that we tried to boot from this partition, but boot failed after leaving gptboot and machine was restarted. 2. Find partition with both 'bootme' and 'bootonce' attributes. 3. Remove 'bootme' attribute. 4. Try to execute /boot/loader or /boot/kernel/kernel from that partition. If succeeded we stop here. 5. If execution failed, remove 'bootonce' and set 'bootfailed'. 6. Go to 2. If whole boot succeeded there is new /etc/rc.d/gptboot script coming that will log all partitions that we failed to boot from (the ones with 'bootfailed' attribute) and will remove this attribute. It will also find partition with 'bootonce' attribute - this is the partition we booted from successfully. The script will log success and remove the attribute. All the GPT updates we do here goes to both primary and backup GPT if they are valid. We don't touch headers or partition tables when checksum doesn't match. Reviewed by: arch (Message-ID: <20100917234542.GE1902@garage.freebsd.pl>) Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com r213137: Add gptboot script that is responsible for: - looking for partition with 'bootonce' attribute alone (without 'bootme' attribute), removing it and logging that we successfully booted from this partition. - looking for partitions with 'bootfailed' attribute, removing it and logging that we failed to boot from this partition. Reviewed by: arch (Message-ID: <20100917234542.GE1902@garage.freebsd.pl>) Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com r213245: Document recently added GPT attributes (bootme, bootonce, bootfailed) and list other schemes attributes. Reviewed by: simon, rpaulo Revision Changes Path 1.99.2.7 +1 -1 src/etc/rc.d/Makefile 1.1.2.2 +76 -0 src/etc/rc.d/gptboot (new) 1.7.2.9 +104 -1 src/sbin/geom/class/part/gpart.8 1.1.2.2 +108 -0 src/sys/boot/common/crc32.c (new) 1.1.2.2 +13 -0 src/sys/boot/common/crc32.h (new) 1.1.2.2 +381 -0 src/sys/boot/common/gpt.c (new) 1.1.2.2 +39 -0 src/sys/boot/common/gpt.h (new) 1.1.2.2 +176 -0 src/sys/boot/common/util.c (new) 1.1.2.2 +53 -0 src/sys/boot/common/util.h (new) 1.1.2.2 +152 -0 src/sys/boot/i386/common/cons.c (new) 1.1.2.2 +34 -0 src/sys/boot/i386/common/cons.h (new) 1.1.2.2 +131 -0 src/sys/boot/i386/common/drv.c (new) 1.1.2.2 +48 -0 src/sys/boot/i386/common/drv.h (new) 1.1.2.2 +61 -0 src/sys/boot/i386/common/rbx.h (new) 1.62.6.2 +8 -5 src/sys/boot/i386/gptboot/Makefile 1.88.2.5 +142 -434 src/sys/boot/i386/gptboot/gptboot.c 1.3.4.2 +7 -3 src/sys/boot/i386/gptzfsboot/Makefile 1.2.4.2 +10 -7 src/sys/boot/i386/zfsboot/Makefile 1.3.4.10 +14 -405 src/sys/boot/i386/zfsboot/zfsboot.c 1.3.4.2 +1 -0 src/sys/boot/zfs/Makefile 1.5.4.8 +3 -8 src/sys/boot/zfs/zfsimpl.c 1.16.2.12 +85 -0 src/sys/geom/part/g_part_gpt.c 1.13.2.3 +3 -0 src/sys/sys/gpt.h From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 03:34:47 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D11FC1065693 for ; Mon, 18 Oct 2010 03:34:47 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A424B8FC19 for ; Mon, 18 Oct 2010 03:34:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I3Ylkm083697 for ; Mon, 18 Oct 2010 03:34:47 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I3Ylwb083696 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 03:34:47 GMT (envelope-from kevlo@repoman.freebsd.org) Message-Id: <201010180334.o9I3Ylwb083696@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kevlo@repoman.freebsd.org using -f From: Kevin Lo Date: Mon, 18 Oct 2010 03:34:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/msdosfs msdosfs_lookup.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 03:34:47 -0000 kevlo 2010-10-18 03:34:33 UTC FreeBSD src repository Modified files: sys/fs/msdosfs msdosfs_lookup.c Log: SVN rev 214001 on 2010-10-18 03:34:33Z by kevlo Fix a possible race where the directory dirent is moved to the location that was used by ".." entry. This change seems fixed panic during attempt to access msdosfs data over nfs. Reviewed by: kib MFC after: 1 week Revision Changes Path 1.58 +8 -3 src/sys/fs/msdosfs/msdosfs_lookup.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 04:00:08 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B95511065670 for ; Mon, 18 Oct 2010 04:00:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B8E68FC12 for ; Mon, 18 Oct 2010 04:00:08 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I408ie085508 for ; Mon, 18 Oct 2010 04:00:08 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I40842085507 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 04:00:08 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010180400.o9I40842085507@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Mon, 18 Oct 2010 03:59:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/uudecode uudecode.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 04:00:08 -0000 edwin 2010-10-18 03:59:55 UTC FreeBSD src repository Modified files: usr.bin/uudecode uudecode.c Log: SVN rev 214002 on 2010-10-18 03:59:55Z by edwin Stylify of uudecode(1) Part of PR bin/124739. PR: bin/124739 Submitted by: Mark Andrews Revision Changes Path 1.50 +35 -29 src/usr.bin/uudecode/uudecode.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 04:26:44 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B03C810658BA for ; Mon, 18 Oct 2010 04:26:44 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 834308FC0A for ; Mon, 18 Oct 2010 04:26:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I4Qij9088439 for ; Mon, 18 Oct 2010 04:26:44 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I4Qivh088438 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 04:26:44 GMT (envelope-from marcel@repoman.freebsd.org) Message-Id: <201010180426.o9I4Qivh088438@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marcel@repoman.freebsd.org using -f From: Marcel Moolenaar Date: Mon, 18 Oct 2010 04:26:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 04:26:44 -0000 marcel 2010-10-18 04:26:32 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: SVN rev 214003 on 2010-10-18 04:26:32Z by marcel Allow the MDIOCATTACH ioctl operation to originate from within the kernel. To protect against malicious software, we demand that the file name is at a particular location (i.e. appended to the mdio structure) for it to be treated as in-kernel. Revision Changes Path 1.190 +16 -8 src/sys/dev/md/md.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 04:31:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FAE51065694 for ; Mon, 18 Oct 2010 04:31:00 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 527728FC1D for ; Mon, 18 Oct 2010 04:31:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I4V0wo088776 for ; Mon, 18 Oct 2010 04:31:00 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I4V0ff088775 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 04:31:00 GMT (envelope-from marcel@repoman.freebsd.org) Message-Id: <201010180431.o9I4V0ff088775@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marcel@repoman.freebsd.org using -f From: Marcel Moolenaar Date: Mon, 18 Oct 2010 04:30:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_shutdown.c src/sys/sys systm.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 04:31:00 -0000 marcel 2010-10-18 04:30:27 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c sys/sys systm.h Log: SVN rev 214004 on 2010-10-18 04:30:27Z by marcel Rename boot() to kern_reboot() and make it visible outside of kern_shutdown.c. This makes it easier for emulators and other parts of the kernel to initiate a reboot. Revision Changes Path 1.207 +6 -7 src/sys/kern/kern_shutdown.c 1.291 +2 -1 src/sys/sys/systm.h From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 04:34:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCA3910656C2 for ; Mon, 18 Oct 2010 04:34:51 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8FB398FC1F for ; Mon, 18 Oct 2010 04:34:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I4YpHL089047 for ; Mon, 18 Oct 2010 04:34:51 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I4YpQ4089046 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 04:34:51 GMT (envelope-from marcel@repoman.freebsd.org) Message-Id: <201010180434.o9I4YpQ4089046@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marcel@repoman.freebsd.org using -f From: Marcel Moolenaar Date: Mon, 18 Oct 2010 04:34:42 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 04:34:51 -0000 marcel 2010-10-18 04:34:42 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: SVN rev 214005 on 2010-10-18 04:34:42Z by marcel In vfs_filteropt(), only print the errmsg when there's no errmsg mount option. Otherwise errors tend to get printed multiple times. Revision Changes Path 1.324 +3 -1 src/sys/kern/vfs_mount.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 05:02:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 850801065784 for ; Mon, 18 Oct 2010 05:02:12 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7220B8FC13 for ; Mon, 18 Oct 2010 05:02:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I52C8A002019 for ; Mon, 18 Oct 2010 05:02:12 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I52CUk002018 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 05:02:12 GMT (envelope-from marcel@repoman.freebsd.org) Message-Id: <201010180502.o9I52CUk002018@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marcel@repoman.freebsd.org using -f From: Marcel Moolenaar Date: Mon, 18 Oct 2010 05:01:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_mountroot.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 05:02:12 -0000 marcel 2010-10-18 05:01:53 UTC FreeBSD src repository Modified files: sys/kern vfs_mountroot.c Log: SVN rev 214006 on 2010-10-18 05:01:53Z by marcel Re-implement the root mount logic using a recursive approach, whereby each root file system (starting with devfs and a synthesized configuration) can contain directives for mounting another file system as root. The old root file system is re-mounted under the new root file system (with /.mount or /mnt as the mount point) to allow access to the underlying file system. The configuration allows for creating vnode-backed memory disks that can subsequently be mounted as root. This allows for an efficient and low- cost way to distribute and boot FreeBSD software images that reside on some storage media. When trying a mount, the kernel will wait for the device in question to arrive. The timeout is configurable and is part of the configuration. This allows arbitrarily complex GEOM configurations to be constructed on the fly. A side-effect of this change is that all root specifications, whether compiled into the kernel or typed at the prompt can contain root mount options. Revision Changes Path 1.2 +740 -328 src/sys/kern/vfs_mountroot.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 05:10:28 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4243A106564A for ; Mon, 18 Oct 2010 05:10:28 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2E3248FC18 for ; Mon, 18 Oct 2010 05:10:28 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I5ASP0003702 for ; Mon, 18 Oct 2010 05:10:28 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I5ASiX003701 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 05:10:28 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010180510.o9I5ASiX003701@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Mon, 18 Oct 2010 05:09:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include pthread.h src/lib/libthr pthread.map src/lib/libthr/thread thr_private.h thr_rwlock.c thr_rwlockattr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 05:10:28 -0000 davidxu 2010-10-18 05:09:22 UTC FreeBSD src repository Modified files: include pthread.h lib/libthr pthread.map lib/libthr/thread thr_private.h thr_rwlock.c thr_rwlockattr.c Log: SVN rev 214007 on 2010-10-18 05:09:22Z by davidxu Add pthread_rwlockattr_setkind_np and pthread_rwlockattr_getkind_np, the functions set or get pthread_rwlock type, current supported types are: PTHREAD_RWLOCK_PREFER_READER_NP, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, PTHREAD_RWLOCK_PREFER_WRITER_NP, default is PTHREAD_RWLOCK_PREFER_WRITER_NONCECURSIVE_NP, this maintains binary compatible with old code. Revision Changes Path 1.46 +14 -2 src/include/pthread.h 1.38 +4 -0 src/lib/libthr/pthread.map 1.116 +3 -0 src/lib/libthr/thread/thr_private.h 1.18 +23 -2 src/lib/libthr/thread/thr_rwlock.c 1.3 +20 -0 src/lib/libthr/thread/thr_rwlockattr.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 05:15:49 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9B92106564A for ; Mon, 18 Oct 2010 05:15:49 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC9C18FC14 for ; Mon, 18 Oct 2010 05:15:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I5FnR3004086 for ; Mon, 18 Oct 2010 05:15:49 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I5Fn3X004085 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 05:15:49 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010180515.o9I5Fn3X004085@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Mon, 18 Oct 2010 05:15:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_rwlockattr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 05:15:49 -0000 davidxu 2010-10-18 05:15:26 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_rwlockattr.c Log: SVN rev 214008 on 2010-10-18 05:15:26Z by davidxu s/||/&& Revision Changes Path 1.4 +2 -2 src/lib/libthr/thread/thr_rwlockattr.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 05:16:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A77FF1065675 for ; Mon, 18 Oct 2010 05:16:55 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 41FF38FC23 for ; Mon, 18 Oct 2010 05:16:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I5GtnB004166 for ; Mon, 18 Oct 2010 05:16:55 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I5GtwJ004165 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 05:16:55 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010180516.o9I5GtwJ004165@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Mon, 18 Oct 2010 05:16:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr pthread.map X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 05:16:55 -0000 davidxu 2010-10-18 05:16:44 UTC FreeBSD src repository Modified files: lib/libthr pthread.map Log: SVN rev 214009 on 2010-10-18 05:16:44Z by davidxu sort function name. Revision Changes Path 1.39 +2 -2 src/lib/libthr/pthread.map From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 05:44:31 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 737291065670 for ; Mon, 18 Oct 2010 05:44:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 60D738FC08 for ; Mon, 18 Oct 2010 05:44:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I5iVZg006218 for ; Mon, 18 Oct 2010 05:44:31 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I5iV7Z006217 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 05:44:31 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010180544.o9I5iV7Z006217@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Mon, 18 Oct 2010 05:44:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/uudecode uudecode.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 05:44:31 -0000 edwin 2010-10-18 05:44:11 UTC FreeBSD src repository Modified files: usr.bin/uudecode uudecode.c Log: SVN rev 214010 on 2010-10-18 05:44:11Z by edwin "b64decode -r" did not handle arbitary breaks in base64 encoded data. White space should be accepted anywhere in a base64 encoded stream, not just after every chunk (4 characters). Test-scenario: VmVsb2NpdHkgUmV3YXJkcw== and VmVsb2NpdHkgUmV3YXJkcw == should both produce "Velocity Rewards" PR: bin/124739 Submitted by: Mark Andrews MFC after: 2 weeks Revision Changes Path 1.51 +31 -5 src/usr.bin/uudecode/uudecode.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 07:29:08 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10AFA106567A for ; Mon, 18 Oct 2010 07:29:08 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7C248FC08 for ; Mon, 18 Oct 2010 07:29:07 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I7T7ek021563 for ; Mon, 18 Oct 2010 07:29:07 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I7T7X7021562 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 07:29:07 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010180729.o9I7T7X7021562@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Mon, 18 Oct 2010 07:28:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ppp ipcp.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 07:29:08 -0000 glebius 2010-10-18 07:28:53 UTC FreeBSD src repository Modified files: usr.sbin/ppp ipcp.c Log: SVN rev 214011 on 2010-10-18 07:28:53Z by glebius Log if fopen() fails. Reviewed by: brian Revision Changes Path 1.126 +4 -1 src/usr.sbin/ppp/ipcp.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 08:36:16 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D06151065670 for ; Mon, 18 Oct 2010 08:36:16 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A32FA8FC08 for ; Mon, 18 Oct 2010 08:36:16 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I8aGGS027405 for ; Mon, 18 Oct 2010 08:36:16 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I8aG2T027404 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 08:36:16 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010180836.o9I8aG2T027404@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Mon, 18 Oct 2010 08:36:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mii brgphy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 08:36:16 -0000 marius 2010-10-18 08:36:03 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c Log: SVN rev 214012 on 2010-10-18 08:36:03Z by marius Revert r213867; while this driver really doesn't use any of the generic subroutines, at least mii_capabilities is used within itself. Revision Changes Path 1.94 +4 -0 src/sys/dev/mii/brgphy.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 08:56:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 982A1106566B for ; Mon, 18 Oct 2010 08:56:00 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 664A58FC12 for ; Mon, 18 Oct 2010 08:56:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I8u0Ql039792 for ; Mon, 18 Oct 2010 08:56:00 GMT (envelope-from mm@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I8u0px039789 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 08:56:00 GMT (envelope-from mm@repoman.freebsd.org) Message-Id: <201010180856.o9I8u0px039789@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mm@repoman.freebsd.org using -f From: Martin Matuska Date: Mon, 18 Oct 2010 08:54:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/cddl/contrib/opensolaris/cmd/zinject zinject.c src/cddl/contrib/opensolaris/cmd/zpool zpool_main.c src/cddl/contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_pool.c libzfs_util.c src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs dsl_scrub.c spa.c vdev.c vdev_disk.c vdev_label.c zfs_fm.c zil.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 08:56:00 -0000 mm 2010-10-18 08:54:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) cddl/contrib/opensolaris/cmd/zinject zinject.c cddl/contrib/opensolaris/cmd/zpool zpool_main.c cddl/contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_pool.c libzfs_util.c sys/cddl/contrib/opensolaris/uts/common/fs/zfs dsl_scrub.c spa.c vdev.c vdev_disk.c vdev_label.c zfs_fm.c zil.c zio.c zio_inject.c sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys vdev.h vdev_impl.h zfs_ioctl.h zil.h zio.h Log: SVN rev 214013 on 2010-10-18 08:54:33Z by mm MFC r213197, r213198: MFC r213197: Enable offlining of log devices. OpenSolaris revision and Bug IDs: 9701:cc5b64682e64 6803605 should be able to offline log devices 6726045 vdev_deflate_ratio is not set when offlining a log device 6599442 zpool import has faults in the display MFC r213198: Properly handle IO with B_FAILFAST Retry IO once with ZIO_FLAG_TRYHARD before declaring a pool faulted OpenSolaris revision and Bug IDs: 9725:0bf7402e8022 6843014 ZFS B_FAILFAST handling is broken As FreeBSD does not support B_FAILFAST and we don't use vdev_disk.c, MFC of r213198 is a no-op with the purpose of diff reduction against latest ZFS code and making future updates easier. Approved by: delphij (mentor) Obtained from: OpenSolaris (Bug ID 6803605, 6726045, 6599442, 6843014) Revision Changes Path 1.2.4.1 +6 -5 src/cddl/contrib/opensolaris/cmd/zinject/zinject.c 1.4.2.4 +220 -220 src/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c 1.6.2.5 +1 -0 src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h 1.3.2.4 +6 -0 src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c 1.6.2.2 +3 -0 src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c 1.1.4.5 +1 -1 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scrub.c 1.9.2.7 +38 -8 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c 1.3.2.3 +3 -2 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h 1.3.2.2 +1 -0 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h 1.4.2.2 +1 -1 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h 1.3.2.3 +1 -1 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h 1.3.2.5 +30 -27 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h 1.7.2.4 +90 -29 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c 1.3.2.2 +3 -2 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c 1.3.2.2 +27 -5 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c 1.6.2.2 +9 -0 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c 1.6.2.6 +36 -40 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c 1.8.2.7 +2 -1 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c 1.3.2.1 +8 -2 src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 09:26:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88FED1065693 for ; Mon, 18 Oct 2010 09:26:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7643D8FC0A for ; Mon, 18 Oct 2010 09:26:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I9QpRk043012 for ; Mon, 18 Oct 2010 09:26:51 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I9QpxR043011 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 09:26:51 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010180926.o9I9QpxR043011@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Mon, 18 Oct 2010 09:26:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/boot/zfs zfsimpl.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 09:26:51 -0000 pjd 2010-10-18 09:26:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/boot/zfs zfsimpl.c Log: SVN rev 214014 on 2010-10-18 09:26:39Z by pjd MFC r212382,r212383,r212384,r212387: r212382: Remove duplicated code. r212383: Allow to boot from a pool within which replacing is in progress. Before the change it wasn't possible and the following error was printed: ZFS: can only boot from disk, mirror or raidz vdevs Now if the original vdev (the one we are replacing) is still present we will read from it, but if it is not present we won't read from the new vdev, as it might not have enough valid data yet. r212384: Ignore log vdevs. r212387: Remove empty lines committed by accident. Revision Changes Path 1.5.4.9 +47 -23 src/sys/boot/zfs/zfsimpl.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 09:44:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9605A106566B for ; Mon, 18 Oct 2010 09:44:42 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 68F0A8FC0C for ; Mon, 18 Oct 2010 09:44:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9I9ig3K044321 for ; Mon, 18 Oct 2010 09:44:42 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9I9igvm044320 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 09:44:42 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010180944.o9I9igvm044320@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Mon, 18 Oct 2010 09:44:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/include namespace.h un-namespace.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 09:44:42 -0000 davidxu 2010-10-18 09:44:21 UTC FreeBSD src repository Modified files: lib/libc/include namespace.h un-namespace.h Log: SVN rev 214015 on 2010-10-18 09:44:21Z by davidxu Unbreak buildworld by including pthread_rwlockattr_setkind_np and pthread_rwlockattr_getkind_np. Revision Changes Path 1.26 +2 -0 src/lib/libc/include/namespace.h 1.23 +2 -0 src/lib/libc/include/un-namespace.h From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 11:30:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E13310656A4 for ; Mon, 18 Oct 2010 11:30:45 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1E2F88FC15 for ; Mon, 18 Oct 2010 11:30:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IBUjc8054365 for ; Mon, 18 Oct 2010 11:30:45 GMT (envelope-from mav@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IBUjYj054364 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 11:30:45 GMT (envelope-from mav@repoman.freebsd.org) Message-Id: <201010181130.o9IBUjYj054364@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mav@repoman.freebsd.org using -f From: Alexander Motin Date: Mon, 18 Oct 2010 11:30:13 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/arm/mv mv_sata.c src/sys/dev/ata ata-all.c ata-all.h ata-pci.c ata-sata.c src/sys/dev/ata/chipsets ata-ahci.c ata-intel.c ata-marvell.c ata-nvidia.c ata-promise.c ata-siliconimage.c ata-via.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 11:30:45 -0000 mav 2010-10-18 11:30:13 UTC FreeBSD src repository Modified files: sys/arm/mv mv_sata.c sys/dev/ata ata-all.c ata-all.h ata-pci.c ata-sata.c sys/dev/ata/chipsets ata-ahci.c ata-intel.c ata-marvell.c ata-nvidia.c ata-promise.c ata-siliconimage.c ata-via.c Log: SVN rev 214016 on 2010-10-18 11:30:13Z by mav Set of legacy mode SATA enchancements: - Implement proper combined mode decoding for Intel controllers to properly identify SATA and PATA channels and associate ATA channels with SATA ports. This fixes wrong reporting and in some cases hard resets to wrong SATA ports. - Improve SATA registers support to handle hot-plug events and potentially interface errors. For ICH5/6300ESB chipsets these registers accessible via PCI config space. For later ones they may be accessible via PCI BAR(5). - For controllers not generating interrupts on hot-plug events, implement periodic status polling. Use it to detect hot-plug on Intel and VIA controllers. Same probably could also be used for Serverworks and SIS. Revision Changes Path 1.8 +1 -1 src/sys/arm/mv/mv_sata.c 1.327 +21 -0 src/sys/dev/ata/ata-all.c 1.158 +3 -8 src/sys/dev/ata/ata-all.h 1.154 +1 -0 src/sys/dev/ata/ata-pci.c 1.10 +36 -55 src/sys/dev/ata/ata-sata.c 1.35 +39 -1 src/sys/dev/ata/chipsets/ata-ahci.c 1.20 +318 -88 src/sys/dev/ata/chipsets/ata-intel.c 1.22 +1 -1 src/sys/dev/ata/chipsets/ata-marvell.c 1.14 +1 -1 src/sys/dev/ata/chipsets/ata-nvidia.c 1.21 +38 -0 src/sys/dev/ata/chipsets/ata-promise.c 1.19 +40 -2 src/sys/dev/ata/chipsets/ata-siliconimage.c 1.13 +13 -2 src/sys/dev/ata/chipsets/ata-via.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 12:12:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F91C1065693 for ; Mon, 18 Oct 2010 12:12:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 030228FC18 for ; Mon, 18 Oct 2010 12:12:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ICCorM058715 for ; Mon, 18 Oct 2010 12:12:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9ICCo67058714 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 12:12:50 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010181212.o9ICCo67058714@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Mon, 18 Oct 2010 12:12:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/cddl/boot/zfs zfsimpl.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 12:12:51 -0000 pjd 2010-10-18 12:12:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/cddl/boot/zfs zfsimpl.h Log: SVN rev 214017 on 2010-10-18 12:12:38Z by pjd MFC r212407: Forgot to commit this file. Add ZPOOL_CONFIG_IS_LOG. Reported by: keramida, dhw Revision Changes Path 1.4.4.6 +1 -0 src/sys/cddl/boot/zfs/zfsimpl.h From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 12:35:26 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F5271065672 for ; Mon, 18 Oct 2010 12:35:26 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 72D7F8FC12 for ; Mon, 18 Oct 2010 12:35:26 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ICZQMF060378 for ; Mon, 18 Oct 2010 12:35:26 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9ICZQH2060377 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 12:35:26 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010181235.o9ICZQH2060377@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Mon, 18 Oct 2010 12:35:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libradius Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 12:35:26 -0000 pjd 2010-10-18 12:35:10 UTC FreeBSD src repository Modified files: lib/libradius Makefile Log: SVN rev 214018 on 2010-10-18 12:35:10Z by pjd Add links for libradius(3) functions. Revision Changes Path 1.18 +33 -0 src/lib/libradius/Makefile From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 12:36:03 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EE37106564A for ; Mon, 18 Oct 2010 12:36:03 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 02B028FC1F for ; Mon, 18 Oct 2010 12:36:03 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9ICa2fU060431 for ; Mon, 18 Oct 2010 12:36:02 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9ICa2cX060430 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 12:36:02 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010181236.o9ICa2cX060430@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Mon, 18 Oct 2010 12:35:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 12:36:03 -0000 pjd 2010-10-18 12:35:48 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Log: SVN rev 214019 on 2010-10-18 12:35:48Z by pjd Update links for taskqueue(9) functions. Revision Changes Path 1.377 +7 -1 src/share/man/man9/Makefile From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 14:13:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD10B1065670 for ; Mon, 18 Oct 2010 14:13:39 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 911FF8FC13 for ; Mon, 18 Oct 2010 14:13:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IEDdes080807 for ; Mon, 18 Oct 2010 14:13:39 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IEDdJI080806 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 14:13:39 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010181413.o9IEDdJI080806@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Mon, 18 Oct 2010 14:13:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 nxge.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 14:13:39 -0000 pluknet 2010-10-18 14:13:19 UTC FreeBSD src repository Modified files: share/man/man4 nxge.4 Log: SVN rev 214020 on 2010-10-18 14:13:19Z by pluknet Fix typo: Offlaod -> Offload. PR: docs/150756 Approved by: avg (mentor) MFC after: 3 days Revision Changes Path 1.6 +1 -1 src/share/man/man4/nxge.4 From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 14:26:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BED661065674 for ; Mon, 18 Oct 2010 14:26:45 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 940228FC0A for ; Mon, 18 Oct 2010 14:26:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IEQjnr081749 for ; Mon, 18 Oct 2010 14:26:45 GMT (envelope-from brucec@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IEQjwi081748 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 14:26:45 GMT (envelope-from brucec@repoman.freebsd.org) Message-Id: <201010181426.o9IEQjwi081748@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to brucec@repoman.freebsd.org using -f From: Bruce Cran Date: Mon, 18 Oct 2010 14:26:29 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire fwohci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 14:26:45 -0000 brucec 2010-10-18 14:26:29 UTC FreeBSD src repository Modified files: sys/dev/firewire fwohci.c Log: SVN rev 214021 on 2010-10-18 14:26:29Z by brucec Fix grammar. Revision Changes Path 1.99 +2 -2 src/sys/dev/firewire/fwohci.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 14:35:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A69010656A4 for ; Mon, 18 Oct 2010 14:35:36 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4DC858FC15 for ; Mon, 18 Oct 2010 14:35:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IEZarN082467 for ; Mon, 18 Oct 2010 14:35:36 GMT (envelope-from brucec@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IEZa3B082466 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 14:35:36 GMT (envelope-from brucec@repoman.freebsd.org) Message-Id: <201010181435.o9IEZa3B082466@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to brucec@repoman.freebsd.org using -f From: Bruce Cran Date: Mon, 18 Oct 2010 14:35:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/netcat nc.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 14:35:36 -0000 brucec 2010-10-18 14:35:21 UTC FreeBSD src repository Modified files: contrib/netcat nc.1 Log: SVN rev 214022 on 2010-10-18 14:35:21Z by brucec Remove extra word, which looks like a left-over from a deleted sentence. Revision Changes Path 1.19 +0 -1 src/contrib/netcat/nc.1 From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 14:41:02 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 801441065674 for ; Mon, 18 Oct 2010 14:41:02 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5380A8FC13 for ; Mon, 18 Oct 2010 14:41:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IEf2lp082877 for ; Mon, 18 Oct 2010 14:41:02 GMT (envelope-from jh@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IEf2le082876 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 14:41:02 GMT (envelope-from jh@repoman.freebsd.org) Message-Id: <201010181441.o9IEf2le082876@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jh@repoman.freebsd.org using -f From: Jaakko Heinonen Date: Mon, 18 Oct 2010 14:40:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sbin/mount mount.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 14:41:02 -0000 jh 2010-10-18 14:40:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sbin/mount mount.c Log: SVN rev 214024 on 2010-10-18 14:40:48Z by jh MFC r213298: Fix printing of the "rw" mount option in fstab(5) format (-p option). fstab(5) format requires that one of "rw", "rq" or "ro" is always specified. PR: bin/123021 Revision Changes Path 1.96.2.4 +12 -12 src/sbin/mount/mount.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 15:47:08 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDB481065674 for ; Mon, 18 Oct 2010 15:47:08 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B062E8FC21 for ; Mon, 18 Oct 2010 15:47:08 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IFl8F9089377 for ; Mon, 18 Oct 2010 15:47:08 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IFl8YT089376 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 15:47:08 GMT (envelope-from emaste@repoman.freebsd.org) Message-Id: <201010181547.o9IFl8YT089376@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emaste@repoman.freebsd.org using -f From: Ed Maste Date: Mon, 18 Oct 2010 15:46:58 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_resource.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 15:47:08 -0000 emaste 2010-10-18 15:46:58 UTC FreeBSD src repository Modified files: sys/kern kern_resource.c Log: SVN rev 214025 on 2010-10-18 15:46:58Z by emaste We've already set p = td->td_proc, so use it. Revision Changes Path 1.204 +4 -4 src/sys/kern/kern_resource.c From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 19:07:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B245106566B for ; Mon, 18 Oct 2010 19:07:00 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 77B408FC13 for ; Mon, 18 Oct 2010 19:07:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IJ70D6019539 for ; Mon, 18 Oct 2010 19:07:00 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IJ70PX019538 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 19:07:00 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201010181907.o9IJ70PX019538@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Mon, 18 Oct 2010 19:06:46 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs.h nfs_bio.c nfs_nfsiod.c nfsnode.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 19:07:00 -0000 kib 2010-10-18 19:06:46 UTC FreeBSD src repository Modified files: sys/nfsclient nfs.h nfs_bio.c nfs_nfsiod.c nfsnode.h Log: SVN rev 214026 on 2010-10-18 19:06:46Z by kib Do not synchronously start the nfsiod threads at all. The r212506 fixed the issues with file descriptor locks, but the same problems are present for vnode lock/user map lock. If the nfs_asyncio() cannot find the free nfsiod, schedule task to create new nfsiod and return error. This causes fall back to the synchronous i/o for nfs_strategy(), or does not start read at all in the case of readahead. The caller that holds vnode and potentially user map lock does not wait for kproc_create() to finish, preventing the LORs. The change effectively reverts r203072, because we never hand off the request to newly created nfsiod thread anymore. Reviewed by: jhb Tested by: jhb, pluknet MFC after: 3 weeks Revision Changes Path 1.113 +1 -1 src/sys/nfsclient/nfs.h 1.188 +9 -17 src/sys/nfsclient/nfs_bio.c 1.99 +37 -58 src/sys/nfsclient/nfs_nfsiod.c 1.71 +1 -4 src/sys/nfsclient/nfsnode.h From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 19:15:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94AF810656C7 for ; Mon, 18 Oct 2010 19:15:21 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 696DA8FC19 for ; Mon, 18 Oct 2010 19:15:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9IJFL78020302 for ; Mon, 18 Oct 2010 19:15:21 GMT (envelope-from culot@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9IJFLfk020301 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 19:15:21 GMT (envelope-from culot@repoman.freebsd.org) Message-Id: <201010181915.o9IJFLfk020301@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to culot@repoman.freebsd.org using -f From: Frederic Culot Date: Mon, 18 Oct 2010 19:14:59 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 19:15:21 -0000 culot 2010-10-18 19:14:59 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: SVN rev 214027 on 2010-10-18 19:14:59Z by culot Replace spaces by a tab after the date. Reported by: gavin@, brucec@ Approved by: sahil@ (mentor) Revision Changes Path 1.273 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 23:10:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA71210657C1 for ; Mon, 18 Oct 2010 23:10:42 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A8BBD8FC21 for ; Mon, 18 Oct 2010 23:10:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9INAg3P052244 for ; Mon, 18 Oct 2010 23:10:42 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9INAgV5052243 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 23:10:42 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010182310.o9INAgV5052243@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Mon, 18 Oct 2010 23:10:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/tools/regression/bin/sh/builtins break3.0 command10.0 command3.0 command4.0 command4.127 command5.0 command9.0 src/tools/regression/bin/sh/errors backquote-error1.0 src/tools/regression/bin/sh/execution func2.0 src/tools/regression/bin/sh/expansion ifs3.0 ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 23:10:42 -0000 obrien 2010-10-18 23:10:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) tools/regression/bin/sh/builtins command3.0 command5.0 tools/regression/bin/sh/errors backquote-error1.0 tools/regression/bin/sh/execution func2.0 tools/regression/bin/sh/set-e elif1.0 elif2.0 if1.0 if3.0 while1.0 while2.0 Added files: (Branch: RELENG_8) tools/regression/bin/sh/builtins break3.0 command10.0 command4.0 command9.0 tools/regression/bin/sh/expansion ifs3.0 Removed files: (Branch: RELENG_8) tools/regression/bin/sh/builtins command4.127 Log: SVN rev 214045 on 2010-10-18 23:10:32Z by obrien MFC: r199955: disable job control when running 'sh -i' in the testsuite r204801: make sure to popredir() even if a special builtin caused an error r204802: make sure to popredir() even if a function caused an error r211399: get rid of unnecessary non-standard empty lists. r211609: add a test for breaking from a loop outside the current function r211622: test that all bytes from 128 to 255 can be used in IFS r211973: weaken builtins/command4 test to only require a non-0 exit status Revision Changes Path 1.1.2.2 +15 -0 src/tools/regression/bin/sh/builtins/break3.0 (new) 1.1.2.2 +14 -0 src/tools/regression/bin/sh/builtins/command10.0 (new) 1.1.10.2 +1 -0 src/tools/regression/bin/sh/builtins/command3.0 1.1.2.2 +2 -0 src/tools/regression/bin/sh/builtins/command4.0 (new) 1.1.10.2 +0 -2 src/tools/regression/bin/sh/builtins/command4.127 (dead) 1.1.10.2 +1 -0 src/tools/regression/bin/sh/builtins/command5.0 1.1.2.2 +14 -0 src/tools/regression/bin/sh/builtins/command9.0 (new) 1.1.2.2 +1 -1 src/tools/regression/bin/sh/errors/backquote-error1.0 1.1.2.3 +1 -0 src/tools/regression/bin/sh/execution/func2.0 1.1.2.2 +21 -0 src/tools/regression/bin/sh/expansion/ifs3.0 (new) 1.1.10.2 +2 -0 src/tools/regression/bin/sh/set-e/elif1.0 1.1.10.2 +2 -0 src/tools/regression/bin/sh/set-e/elif2.0 1.1.10.2 +1 -0 src/tools/regression/bin/sh/set-e/if1.0 1.2.10.2 +1 -0 src/tools/regression/bin/sh/set-e/if3.0 1.1.10.2 +1 -0 src/tools/regression/bin/sh/set-e/while1.0 1.1.10.2 +1 -0 src/tools/regression/bin/sh/set-e/while2.0 From owner-cvs-src-old@FreeBSD.ORG Mon Oct 18 23:38:18 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93D141065670 for ; Mon, 18 Oct 2010 23:38:18 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66A338FC1A for ; Mon, 18 Oct 2010 23:38:18 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9INcI18054199 for ; Mon, 18 Oct 2010 23:38:18 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9INcIBg054198 for cvs-src-old@freebsd.org; Mon, 18 Oct 2010 23:38:18 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010182338.o9INcIBg054198@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Mon, 18 Oct 2010 23:37:56 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_rwlockattr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2010 23:38:18 -0000 davidxu 2010-10-18 23:37:56 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_rwlockattr.c Log: SVN rev 214046 on 2010-10-18 23:37:56Z by davidxu Set default type to PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, this is the type we are using. Revision Changes Path 1.5 +1 -0 src/lib/libthr/thread/thr_rwlockattr.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 00:03:52 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47B401065694 for ; Tue, 19 Oct 2010 00:03:52 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 340678FC0C for ; Tue, 19 Oct 2010 00:03:52 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9J03qC5057182 for ; Tue, 19 Oct 2010 00:03:52 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9J03q8J057181 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 00:03:52 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010190003.o9J03q8J057181@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Tue, 19 Oct 2010 00:01:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/netcat nc.1 netcat.c socks.c src/usr.bin/nc Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 00:03:52 -0000 delphij 2010-10-19 00:01:53 UTC FreeBSD src repository Modified files: contrib/netcat nc.1 netcat.c socks.c usr.bin/nc Makefile Log: SVN rev 214047 on 2010-10-19 00:01:53Z by delphij MFV: nc(1) from OpenBSD 4.8. While I'm there, bump WARNS level to 2 as the vendor have the right printf format string now. MFC after: 1 month Obtained from: OpenBSD Revision Changes Path 1.20 +7 -5 src/contrib/netcat/nc.1 1.15 +15 -17 src/contrib/netcat/netcat.c 1.2 +195 -104 src/contrib/netcat/socks.c 1.5 +1 -1 src/usr.bin/nc/Makefile From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 00:20:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D91C1065696 for ; Tue, 19 Oct 2010 00:20:38 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD4F8FC1C for ; Tue, 19 Oct 2010 00:20:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9J0Kc14058946 for ; Tue, 19 Oct 2010 00:20:38 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9J0KcjX058945 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 00:20:38 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010190020.o9J0KcjX058945@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Tue, 19 Oct 2010 00:20:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfsclient nfs_clnode.c nfs_clvfsops.c nfs_clvnops.c nfsmount.h src/sys/nfs nfs_lock.c nfs_lock.h nfs_mountcommon.h src/sys/nfsclient nfs_node.c nfs_vfsops.c nfs_vnops.c nfsmount.h nfsnode.h src/sys/nlm nlm_advlock.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 00:20:38 -0000 rmacklem 2010-10-19 00:20:00 UTC FreeBSD src repository Modified files: sys/fs/nfsclient nfs_clnode.c nfs_clvfsops.c nfs_clvnops.c nfsmount.h sys/nfs nfs_lock.c nfs_lock.h sys/nfsclient nfs_node.c nfs_vfsops.c nfs_vnops.c nfsmount.h nfsnode.h sys/nlm nlm_advlock.c nlm_prot_impl.c Added files: sys/nfs nfs_mountcommon.h Log: SVN rev 214048 on 2010-10-19 00:20:00Z by rmacklem Modify the NFS clients and the NLM so that the NLM can be used by both clients. Since the NLM uses various fields of the nfsmount structure, those fields were extracted and put in a separate nfs_mountcommon structure stored in sys/nfs/nfs_mountcommon.h. This structure also has a function pointer for a function that extracts the required information from the mount point and nfs vnode for that particular client, for information stored differently by the clients. Reviewed by: jhb MFC after: 2 weeks Revision Changes Path 1.9 +5 -3 src/sys/fs/nfsclient/nfs_clnode.c 1.12 +40 -4 src/sys/fs/nfsclient/nfs_clvfsops.c 1.29 +2 -3 src/sys/fs/nfsclient/nfs_clvnops.c 1.4 +11 -6 src/sys/fs/nfsclient/nfsmount.h 1.16 +7 -5 src/sys/nfs/nfs_lock.c 1.4 +2 -0 src/sys/nfs/nfs_lock.h 1.1 +51 -0 src/sys/nfs/nfs_mountcommon.h (new) 1.96 +2 -0 src/sys/nfsclient/nfs_node.c 1.236 +27 -0 src/sys/nfsclient/nfs_vfsops.c 1.334 +0 -2 src/sys/nfsclient/nfs_vnops.c 1.40 +14 -7 src/sys/nfsclient/nfsmount.h 1.72 +0 -3 src/sys/nfsclient/nfsnode.h 1.10 +5 -10 src/sys/nlm/nlm_advlock.c 1.24 +2 -2 src/sys/nlm/nlm_prot_impl.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 08:55:50 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37A64106566B for ; Tue, 19 Oct 2010 08:55:50 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0A7A38FC17 for ; Tue, 19 Oct 2010 08:55:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9J8tnZQ039140 for ; Tue, 19 Oct 2010 08:55:49 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9J8tnEr039139 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 08:55:49 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201010190855.o9J8tnEr039139@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Tue, 19 Oct 2010 08:55:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsserver nfs_serv.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 08:55:50 -0000 kib 2010-10-19 08:55:31 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_serv.c Log: SVN rev 214049 on 2010-10-19 08:55:31Z by kib When readdirplus() is handled on the exported filesystem that does not support VFS_VGET, like msdosfs, do not call VOP_LOOKUP() for dotdot on the root directory. Our filesystems expect that VFS handles dotdot lookups on root on its own. Reported and tested by: kevlo MFC after: 2 weeks Revision Changes Path 1.201 +13 -12 src/sys/nfsserver/nfs_serv.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 09:26:25 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE81A106566B for ; Tue, 19 Oct 2010 09:26:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 815BB8FC16 for ; Tue, 19 Oct 2010 09:26:25 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9J9QPXA042322 for ; Tue, 19 Oct 2010 09:26:25 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9J9QPrB042321 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 09:26:25 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201010190926.o9J9QPrB042321@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Tue, 19 Oct 2010 09:25:58 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/compat/linprocfs linprocfs.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 09:26:25 -0000 kib 2010-10-19 09:25:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/compat/linprocfs linprocfs.c Log: SVN rev 214050 on 2010-10-19 09:25:58Z by kib MFC r212723 (by des): Implement proc/$$/environment. MFC r213246: Rework linprocfs_doprocenviron() and linprocfs_doproccmdline(). Revision Changes Path 1.142.2.3 +169 -41 src/sys/compat/linprocfs/linprocfs.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 10:51:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7549E1065672 for ; Tue, 19 Oct 2010 10:51:37 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4974E8FC12 for ; Tue, 19 Oct 2010 10:51:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JApbcV049561 for ; Tue, 19 Oct 2010 10:51:37 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JApbtL049560 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 10:51:37 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010191051.o9JApbtL049560@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Tue, 19 Oct 2010 10:51:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man4 ata.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 10:51:37 -0000 pluknet 2010-10-19 10:51:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man4 ata.4 Log: SVN rev 214051 on 2010-10-19 10:51:18Z by pluknet MFC r213514: Wrap lines for SiS and Promise entries to 80 columns. PR: docs/146195 Approved by: avg (mentor) Revision Changes Path 1.79.2.6 +8 -2 src/share/man/man4/ata.4 From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 10:57:13 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7B501065743 for ; Tue, 19 Oct 2010 10:57:13 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AADA08FC14 for ; Tue, 19 Oct 2010 10:57:13 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JAvDDB049995 for ; Tue, 19 Oct 2010 10:57:13 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JAvDiu049994 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 10:57:13 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010191057.o9JAvDiu049994@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Tue, 19 Oct 2010 10:56:56 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/share/man/man4 ata.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 10:57:13 -0000 pluknet 2010-10-19 10:56:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) share/man/man4 ata.4 Log: SVN rev 214052 on 2010-10-19 10:56:56Z by pluknet MFC r213514: Wrap lines for SiS and Promise entries to 80 columns. PR: docs/146195 Approved by: avg (mentor) Revision Changes Path 1.74.2.3 +8 -2 src/share/man/man4/ata.4 From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 11:56:29 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4154106566B for ; Tue, 19 Oct 2010 11:56:29 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9044D8FC1C for ; Tue, 19 Oct 2010 11:56:29 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JBuTjW055354 for ; Tue, 19 Oct 2010 11:56:29 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JBuTmo055353 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 11:56:29 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010191156.o9JBuTmo055353@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Tue, 19 Oct 2010 11:55:58 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfsclient nfs_clvfsops.c src/sys/nfs nfs_mountcommon.h src/sys/nfsclient nfs_vfsops.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 11:56:29 -0000 rmacklem 2010-10-19 11:55:58 UTC FreeBSD src repository Modified files: sys/fs/nfsclient nfs_clvfsops.c sys/nfs nfs_mountcommon.h sys/nfsclient nfs_vfsops.c Log: SVN rev 214053 on 2010-10-19 11:55:58Z by rmacklem Fix the type of the 3rd argument for nm_getinfo so that it works for architectures like sparc64. Suggested by: kib MFC after: 2 weeks Revision Changes Path 1.13 +3 -3 src/sys/fs/nfsclient/nfs_clvfsops.c 1.2 +1 -1 src/sys/nfs/nfs_mountcommon.h 1.237 +3 -3 src/sys/nfsclient/nfs_vfsops.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 12:36:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEEF8106564A for ; Tue, 19 Oct 2010 12:36:38 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9EB258FC18 for ; Tue, 19 Oct 2010 12:36:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JCackI059376 for ; Tue, 19 Oct 2010 12:36:38 GMT (envelope-from uqs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JCacjr059375 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 12:36:38 GMT (envelope-from uqs@repoman.freebsd.org) Message-Id: <201010191236.o9JCacjr059375@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to uqs@repoman.freebsd.org using -f From: Ulrich Spoerlein Date: Tue, 19 Oct 2010 12:35:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/bsnmp/lib bsnmplib.3 src/libexec/bootpd bootptab.5 src/sbin/routed routed.8 src/sbin/setkey setkey.8 src/sbin/sunlabel sunlabel.8 src/share/man/man4/man4.arm mge.4 src/share/man/man4/man4.i386 ep.4 mse.4 ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 12:36:38 -0000 uqs 2010-10-19 12:35:40 UTC FreeBSD src repository Modified files: contrib/bsnmp/lib bsnmplib.3 libexec/bootpd bootptab.5 sbin/routed routed.8 sbin/setkey setkey.8 sbin/sunlabel sunlabel.8 share/man/man4/man4.arm mge.4 share/man/man4/man4.i386 ep.4 mse.4 share/man/man4/man4.powerpc tsec.4 share/man/man5 freebsd-update.conf.5 sys/netinet/libalias libalias.3 usr.sbin/apmd apmd.8 usr.sbin/gpioctl gpioctl.8 Log: SVN rev 214054 on 2010-10-19 12:35:40Z by uqs mdoc: drop even more redundant .Pp calls No change in rendered output, less mandoc lint warnings. Tool provided by: Nobuyuki Koganemaru n-kogane at syd.odn.ne.jp Revision Changes Path 1.3 +0 -1 src/contrib/bsnmp/lib/bsnmplib.3 1.12 +0 -1 src/libexec/bootpd/bootptab.5 1.36 +0 -1 src/sbin/routed/routed.8 1.42 +0 -4 src/sbin/setkey/setkey.8 1.9 +0 -1 src/sbin/sunlabel/sunlabel.8 1.2 +0 -2 src/share/man/man4/man4.arm/mge.4 1.47 +0 -2 src/share/man/man4/man4.i386/ep.4 1.22 +0 -1 src/share/man/man4/man4.i386/mse.4 1.2 +0 -2 src/share/man/man4/man4.powerpc/tsec.4 1.6 +0 -1 src/share/man/man5/freebsd-update.conf.5 1.59 +0 -1 src/sys/netinet/libalias/libalias.3 1.24 +0 -2 src/usr.sbin/apmd/apmd.8 1.2 +0 -1 src/usr.sbin/gpioctl/gpioctl.8 From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 13:06:44 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2B601065670 for ; Tue, 19 Oct 2010 13:06:44 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A5CDB8FC0C for ; Tue, 19 Oct 2010 13:06:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JD6i9u073546 for ; Tue, 19 Oct 2010 13:06:44 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JD6iNW073545 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 13:06:44 GMT (envelope-from emaste@repoman.freebsd.org) Message-Id: <201010191306.o9JD6iNW073545@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emaste@repoman.freebsd.org using -f From: Ed Maste Date: Tue, 19 Oct 2010 13:06:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/lib/libgeom geom_xml2tree.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 13:06:44 -0000 emaste 2010-10-19 13:06:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) lib/libgeom geom_xml2tree.c Log: SVN rev 214055 on 2010-10-19 13:06:26Z by emaste MFC r213451: Handle null return from XML_ParserCreate and fix a few memory leaks on error conditions. Revision Changes Path 1.7.2.3 +10 -4 src/lib/libgeom/geom_xml2tree.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 13:31:50 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E6C2106566C for ; Tue, 19 Oct 2010 13:31:50 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 61B7A8FC13 for ; Tue, 19 Oct 2010 13:31:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JDVosV075363 for ; Tue, 19 Oct 2010 13:31:50 GMT (envelope-from rpaulo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JDVoU8075362 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 13:31:50 GMT (envelope-from rpaulo@repoman.freebsd.org) Message-Id: <201010191331.o9JDVoU8075362@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rpaulo@repoman.freebsd.org using -f From: Rui Paulo Date: Tue, 19 Oct 2010 13:31:43 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/wlan Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 13:31:50 -0000 rpaulo 2010-10-19 13:31:43 UTC FreeBSD src repository Modified files: sys/modules/wlan Makefile Log: SVN rev 214056 on 2010-10-19 13:31:43Z by rpaulo Revert r206418 Revision Changes Path 1.22 +2 -2 src/sys/modules/wlan/Makefile From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 14:09:41 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2EBC1065742 for ; Tue, 19 Oct 2010 14:09:41 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4988FC08 for ; Tue, 19 Oct 2010 14:09:41 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JE9fTv079094 for ; Tue, 19 Oct 2010 14:09:41 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JE9fnB079093 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 14:09:41 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010191409.o9JE9fnB079093@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Tue, 19 Oct 2010 14:09:17 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/tools/tools/netrate/juggle juggle.c src/tools/tools/netrate/tcpconnect tcpconnect.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 14:09:41 -0000 pluknet 2010-10-19 14:09:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) tools/tools/netrate/juggle juggle.c tools/tools/netrate/tcpconnect tcpconnect.c Log: SVN rev 214057 on 2010-10-19 14:09:17Z by pluknet MFC r213574: - tcpconnect incorrectly uses err() in usage() with errx() semantics [1] - 64-bit aware fixes in printf() usage [2] o netrate/juggle: time_t has arch-dependent size o netrate/tcpconnect: don't assume %ll has always 64bit. PR: 146088 [1], 146086 [2] (modified) Approved by: kib (mentor) Revision Changes Path 1.2.10.2 +7 -3 src/tools/tools/netrate/juggle/juggle.c 1.1.10.2 +4 -3 src/tools/tools/netrate/tcpconnect/tcpconnect.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 14:12:02 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 802C3106566C for ; Tue, 19 Oct 2010 14:12:02 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6CB228FC0A for ; Tue, 19 Oct 2010 14:12:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JEC2U1079367 for ; Tue, 19 Oct 2010 14:12:02 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JEC2Jk079366 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 14:12:02 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010191412.o9JEC2Jk079366@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Tue, 19 Oct 2010 14:11:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/tools/tools/netrate/juggle juggle.c src/tools/tools/netrate/tcpconnect tcpconnect.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 14:12:02 -0000 pluknet 2010-10-19 14:11:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) tools/tools/netrate/juggle juggle.c tools/tools/netrate/tcpconnect tcpconnect.c Log: SVN rev 214058 on 2010-10-19 14:11:50Z by pluknet MFC r213574: - tcpconnect incorrectly uses err() in usage() with errx() semantics [1] - 64-bit aware fixes in printf() usage [2] o netrate/juggle: time_t has arch-dependent size o netrate/tcpconnect: don't assume %ll has always 64bit. PR: 146088 [1], 146086 [2] (modified) Approved by: kib (mentor) Revision Changes Path 1.2.2.2 +7 -3 src/tools/tools/netrate/juggle/juggle.c 1.1.2.1 +4 -3 src/tools/tools/netrate/tcpconnect/tcpconnect.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 15:12:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BECED1065674 for ; Tue, 19 Oct 2010 15:12:38 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9158B8FC18 for ; Tue, 19 Oct 2010 15:12:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JFCcA8084804 for ; Tue, 19 Oct 2010 15:12:38 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JFCctD084803 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 15:12:38 GMT (envelope-from emaste@repoman.freebsd.org) Message-Id: <201010191512.o9JFCctD084803@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emaste@repoman.freebsd.org using -f From: Ed Maste Date: Tue, 19 Oct 2010 15:12:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend-query sys-mem.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 15:12:38 -0000 emaste 2010-10-19 15:12:16 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend-query sys-mem.sh Log: SVN rev 214059 on 2010-10-19 15:12:16Z by emaste Minor cleanup, including sysctl -n instead of sed to remove the sysctl name. Reviewed by: imp Revision Changes Path 1.3 +1 -4 src/usr.sbin/pc-sysinstall/backend-query/sys-mem.sh From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 15:18:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7100E1065675 for ; Tue, 19 Oct 2010 15:18:59 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 439D88FC12 for ; Tue, 19 Oct 2010 15:18:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JFIxjV085217 for ; Tue, 19 Oct 2010 15:18:59 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JFIx8d085216 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 15:18:59 GMT (envelope-from emaste@repoman.freebsd.org) Message-Id: <201010191518.o9JFIx8d085216@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emaste@repoman.freebsd.org using -f From: Ed Maste Date: Tue, 19 Oct 2010 15:18:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend-query list-tzones.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 15:18:59 -0000 emaste 2010-10-19 15:18:40 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend-query list-tzones.sh Log: SVN rev 214060 on 2010-10-19 15:18:40Z by emaste Simplify and significantly speed up the timezone listing backend script. Reviewed by: imp Revision Changes Path 1.3 +4 -13 src/usr.sbin/pc-sysinstall/backend-query/list-tzones.sh From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 15:26:20 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC0C01065670 for ; Tue, 19 Oct 2010 15:26:20 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7F4E48FC0C for ; Tue, 19 Oct 2010 15:26:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JFQK6U085810 for ; Tue, 19 Oct 2010 15:26:20 GMT (envelope-from uqs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JFQKBl085809 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 15:26:20 GMT (envelope-from uqs@repoman.freebsd.org) Message-Id: <201010191526.o9JFQKBl085809@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to uqs@repoman.freebsd.org using -f From: Ulrich Spoerlein Date: Tue, 19 Oct 2010 15:26:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 vrele.9 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 15:26:20 -0000 uqs 2010-10-19 15:26:08 UTC FreeBSD src repository Modified files: share/man/man9 vrele.9 Log: SVN rev 214061 on 2010-10-19 15:26:08Z by uqs mdoc: fix markup typo MFC after: 1 week (together with r213983) Revision Changes Path 1.16 +1 -1 src/share/man/man9/vrele.9 From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 16:07:18 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0027106566B for ; Tue, 19 Oct 2010 16:07:18 +0000 (UTC) (envelope-from mdf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C2DA88FC19 for ; Tue, 19 Oct 2010 16:07:18 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JG7IB4089745 for ; Tue, 19 Oct 2010 16:07:18 GMT (envelope-from mdf@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JG7I5q089744 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 16:07:18 GMT (envelope-from mdf@repoman.freebsd.org) Message-Id: <201010191607.o9JG7I5q089744@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mdf@repoman.freebsd.org using -f From: Matthew D Fleming Date: Tue, 19 Oct 2010 16:06:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 zone.9 src/sys/vm uma_core.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 16:07:19 -0000 mdf 2010-10-19 16:06:00 UTC FreeBSD src repository Modified files: share/man/man9 zone.9 sys/vm uma_core.c Log: SVN rev 214062 on 2010-10-19 16:06:00Z by mdf uma_zfree(zone, NULL) should do nothing, to match free(9). Noticed by: Ron Steinke MFC after: 3 days Revision Changes Path 1.32 +7 -0 src/share/man/man9/zone.9 1.165 +4 -0 src/sys/vm/uma_core.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 16:49:10 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 839CA10657BB for ; Tue, 19 Oct 2010 16:49:10 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC628FC13 for ; Tue, 19 Oct 2010 16:49:10 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JGn9v3003773 for ; Tue, 19 Oct 2010 16:49:09 GMT (envelope-from jh@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JGn9M9003772 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 16:49:09 GMT (envelope-from jh@repoman.freebsd.org) Message-Id: <201010191649.o9JGn9M9003772@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jh@repoman.freebsd.org using -f From: Jaakko Heinonen Date: Tue, 19 Oct 2010 16:48:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_dev.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 16:49:10 -0000 jh 2010-10-19 16:48:49 UTC FreeBSD src repository Modified files: sys/geom geom_dev.c Log: SVN rev 214063 on 2010-10-19 16:48:49Z by jh Use make_dev_p(9) with the MAKEDEV_CHECKNAME flag instead of make_dev(9) and print a diagnostic if the call fails. This avoids a panic when a device with an invalid name is attempted to be registered. For example the label class gets device names from untrusted input. Reviewed by: freebsd-geom Revision Changes Path 1.107 +10 -2 src/sys/geom/geom_dev.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 17:06:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97D7C1065696 for ; Tue, 19 Oct 2010 17:06:00 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6B4B08FC17 for ; Tue, 19 Oct 2010 17:06:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JH60hf006053 for ; Tue, 19 Oct 2010 17:06:00 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JH60qx006052 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 17:06:00 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010191706.o9JH60qx006052@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Tue, 19 Oct 2010 17:05:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 17:06:00 -0000 jkim 2010-10-19 17:05:51 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: SVN rev 214064 on 2010-10-19 17:05:51Z by jkim Do not apply do_power_resume for suspending case. When do_powerstate was splitted into do_power_resume and do_power_nodriver, it became stale. Revision Changes Path 1.404 +3 -4 src/sys/dev/pci/pci.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 17:15:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CD931065693 for ; Tue, 19 Oct 2010 17:15:36 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 505F68FC08 for ; Tue, 19 Oct 2010 17:15:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JHFaOk006744 for ; Tue, 19 Oct 2010 17:15:36 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JHFaCR006743 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 17:15:36 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010191715.o9JHFaCR006743@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Tue, 19 Oct 2010 17:15:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 17:15:36 -0000 jkim 2010-10-19 17:15:22 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: SVN rev 214065 on 2010-10-19 17:15:22Z by jkim Remove PCI header type 0 restriction from power state changes. PCI config. registers for bridges are saved and restored since r200341. OK'ed by: imp, jhb Revision Changes Path 1.405 +1 -3 src/sys/dev/pci/pci.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 17:50:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5A4F1065779 for ; Tue, 19 Oct 2010 17:50:12 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 88E308FC0A for ; Tue, 19 Oct 2010 17:50:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JHoCF5009202 for ; Tue, 19 Oct 2010 17:50:12 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JHoCRm009201 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 17:50:12 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010191750.o9JHoCRm009201@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Tue, 19 Oct 2010 17:49:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 lagg.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 17:50:12 -0000 delphij 2010-10-19 17:49:55 UTC FreeBSD src repository Modified files: share/man/man4 lagg.4 Log: SVN rev 214066 on 2010-10-19 17:49:55Z by delphij Clarify that lagg(4) sends/receives on active port, not the master port. Note that this still seems to be a little bit confusing as the concept of "master" is different from what people would expect on a networking equipment. Revision Changes Path 1.10 +3 -3 src/share/man/man4/lagg.4 From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 18:32:18 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C09811065741 for ; Tue, 19 Oct 2010 18:32:18 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 93DEC8FC1A for ; Tue, 19 Oct 2010 18:32:18 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JIWIJG013404 for ; Tue, 19 Oct 2010 18:32:18 GMT (envelope-from ae@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JIWIcB013403 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 18:32:18 GMT (envelope-from ae@repoman.freebsd.org) Message-Id: <201010191832.o9JIWIcB013403@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ae@repoman.freebsd.org using -f From: "Andrey V. Elsukov" Date: Tue, 19 Oct 2010 18:32:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_mountroot.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 18:32:18 -0000 ae 2010-10-19 18:32:01 UTC FreeBSD src repository Modified files: sys/kern vfs_mountroot.c Log: SVN rev 214067 on 2010-10-19 18:32:01Z by ae ZFS pool name is not a real device in devfs. Do not wait for device appear when mounting root from ZFS. Reviewed by: marcel Approved by: mav (mentor) Revision Changes Path 1.3 +2 -1 src/sys/kern/vfs_mountroot.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 18:43:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 832D410657C4 for ; Tue, 19 Oct 2010 18:43:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 56D6D8FC1B for ; Tue, 19 Oct 2010 18:43:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JIhONc014253 for ; Tue, 19 Oct 2010 18:43:24 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JIhOW9014252 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 18:43:24 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010191843.o9JIhOW9014252@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Tue, 19 Oct 2010 18:43:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 18:43:24 -0000 jkim 2010-10-19 18:43:11 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c Log: SVN rev 214068 on 2010-10-19 18:43:11Z by jkim Make any PCI devices enumerated in ACPI tree honor do_power_resume as well. Revision Changes Path 1.35 +1 -1 src/sys/dev/acpica/acpi_pci.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 18:49:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B8AE1065670 for ; Tue, 19 Oct 2010 18:49:59 +0000 (UTC) (envelope-from bschmidt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 373CC8FC1E for ; Tue, 19 Oct 2010 18:49:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JInxZw014711 for ; Tue, 19 Oct 2010 18:49:59 GMT (envelope-from bschmidt@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JInx2Z014710 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 18:49:59 GMT (envelope-from bschmidt@repoman.freebsd.org) Message-Id: <201010191849.o9JInx2Z014710@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bschmidt@repoman.freebsd.org using -f From: Bernhard Schmidt Date: Tue, 19 Oct 2010 18:49:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/modules/wlan Makefile src/sys/net80211 ieee80211_ratectl.c ieee80211_ratectl.h ieee80211_ratectl_none.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 18:49:59 -0000 bschmidt 2010-10-19 18:49:26 UTC FreeBSD src repository Modified files: sys/conf files sys/modules/wlan Makefile sys/net80211 ieee80211_ratectl.c ieee80211_ratectl.h Added files: sys/net80211 ieee80211_ratectl_none.c Log: SVN rev 214069 on 2010-10-19 18:49:26Z by bschmidt Fix an undefined behaviour if the desired ratectl algo is not available. This can happen if the algos are built as modules but are not loaded. If the selected ratectl algo is not available, try to load it (The load module functions does nothing currently). Add a dummy ratectl algo which always selects the first available rate. Use that one if the desired algo is not available. MFC after: 1 week Revision Changes Path 1.1538 +1 -0 src/sys/conf/files 1.23 +1 -1 src/sys/modules/wlan/Makefile 1.2 +18 -0 src/sys/net80211/ieee80211_ratectl.c 1.5 +2 -1 src/sys/net80211/ieee80211_ratectl.h 1.1 +113 -0 src/sys/net80211/ieee80211_ratectl_none.c (new) From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 19:11:50 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B56CA106566C for ; Tue, 19 Oct 2010 19:11:50 +0000 (UTC) (envelope-from bschmidt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8908E8FC32 for ; Tue, 19 Oct 2010 19:11:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JJBoWm017333 for ; Tue, 19 Oct 2010 19:11:50 GMT (envelope-from bschmidt@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JJBoQ7017332 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 19:11:50 GMT (envelope-from bschmidt@repoman.freebsd.org) Message-Id: <201010191911.o9JJBoQ7017332@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bschmidt@repoman.freebsd.org using -f From: Bernhard Schmidt Date: Tue, 19 Oct 2010 19:11:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/if_ndis if_ndis.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 19:11:50 -0000 bschmidt 2010-10-19 19:11:36 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: SVN rev 214070 on 2010-10-19 19:11:36Z by bschmidt There is no reason to call rt_ifmsg(), remove it. Submitted by: Paul B Mahol MFC after: 1 week Revision Changes Path 1.177 +0 -4 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 19:44:26 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7388106566B for ; Tue, 19 Oct 2010 19:44:26 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 941388FC13 for ; Tue, 19 Oct 2010 19:44:26 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JJiQB5019702 for ; Tue, 19 Oct 2010 19:44:26 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JJiQH6019701 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 19:44:26 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201010191944.o9JJiQH6019701@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Tue, 19 Oct 2010 19:44:05 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include tick.h src/sys/sparc64/sparc64 mp_machdep.c tick.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 19:44:26 -0000 marius 2010-10-19 19:44:05 UTC FreeBSD src repository Modified files: sys/sparc64/include tick.h sys/sparc64/sparc64 mp_machdep.c tick.c Log: SVN rev 214071 on 2010-10-19 19:44:05Z by marius - Wrap exchanging td_intr_frame and calling the event timer callback in a critical section as apparently required by both. I don't think either belongs in the event timer front-ends but the callback should handle this as necessary instead just like for example intr_event_handle() does but this is how the other architectures currently handle it, either explicitly or implicitly. - Further rename and reword references to hardclock as this front-end no longer has a notion of actually calling it. Revision Changes Path 1.9 +1 -1 src/sys/sparc64/include/tick.h 1.64 +1 -1 src/sys/sparc64/sparc64/mp_machdep.c 1.31 +17 -15 src/sys/sparc64/sparc64/tick.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 19:53:32 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AD661065679 for ; Tue, 19 Oct 2010 19:53:32 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5E2128FC1D for ; Tue, 19 Oct 2010 19:53:32 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JJrWDW020367 for ; Tue, 19 Oct 2010 19:53:32 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JJrWqk020366 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 19:53:32 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010191953.o9JJrWqk020366@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Tue, 19 Oct 2010 19:53:06 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c acpi_if.m acpi_pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 19:53:32 -0000 jkim 2010-10-19 19:53:06 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c acpi_if.m acpi_pci.c Log: SVN rev 214072 on 2010-10-19 19:53:06Z by jkim Remove PCI_SET_POWERSTATE method from acpi.c and eradicate all PCI-specific knowledges from the file. All PCI devices enumerated in ACPI tree must use correct one from acpi_pci.c any way. Reduce duplicate codes as we did for pci.c in r213905. Do not return ESRCH from PCIB_POWER_FOR_SLEEP method. When the method is not found, just return zero without modifying the given default value as it is completely optional. As a side effect, the return state must not be NULL. Note there is actually no functional change by removing ESRCH because acpi_pcib_power_for_sleep() always returns zero. Adjust debugging messages and add new ones under bootverbose to help debugging device power state related issues. Reviewed by: jhb, imp (earlier versions) Revision Changes Path 1.289 +61 -92 src/sys/dev/acpica/acpi.c 1.11 +1 -2 src/sys/dev/acpica/acpi_if.m 1.36 +6 -2 src/sys/dev/acpica/acpi_pci.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 20:05:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C5C01065742 for ; Tue, 19 Oct 2010 20:05:38 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5FC6F8FC14 for ; Tue, 19 Oct 2010 20:05:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JK5cnQ022342 for ; Tue, 19 Oct 2010 20:05:38 GMT (envelope-from brucec@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JK5cMm022341 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 20:05:38 GMT (envelope-from brucec@repoman.freebsd.org) Message-Id: <201010192005.o9JK5cMm022341@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to brucec@repoman.freebsd.org using -f From: Bruce Cran Date: Tue, 19 Oct 2010 20:05:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/camcontrol camcontrol.8 camcontrol.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 20:05:38 -0000 brucec 2010-10-19 20:05:25 UTC FreeBSD src repository Modified files: sbin/camcontrol camcontrol.8 camcontrol.c Log: SVN rev 214073 on 2010-10-19 20:05:25Z by brucec Stop disallowing device nodes to be passed to camcontrol(8) since libcam already allows both device names and nodes to be specified. Reviewed by: avg Revision Changes Path 1.54 +0 -3 src/sbin/camcontrol/camcontrol.8 1.78 +1 -9 src/sbin/camcontrol/camcontrol.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 20:38:40 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0967A106566C for ; Tue, 19 Oct 2010 20:38:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D14458FC1C for ; Tue, 19 Oct 2010 20:38:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JKcdRW024850 for ; Tue, 19 Oct 2010 20:38:39 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JKcd8a024849 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 20:38:39 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010192038.o9JKcd8a024849@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Tue, 19 Oct 2010 20:38:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 20:38:40 -0000 jkim 2010-10-19 20:38:21 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: SVN rev 214076 on 2010-10-19 20:38:21Z by jkim Remove undocumented and stale debug.acpi.do_powerstate tunable. It was added with hw.pci.do_powerstate but the PCI version was splitted into two separate tunables later and now this is completely stale. To make it worse, PCI devices enumerated in ACPI tree ignore this tunable as it is handled by a function in acpi_pci.c instead. Revision Changes Path 1.290 +0 -12 src/sys/dev/acpica/acpi.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 20:53:50 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC15F10656A8 for ; Tue, 19 Oct 2010 20:53:50 +0000 (UTC) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7A6BA8FC28 for ; Tue, 19 Oct 2010 20:53:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JKroum037054 for ; Tue, 19 Oct 2010 20:53:50 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JKroVv037053 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 20:53:50 GMT (envelope-from gibbs@repoman.freebsd.org) Message-Id: <201010192053.o9JKroVv037053@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to gibbs@repoman.freebsd.org using -f From: "Justin T. Gibbs" Date: Tue, 19 Oct 2010 20:53:30 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/xen/balloon balloon.c src/sys/dev/xen/blkback blkback.c src/sys/dev/xen/blkfront blkfront.c block.h src/sys/dev/xen/control control.c src/sys/dev/xen/netfront netfront.c src/sys/dev/xen/xenpci ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 20:53:50 -0000 gibbs 2010-10-19 20:53:30 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/xen/balloon balloon.c sys/dev/xen/blkback blkback.c sys/dev/xen/blkfront blkfront.c block.h sys/dev/xen/netfront netfront.c sys/dev/xen/xenpci evtchn.c xenpci.c sys/i386/xen xen_machdep.c sys/xen gnttab.c gnttab.h xen_intr.h sys/xen/evtchn evtchn.c sys/xen/interface grant_table.h sys/xen/interface/hvm params.h sys/xen/interface/io blkif.h protocols.h ring.h xenbus.h sys/xen/xenbus xenbus_if.m xenbusvar.h Added files: sys/dev/xen/control control.c sys/xen blkif.h sys/xen/xenbus xenbus.c xenbusb.c xenbusb.h xenbusb_back.c xenbusb_front.c xenbusb_if.m sys/xen/xenstore xenstore.c xenstore_dev.c xenstore_internal.h xenstorevar.h Removed files: sys/xen reboot.c sys/xen/xenbus init.txt xenbus_client.c xenbus_comms.c xenbus_comms.h xenbus_dev.c xenbus_probe.c xenbus_probe_backend.c xenbus_xs.c Log: SVN rev 214077 on 2010-10-19 20:53:30Z by gibbs Improve the Xen para-virtualized device infrastructure of FreeBSD: o Add support for backend devices (e.g. blkback) o Implement extensions to the Xen para-virtualized block API to allow for larger and more outstanding I/Os. o Import a completely rewritten block back driver with support for fronting I/O to both raw devices and files. o General cleanup and documentation of the XenBus and XenStore support code. o Robustness and performance updates for the block front driver. o Fixes to the netfront driver. Sponsored by: Spectra Logic Corporation sys/xen/xenbus/init.txt: Deleted: This file explains the Linux method for XenBus device enumeration and thus does not apply to FreeBSD's NewBus approach. sys/xen/xenbus/xenbus_probe_backend.c: Deleted: Linux version of backend XenBus service routines. It was never ported to FreeBSD. See xenbusb.c, xenbusb_if.m, xenbusb_front.c xenbusb_back.c for details of FreeBSD's XenBus support. sys/xen/xenbus/xenbusvar.h: sys/xen/xenbus/xenbus_xs.c: sys/xen/xenbus/xenbus_comms.c: sys/xen/xenbus/xenbus_comms.h: sys/xen/xenstore/xenstorevar.h: sys/xen/xenstore/xenstore.c: Split XenStore into its own tree. XenBus is a software layer built on top of XenStore. The old arrangement and the naming of some structures and functions blurred these lines making it difficult to discern what services are provided by which layer and at what times these services are available (e.g. during system startup and shutdown). sys/xen/xenbus/xenbus_client.c: sys/xen/xenbus/xenbus.c: sys/xen/xenbus/xenbus_probe.c: sys/xen/xenbus/xenbusb.c: sys/xen/xenbus/xenbusb.h: Split up XenBus code into methods available for use by client drivers (xenbus.c) and code used by the XenBus "bus code" to enumerate, attach, detach, and service bus drivers. sys/xen/reboot.c: sys/dev/xen/control/control.c: Add a XenBus front driver for handling shutdown, reboot, suspend, and resume events published in the XenStore. Move all PV suspend/reboot support from reboot.c into this driver. sys/xen/blkif.h: New file from Xen vendor with macros and structures used by a block back driver to service requests from a VM running a different ABI (e.g. amd64 back with i386 front). sys/conf/files: Adjust kernel build spec for new XenBus/XenStore layout and added Xen functionality. sys/dev/xen/balloon/balloon.c: sys/dev/xen/netfront/netfront.c: sys/dev/xen/blkfront/blkfront.c: sys/xen/xenbus/... sys/xen/xenstore/... o Rename XenStore APIs and structures from xenbus_* to xs_*. o Adjust to use of M_XENBUS and M_XENSTORE malloc types for allocation of objects returned by these APIs. o Adjust for changes in the bus interface for Xen drivers. sys/xen/xenbus/... sys/xen/xenstore/... Add Doxygen comments for these interfaces and the code that implements them. sys/dev/xen/blkback/blkback.c: o Rewrite the Block Back driver to attach properly via newbus, operate correctly in both PV and HVM mode regardless of domain (e.g. can be in a DOM other than 0), and to deal with the latest metadata available in XenStore for block devices. o Allow users to specify a file as a backend to blkback, in addition to character devices. Use the namei lookup of the backend path to automatically configure, based on file type, the appropriate backend method. The current implementation is limited to a single outstanding I/O at a time to file backed storage. sys/dev/xen/blkback/blkback.c: sys/xen/interface/io/blkif.h: sys/xen/blkif.h: sys/dev/xen/blkfront/blkfront.c: sys/dev/xen/blkfront/block.h: Extend the Xen blkif API: Negotiable request size and number of requests. This change extends the information recorded in the XenStore allowing block front/back devices to negotiate for optimal I/O parameters. This has been achieved without sacrificing backward compatibility with drivers that are unaware of these protocol enhancements. The extensions center around the connection protocol which now includes these additions: o The back-end device publishes its maximum supported values for, request I/O size, the number of page segments that can be associated with a request, the maximum number of requests that can be concurrently active, and the maximum number of pages that can be in the shared request ring. These values are published before the back-end enters the XenbusStateInitWait state. o The front-end waits for the back-end to enter either the InitWait or Initialize state. At this point, the front end limits it's own capabilities to the lesser of the values it finds published by the backend, it's own maximums, or, should any back-end data be missing in the store, the values supported by the original protocol. It then initializes it's internal data structures including allocation of the shared ring, publishes its maximum capabilities to the XenStore and transitions to the Initialized state. o The back-end waits for the front-end to enter the Initalized state. At this point, the back end limits it's own capabilities to the lesser of the values it finds published by the frontend, it's own maximums, or, should any front-end data be missing in the store, the values supported by the original protocol. It then initializes it's internal data structures, attaches to the shared ring and transitions to the Connected state. o The front-end waits for the back-end to enter the Connnected state, transitions itself to the connected state, and can commence I/O. Although an updated front-end driver must be aware of the back-end's InitWait state, the back-end has been coded such that it can tolerate a front-end that skips this step and transitions directly to the Initialized state without waiting for the back-end. sys/xen/interface/io/blkif.h: o Increase BLKIF_MAX_SEGMENTS_PER_REQUEST to 255. This is the maximum number possible without changing the blkif request header structure (nr_segs is a uint8_t). o Add two new constants: BLKIF_MAX_SEGMENTS_PER_HEADER_BLOCK, and BLKIF_MAX_SEGMENTS_PER_SEGMENT_BLOCK. These respectively indicate the number of segments that can fit in the first ring-buffer entry of a request, and for each subsequent (sg element only) ring-buffer entry associated with the "header" ring-buffer entry of the request. o Add the blkif_request_segment_t typedef for segment elements. o Add the BLKRING_GET_SG_REQUEST() macro which wraps the RING_GET_REQUEST() macro and returns a properly cast pointer to an array of blkif_request_segment_ts. o Add the BLKIF_SEGS_TO_BLOCKS() macro which calculates the number of ring entries that will be consumed by a blkif request with the given number of segments. sys/xen/blkif.h: o Update for changes in interface/io/blkif.h macros. o Update the BLKIF_MAX_RING_REQUESTS() macro to take the ring size as an argument to allow this calculation on multi-page rings. o Add a companion macro to BLKIF_MAX_RING_REQUESTS(), BLKIF_RING_PAGES(). This macro determines the number of ring pages required in order to support a ring with the supplied number of request blocks. sys/dev/xen/blkback/blkback.c: sys/dev/xen/blkfront/blkfront.c: sys/dev/xen/blkfront/block.h: o Negotiate with the other-end with the following limits: Reqeust Size: MAXPHYS Max Segments: (MAXPHYS/PAGE_SIZE) + 1 Max Requests: 256 Max Ring Pages: Sufficient to support Max Requests with Max Segments. o Dynamically allocate request pools and segemnts-per-request. o Update ring allocation/attachment code to support a multi-page shared ring. o Update routines that access the shared ring to handle multi-block requests. sys/dev/xen/blkfront/blkfront.c: o Track blkfront allocations in a blkfront driver specific malloc pool. o Strip out XenStore transaction retry logic in the connection code. Transactions only need to be used when the update to multiple XenStore nodes must be atomic. That is not the case here. o Fully disable blkif_resume() until it can be fixed properly (it didn't work before this change). o Destroy bus-dma objects during device instance tear-down. o Properly handle backend devices with powef-of-2 sector sizes larger than 512b. sys/dev/xen/blkback/blkback.c: Advertise support for and implement the BLKIF_OP_WRITE_BARRIER and BLKIF_OP_FLUSH_DISKCACHE blkif opcodes using BIO_FLUSH and the BIO_ORDERED attribute of bios. sys/dev/xen/blkfront/blkfront.c: sys/dev/xen/blkfront/block.h: Fix various bugs in blkfront. o gnttab_alloc_grant_references() returns 0 for success and non-zero for failure. The check for < 0 is a leftover Linuxism. o When we negotiate with blkback and have to reduce some of our capabilities, print out the original and reduced capability before changing the local capability. So the user now gets the correct information. o Fix blkif_restart_queue_callback() formatting. Make sure we hold the mutex in that function before calling xb_startio(). o Fix a couple of KASSERT()s. o Fix a check in the xb_remove_* macro to be a little more specific. sys/xen/gnttab.h: sys/xen/gnttab.c: Define GNTTAB_LIST_END publicly as GRANT_REF_INVALID. sys/dev/xen/netfront/netfront.c: Use GRANT_REF_INVALID instead of driver private definitions of the same constant. sys/xen/gnttab.h: sys/xen/gnttab.c: Add the gnttab_end_foreign_access_references() API. This API allows a client to batch the release of an array of grant references, instead of coding a private for loop. The implementation takes advantage of this batching to reduce lock overhead to one acquisition and release per-batch instead of per-freed grant reference. While here, reduce the duration the gnttab_list_lock is held during gnttab_free_grant_references() operations. The search to find the tail of the incoming free list does not rely on global state and so can be performed without holding the lock. sys/dev/xen/xenpci/evtchn.c: sys/dev/xen/evtchn/evtchn.c: sys/xen/xen_intr.h: o Implement the bind_interdomain_evtchn_to_irqhandler API for HVM mode. This allows an HVM domain to serve back end devices to other domains. This API is already implemented for PV mode. o Synchronize the API between HVM and PV. sys/dev/xen/xenpci/xenpci.c: o Scan the full region of CPUID space in which the Xen VMM interface may be implemented. On systems using SuSE as a Dom0 where the Viridian API is also exported, the VMM interface is above the region we used to search. o Pass through bus_alloc_resource() calls so that XenBus drivers attaching on an HVM system can allocate unused physical address space from the nexus. The block back driver makes use of this facility. sys/i386/xen/xen_machdep.c: Use the correct type for accessing the statically mapped xenstore metadata. sys/xen/interface/hvm/params.h: sys/xen/xenstore/xenstore.c: Move hvm_get_parameter() to the correct global header file instead of as a private method to the XenStore. sys/xen/interface/io/protocols.h: Sync with vendor. sys/xeninterface/io/ring.h: Add macro for calculating the number of ring pages needed for an N deep ring. To avoid duplication within the macros, create and use the new __RING_HEADER_SIZE() macro. This macro calculates the size of the ring book keeping struct (producer/consumer indexes, etc.) that resides at the head of the ring. Add the __RING_PAGES() macro which calculates the number of shared ring pages required to support a ring with the given number of requests. These APIs are used to support the multi-page ring version of the Xen block API. sys/xeninterface/io/xenbus.h: Add Comments. sys/xen/xenbus/... o Refactor the FreeBSD XenBus support code to allow for both front and backend device attachments. o Make use of new config_intr_hook capabilities to allow front and back devices to be probed/attached in parallel. o Fix bugs in probe/attach state machine that could cause the system to hang when confronted with a failure either in the local domain or in a remote domain to which one of our driver instances is attaching. o Publish all required state to the XenStore on device detach and failure. The majority of the missing functionality was for serving as a back end since the typical "hot-plug" scripts in Dom0 don't handle the case of cleaning up for a "service domain" that is not itself. o Add dynamic sysctl nodes exposing the generic ivars of XenBus devices. o Add doxygen style comments to the majority of the code. o Cleanup types, formatting, etc. sys/xen/xenbus/xenbusb.c: Common code used by both front and back XenBus busses. sys/xen/xenbus/xenbusb_if.m: Method definitions for a XenBus bus. sys/xen/xenbus/xenbusb_front.c: sys/xen/xenbus/xenbusb_back.c: XenBus bus specialization for front and back devices. MFC after: 1 month Revision Changes Path 1.1539 +10 -9 src/sys/conf/files 1.4 +5 -5 src/sys/dev/xen/balloon/balloon.c 1.6 +2663 -1038 src/sys/dev/xen/blkback/blkback.c 1.17 +376 -226 src/sys/dev/xen/blkfront/blkfront.c 1.5 +53 -11 src/sys/dev/xen/blkfront/block.h 1.1 +493 -0 src/sys/dev/xen/control/control.c (new) 1.30 +39 -33 src/sys/dev/xen/netfront/netfront.c 1.2 +43 -0 src/sys/dev/xen/xenpci/evtchn.c 1.2 +70 -11 src/sys/dev/xen/xenpci/xenpci.c 1.23 +4 -2 src/sys/i386/xen/xen_machdep.c 1.1 +145 -0 src/sys/xen/blkif.h (new) 1.12 +3 -3 src/sys/xen/evtchn/evtchn.c 1.9 +58 -22 src/sys/xen/gnttab.c 1.7 +9 -0 src/sys/xen/gnttab.h 1.4 +2 -0 src/sys/xen/interface/grant_table.h 1.4 +26 -0 src/sys/xen/interface/hvm/params.h 1.3 +26 -5 src/sys/xen/interface/io/blkif.h 1.3 +3 -0 src/sys/xen/interface/io/protocols.h 1.3 +17 -1 src/sys/xen/interface/io/ring.h 1.3 +9 -0 src/sys/xen/interface/io/xenbus.h 1.3 +0 -266 src/sys/xen/reboot.c (dead) 1.3 +1 -1 src/sys/xen/xen_intr.h 1.2 +0 -14 src/sys/xen/xenbus/init.txt (dead) 1.1 +288 -0 src/sys/xen/xenbus/xenbus.c (new) 1.6 +0 -251 src/sys/xen/xenbus/xenbus_client.c (dead) 1.6 +0 -226 src/sys/xen/xenbus/xenbus_comms.c (dead) 1.5 +0 -48 src/sys/xen/xenbus/xenbus_comms.h (dead) 1.6 +0 -229 src/sys/xen/xenbus/xenbus_dev.c (dead) 1.2 +11 -3 src/sys/xen/xenbus/xenbus_if.m 1.11 +0 -602 src/sys/xen/xenbus/xenbus_probe.c (dead) 1.6 +0 -308 src/sys/xen/xenbus/xenbus_probe_backend.c (dead) 1.11 +0 -935 src/sys/xen/xenbus/xenbus_xs.c (dead) 1.1 +878 -0 src/sys/xen/xenbus/xenbusb.c (new) 1.1 +272 -0 src/sys/xen/xenbus/xenbusb.h (new) 1.1 +295 -0 src/sys/xen/xenbus/xenbusb_back.c (new) 1.1 +195 -0 src/sys/xen/xenbus/xenbusb_front.c (new) 1.1 +78 -0 src/sys/xen/xenbus/xenbusb_if.m (new) 1.3 +174 -155 src/sys/xen/xenbus/xenbusvar.h 1.1 +1654 -0 src/sys/xen/xenstore/xenstore.c (new) 1.1 +224 -0 src/sys/xen/xenstore/xenstore_dev.c (new) 1.1 +39 -0 src/sys/xen/xenstore/xenstore_internal.h (new) 1.1 +338 -0 src/sys/xen/xenstore/xenstorevar.h (new) From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 21:05:01 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB4F6106564A for ; Tue, 19 Oct 2010 21:05:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 956F98FC1D for ; Tue, 19 Oct 2010 21:05:01 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JL51bQ038902 for ; Tue, 19 Oct 2010 21:05:01 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JL51XV038901 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 21:05:01 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010192105.o9JL51XV038901@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Tue, 19 Oct 2010 21:04:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/lib/libc/stdtime strptime.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 21:05:01 -0000 edwin 2010-10-19 21:04:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) lib/libc/stdtime strptime.c Log: SVN rev 214079 on 2010-10-19 21:04:45Z by edwin MFC of r207830 strptime(3) confused July with June with the fr_FR locale. When parsing the month "juillet" (abbr "jul"), %B recognized it as "juin" (abbr "jui") because the full name of the month names is checked at the same time as the abbrevation. The new behaviour checks the full names first before checking the abbrevation names. PR: kern/141939 Submitted by: Denis Chatelain Revision Changes Path 1.36.2.2 +8 -0 src/lib/libc/stdtime/strptime.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 21:05:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57C9F106566B for ; Tue, 19 Oct 2010 21:05:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45BD58FC14 for ; Tue, 19 Oct 2010 21:05:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JL5bri039018 for ; Tue, 19 Oct 2010 21:05:37 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JL5bPF039017 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 21:05:37 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010192105.o9JL5bPF039017@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Tue, 19 Oct 2010 21:05:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/lib/libc/stdtime strptime.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 21:05:37 -0000 edwin 2010-10-19 21:05:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) lib/libc/stdtime strptime.c Log: SVN rev 214080 on 2010-10-19 21:05:22Z by edwin MFC of r207830 strptime(3) confused July with June with the fr_FR locale. When parsing the month "juillet" (abbr "jul"), %B recognized it as "juin" (abbr "jui") because the full name of the month names is checked at the same time as the abbrevation. The new behaviour checks the full names first before checking the abbrevation names. PR: kern/141939 Submitted by: Denis Chatelain Revision Changes Path 1.35.20.2 +8 -0 src/lib/libc/stdtime/strptime.c From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 21:44:06 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDE0F106566C for ; Tue, 19 Oct 2010 21:44:06 +0000 (UTC) (envelope-from zml@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ABAF88FC0A for ; Tue, 19 Oct 2010 21:44:06 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JLi6ZN042054 for ; Tue, 19 Oct 2010 21:44:06 GMT (envelope-from zml@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JLi6Xq042053 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 21:44:06 GMT (envelope-from zml@repoman.freebsd.org) Message-Id: <201010192144.o9JLi6Xq042053@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to zml@repoman.freebsd.org using -f From: Zachary Loafman Date: Tue, 19 Oct 2010 21:43:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access mentors X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 21:44:06 -0000 zml 2010-10-19 21:43:48 UTC FreeBSD src repository Modified files: . access mentors Log: SVN rev 214085 on 2010-10-19 21:43:48Z by zml Please welcome Zack Kirsch (zack@) as a new src committer. He will be working primarily on the new NFS stack, helping to integrate changes from Isilon Systems as we productize our NFSv4 offering. He will hopefully then move on to implementing/integrating NFSv4.1 and pNFS into FreeBSD. I will be his mentor. Approved by: core Revision Changes Path 1.951 +1 -0 CVSROOT/access 1.94 +1 -0 CVSROOT/mentors From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 22:12:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ED571065674 for ; Tue, 19 Oct 2010 22:12:12 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8C1738FC1E for ; Tue, 19 Oct 2010 22:12:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JMCCvD045079 for ; Tue, 19 Oct 2010 22:12:12 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JMCCD4045078 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 22:12:12 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010192212.o9JMCCD4045078@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Tue, 19 Oct 2010 22:11:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/lib/libc/i386/string Makefile.inc strlen.S X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 22:12:12 -0000 jilles 2010-10-19 22:11:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) lib/libc/i386/string Makefile.inc Removed files: (Branch: RELENG_8) lib/libc/i386/string strlen.S Log: SVN rev 214086 on 2010-10-19 22:11:50Z by jilles MFC r213326: libc: Remove the i386 assembler version of strlen(3). On anything modern, the C version, which processes a word at a time, is much faster. The Intel optimization manual explicitly warns against using REP prefixes with SCAS or CMPS, which is exactly what the assembler version does. A simple test on a Phenom II showed the C version, compiled with -O2, to be about twice as fast determining the length of 100000 strings between 0 and 255 bytes long. Revision Changes Path 1.13.34.2 +1 -1 src/lib/libc/i386/string/Makefile.inc 1.10.2.2 +0 -54 src/lib/libc/i386/string/strlen.S (dead) From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 23:04:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA7D11065670 for ; Tue, 19 Oct 2010 23:04:48 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7B608FC08 for ; Tue, 19 Oct 2010 23:04:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JN4mx7049733 for ; Tue, 19 Oct 2010 23:04:48 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JN4mS0049732 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 23:04:48 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010192304.o9JN4mS0049732@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Tue, 19 Oct 2010 23:04:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 23:04:48 -0000 yongari 2010-10-19 23:04:23 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: SVN rev 214087 on 2010-10-19 23:04:23Z by yongari Add workaround for BCM5906 controller silicon bug. If device receive two back-to-back send BDs with less than or equal to 8 total bytes then the device may hang. The two back-to-back send BDs must be in the same frame for this failure to occur. Thanks to davidch for detailed errata information. Reviewed by: davidch Revision Changes Path 1.327 +43 -0 src/sys/dev/bge/if_bge.c 1.112 +1 -0 src/sys/dev/bge/if_bgereg.h From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 23:59:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CD951065670 for ; Tue, 19 Oct 2010 23:59:00 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66BDF8FC12 for ; Tue, 19 Oct 2010 23:59:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JNx0DY053635 for ; Tue, 19 Oct 2010 23:59:00 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JNx0Hn053634 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 23:59:00 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010192359.o9JNx0Hn053634@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Tue, 19 Oct 2010 23:57:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh Makefile src/tools/regression/bin/sh Makefile regress.sh regress.t src/tools/regression/bin/sh/builtins exec1.0 trap1.0 var-assign.0 src/tools/regression/bin/sh/errors backquote-error1.0 option-error.0 redirection-error.0 ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 23:59:00 -0000 obrien 2010-10-19 23:57:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh Makefile tools/regression/bin/sh Makefile regress.sh regress.t tools/regression/bin/sh/builtins exec1.0 trap1.0 var-assign.0 tools/regression/bin/sh/errors backquote-error1.0 option-error.0 redirection-error.0 redirection-error2.2 tools/regression/bin/sh/execution fork1.0 fork2.0 func1.0 tools/regression/bin/sh/expansion question1.0 set-u1.0 tools/regression/bin/sh/parameters mail1.0 mail2.0 pwd1.0 Log: SVN rev 214088 on 2010-10-19 23:57:34Z by obrien MFC r213738: allow one to regression test 'sh' changes without having to install a potentially bad /bin/sh first. Revision Changes Path 1.47.2.2 +3 -0 src/bin/sh/Makefile 1.1.10.2 +4 -1 src/tools/regression/bin/sh/Makefile 1.1.2.3 +1 -1 src/tools/regression/bin/sh/builtins/exec1.0 1.1.2.2 +2 -2 src/tools/regression/bin/sh/builtins/trap1.0 1.1.10.2 +2 -2 src/tools/regression/bin/sh/builtins/var-assign.0 1.1.2.3 +1 -1 src/tools/regression/bin/sh/errors/backquote-error1.0 1.1.10.2 +2 -2 src/tools/regression/bin/sh/errors/option-error.0 1.1.10.2 +2 -2 src/tools/regression/bin/sh/errors/redirection-error.0 1.1.2.2 +1 -1 src/tools/regression/bin/sh/errors/redirection-error2.2 1.1.2.2 +2 -2 src/tools/regression/bin/sh/execution/fork1.0 1.1.2.2 +2 -2 src/tools/regression/bin/sh/execution/fork2.0 1.1.2.3 +2 -2 src/tools/regression/bin/sh/execution/func1.0 1.1.2.3 +13 -13 src/tools/regression/bin/sh/expansion/question1.0 1.1.2.3 +23 -23 src/tools/regression/bin/sh/expansion/set-u1.0 1.1.2.3 +1 -1 src/tools/regression/bin/sh/parameters/mail1.0 1.2.2.3 +1 -1 src/tools/regression/bin/sh/parameters/mail2.0 1.1.2.3 +4 -4 src/tools/regression/bin/sh/parameters/pwd1.0 1.3.10.2 +7 -1 src/tools/regression/bin/sh/regress.sh 1.1.10.2 +7 -1 src/tools/regression/bin/sh/regress.t From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 00:19:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 778A110657E4 for ; Wed, 20 Oct 2010 00:19:36 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 64F998FC19 for ; Wed, 20 Oct 2010 00:19:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K0Jaqj056486 for ; Wed, 20 Oct 2010 00:19:36 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K0JaaZ056485 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 00:19:36 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010200019.o9K0JaaZ056485@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Wed, 20 Oct 2010 00:19:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sis if_sis.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 00:19:36 -0000 yongari 2010-10-20 00:19:25 UTC FreeBSD src repository Modified files: sys/dev/sis if_sis.c Log: SVN rev 214089 on 2010-10-20 00:19:25Z by yongari Correct handling of shared interrupt in sis_intr(). r212116 incorrectly released a drver lock for shared interrupt case such that it caused panic. While I'm here check whether driver is still running before serving TX/RX handler. Reported by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > Tested by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > MFC after: 3 days Revision Changes Path 1.28 +9 -4 src/sys/dev/sis/if_sis.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 00:24:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D7A51065780 for ; Wed, 20 Oct 2010 00:24:42 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 704948FC1B for ; Wed, 20 Oct 2010 00:24:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K0OgZA056883 for ; Wed, 20 Oct 2010 00:24:42 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K0Ogn9056882 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 00:24:42 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010200024.o9K0Ogn9056882@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Wed, 20 Oct 2010 00:24:30 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/tools/regression/bin/sh regress.t X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 00:24:42 -0000 obrien 2010-10-20 00:24:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) tools/regression/bin/sh regress.t Log: SVN rev 214090 on 2010-10-20 00:24:30Z by obrien MFC: r213903: default to 'sh' from PATH if 'SH' env is not set. Revision Changes Path 1.1.10.3 +1 -5 src/tools/regression/bin/sh/regress.t From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 00:41:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E73D6106566C for ; Wed, 20 Oct 2010 00:41:48 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BA1C48FC1B for ; Wed, 20 Oct 2010 00:41:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K0fmBn058176 for ; Wed, 20 Oct 2010 00:41:48 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K0fmMq058175 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 00:41:48 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010200041.o9K0fmMq058175@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Wed, 20 Oct 2010 00:41:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 00:41:49 -0000 davidxu 2010-10-20 00:41:38 UTC FreeBSD src repository Modified files: sys/kern kern_thr.c Log: SVN rev 214091 on 2010-10-20 00:41:38Z by davidxu - Don't include sx.h, it is not needed. - Check NULL pointer, move timeout calculation code outside of process lock. Revision Changes Path 1.86 +11 -12 src/sys/kern/kern_thr.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 01:22:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB8EF10656A3 for ; Wed, 20 Oct 2010 01:22:24 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8ED7E8FC1F for ; Wed, 20 Oct 2010 01:22:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K1MOY2073044 for ; Wed, 20 Oct 2010 01:22:24 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K1MOAk073043 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 01:22:24 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010200122.o9K1MOAk073043@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Wed, 20 Oct 2010 01:22:04 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/net if_llatbl.c if_llatbl.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 01:22:24 -0000 bz 2010-10-20 01:22:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/net if_llatbl.c if_llatbl.h Log: SVN rev 214092 on 2010-10-20 01:22:04Z by bz MFC r213929: lltable_drain() has never been used so far, thus #if 0 it for now. While touching it add the missing locking to the now disabled code for the time when we'll resurrect it. Revision Changes Path 1.8.2.14 +4 -0 src/sys/net/if_llatbl.c 1.4.2.5 +2 -0 src/sys/net/if_llatbl.h From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 02:34:19 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A71B210656CA for ; Wed, 20 Oct 2010 02:34:19 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 92CDC8FC1E for ; Wed, 20 Oct 2010 02:34:19 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K2YJBS083173 for ; Wed, 20 Oct 2010 02:34:19 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K2YJqF083172 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 02:34:19 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010200234.o9K2YJqF083172@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Wed, 20 Oct 2010 02:34:02 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/include namespace.h un-namespace.h src/lib/libthr pthread.map src/lib/libthr/thread thr_private.h thr_rwlock.c thr_rwlockattr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 02:34:19 -0000 davidxu 2010-10-20 02:34:02 UTC FreeBSD src repository Modified files: lib/libc/include namespace.h un-namespace.h lib/libthr pthread.map lib/libthr/thread thr_private.h thr_rwlock.c thr_rwlockattr.c Log: SVN rev 214093 on 2010-10-20 02:34:02Z by davidxu Revert revision 214007, I realized that MySQL wants to resolve a silly rwlock deadlock problem, the deadlock is caused by writer waiters, if a thread has already locked a reader lock, and wants to acquire another reader lock, it will be blocked by writer waiters, but we had already fixed it years ago. Revision Changes Path 1.27 +0 -2 src/lib/libc/include/namespace.h 1.24 +0 -2 src/lib/libc/include/un-namespace.h 1.40 +0 -4 src/lib/libthr/pthread.map 1.117 +0 -3 src/lib/libthr/thread/thr_private.h 1.19 +2 -23 src/lib/libthr/thread/thr_rwlock.c 1.6 +0 -22 src/lib/libthr/thread/thr_rwlockattr.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 04:53:26 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B304106566B for ; Wed, 20 Oct 2010 04:53:26 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1E9768FC0C for ; Wed, 20 Oct 2010 04:53:26 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K4rQAD007241 for ; Wed, 20 Oct 2010 04:53:26 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K4rQJ5007240 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 04:53:26 GMT (envelope-from maxim@repoman.freebsd.org) Message-Id: <201010200453.o9K4rQJ5007240@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to maxim@repoman.freebsd.org using -f From: Maxim Konovalov Date: Wed, 20 Oct 2010 04:53:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 device.hints.5 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 04:53:26 -0000 maxim 2010-10-20 04:53:03 UTC FreeBSD src repository Modified files: share/man/man5 device.hints.5 Log: SVN rev 214094 on 2010-10-20 04:53:03Z by maxim o Put missed w/space back. Submitted by: Garrett Cooper MFC after: 3 days Revision Changes Path 1.13 +1 -1 src/share/man/man5/device.hints.5 From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 05:18:17 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E9031065679 for ; Wed, 20 Oct 2010 05:18:17 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B3228FC21 for ; Wed, 20 Oct 2010 05:18:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K5IGSQ010036 for ; Wed, 20 Oct 2010 05:18:16 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K5IG0r010035 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 05:18:16 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010200518.o9K5IG0r010035@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Wed, 20 Oct 2010 05:17:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 vm_page_io.9 vm_page_sleep_busy.9 vm_page_wakeup.9 src/sys/vm swap_pager.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 05:18:17 -0000 avg 2010-10-20 05:17:23 UTC FreeBSD src repository Modified files: share/man/man9 vm_page_io.9 vm_page_sleep_busy.9 vm_page_wakeup.9 sys/vm swap_pager.c Log: SVN rev 214095 on 2010-10-20 05:17:23Z by avg PG_BUSY -> VPO_BUSY, PG_WANTED -> VPO_WANTED in manual pages and comments Reviewed by: alc MFC after: 4 days Revision Changes Path 1.6 +2 -2 src/share/man/man9/vm_page_io.9 1.3 +1 -1 src/share/man/man9/vm_page_sleep_busy.9 1.4 +4 -4 src/share/man/man9/vm_page_wakeup.9 1.322 +2 -2 src/sys/vm/swap_pager.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 05:58:08 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC436106566C for ; Wed, 20 Oct 2010 05:58:08 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9FA078FC1B for ; Wed, 20 Oct 2010 05:58:08 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K5w8it013560 for ; Wed, 20 Oct 2010 05:58:08 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K5w8Th013559 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 05:58:08 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010200558.o9K5w8Th013559@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Wed, 20 Oct 2010 05:57:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 VOP_GETPAGES.9 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 05:58:08 -0000 avg 2010-10-20 05:57:54 UTC FreeBSD src repository Modified files: share/man/man9 VOP_GETPAGES.9 Log: SVN rev 214096 on 2010-10-20 05:57:54Z by avg VOP_GETPAGES.9: clarify and correct description of parameters and requirements In cooperation with alc and kib, who provided valuable insights and suggestions. Reviewed by: alc, kib (earlier version) MFC after: 4 days Revision Changes Path 1.14 +18 -13 src/share/man/man9/VOP_GETPAGES.9 From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 06:30:13 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04A181065694 for ; Wed, 20 Oct 2010 06:30:13 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E4FC68FC08 for ; Wed, 20 Oct 2010 06:30:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K6UCpP016959 for ; Wed, 20 Oct 2010 06:30:12 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K6UCbb016958 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 06:30:12 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010200630.o9K6UCbb016958@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Wed, 20 Oct 2010 06:29:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src ObsoleteFiles.inc src/share/man/man9 Makefile vm_page_sleep_busy.9 vm_page_sleep_if_busy.9 vm_page_wakeup.9 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 06:30:13 -0000 avg 2010-10-20 06:29:11 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc share/man/man9 Makefile vm_page_wakeup.9 Added files: share/man/man9 vm_page_sleep_if_busy.9 Removed files: share/man/man9 vm_page_sleep_busy.9 Log: SVN rev 214097 on 2010-10-20 06:29:11Z by avg catch up manual pages with rename of vm_page_sleep_busy to vm_page_sleep_if_busy Suggested by: alc MFC after: 4 days Revision Changes Path 1.248 +2 -0 src/ObsoleteFiles.inc 1.378 +1 -1 src/share/man/man9/Makefile 1.4 +0 -68 src/share/man/man9/vm_page_sleep_busy.9 (dead) 1.1 +68 -0 src/share/man/man9/vm_page_sleep_if_busy.9 (new) 1.5 +1 -1 src/share/man/man9/vm_page_wakeup.9 From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:22:43 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FBCB10656AD for ; Wed, 20 Oct 2010 07:22:43 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D6E838FC15 for ; Wed, 20 Oct 2010 07:22:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7Mgxt021703 for ; Wed, 20 Oct 2010 07:22:42 GMT (envelope-from mav@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7MgEZ021702 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:22:42 GMT (envelope-from mav@repoman.freebsd.org) Message-Id: <201010200722.o9K7MgEZ021702@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mav@repoman.freebsd.org using -f From: Alexander Motin Date: Wed, 20 Oct 2010 07:22:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mvs mvs.c mvs_pci.c mvs_soc.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:22:43 -0000 mav 2010-10-20 07:22:34 UTC FreeBSD src repository Modified files: sys/dev/mvs mvs.c mvs_pci.c mvs_soc.c Log: SVN rev 214099 on 2010-10-20 07:22:34Z by mav Some style cleanup: - remove commented debugging code; - wrap long lines. Revision Changes Path 1.7 +37 -42 src/sys/dev/mvs/mvs.c 1.4 +0 -1 src/sys/dev/mvs/mvs_pci.c 1.4 +0 -1 src/sys/dev/mvs/mvs_soc.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:32:33 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC4B210656D0 for ; Wed, 20 Oct 2010 07:32:33 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7F7D58FC1C for ; Wed, 20 Oct 2010 07:32:33 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7WXPR022409 for ; Wed, 20 Oct 2010 07:32:33 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7WXLw022408 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:32:33 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010200732.o9K7WXLw022408@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Wed, 20 Oct 2010 07:32:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:32:33 -0000 obrien 2010-10-20 07:32:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh Makefile Log: SVN rev 214100 on 2010-10-20 07:32:25Z by obrien MFC r213815: only need to look as far as '..' to find 'test/' Revision Changes Path 1.47.2.3 +1 -1 src/bin/sh/Makefile From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:40:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8011F106574E for ; Wed, 20 Oct 2010 07:40:39 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 534AC8FC19 for ; Wed, 20 Oct 2010 07:40:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7edMl023139 for ; Wed, 20 Oct 2010 07:40:39 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7edGj023138 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:40:39 GMT (envelope-from maxim@repoman.freebsd.org) Message-Id: <201010200740.o9K7edGj023138@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to maxim@repoman.freebsd.org using -f From: Maxim Konovalov Date: Wed, 20 Oct 2010 07:40:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man7 hier.7 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:40:39 -0000 maxim 2010-10-20 07:40:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man7 hier.7 Log: SVN rev 214101 on 2010-10-20 07:40:23Z by maxim MFC r212094: sync the man page with the reality: nfs/ includes are under include/ and include/fs/. Revision Changes Path 1.133.2.2 +3 -1 src/share/man/man7/hier.7 From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:47:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D475106564A for ; Wed, 20 Oct 2010 07:47:45 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B15D8FC08 for ; Wed, 20 Oct 2010 07:47:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7ljR8023662 for ; Wed, 20 Oct 2010 07:47:45 GMT (envelope-from mav@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7ljxu023661 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:47:45 GMT (envelope-from mav@repoman.freebsd.org) Message-Id: <201010200747.o9K7ljxu023661@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mav@repoman.freebsd.org using -f From: Alexander Motin Date: Wed, 20 Oct 2010 07:47:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mvs mvs.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:47:45 -0000 mav 2010-10-20 07:47:31 UTC FreeBSD src repository Modified files: sys/dev/mvs mvs.c Log: SVN rev 214102 on 2010-10-20 07:47:31Z by mav Workaround strange situation when EDMA_RESQIP register returns zero instead of proper value. It caused bunch of "EMPTY CRPB" messages and potentially may cause premature requests completion, which could cause data corruption. For most cases it seems enough to just reread register to get proper value. To protect against worse cases - erase processed queue entries with impossible values and ignore them if problem still happen. Revision Changes Path 1.8 +31 -15 src/sys/dev/mvs/mvs.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:54:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BC4B1065673 for ; Wed, 20 Oct 2010 07:54:36 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4EBC28FC12 for ; Wed, 20 Oct 2010 07:54:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7saGv024140 for ; Wed, 20 Oct 2010 07:54:36 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7saMe024139 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:54:36 GMT (envelope-from maxim@repoman.freebsd.org) Message-Id: <201010200754.o9K7saMe024139@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to maxim@repoman.freebsd.org using -f From: Maxim Konovalov Date: Wed, 20 Oct 2010 07:54:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/examples/etc make.conf X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:54:36 -0000 maxim 2010-10-20 07:54:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/examples/etc make.conf Log: SVN rev 214103 on 2010-10-20 07:54:27Z by maxim MFC r212138: csup(1) does not have -g flag. Revision Changes Path 1.279.10.3 +1 -1 src/share/examples/etc/make.conf From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 07:54:57 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 706451065698 for ; Wed, 20 Oct 2010 07:54:57 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 43C738FC1D for ; Wed, 20 Oct 2010 07:54:57 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K7sv5B024173 for ; Wed, 20 Oct 2010 07:54:57 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K7svjv024172 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 07:54:57 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010200754.o9K7svjv024172@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Wed, 20 Oct 2010 07:54:43 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:54:57 -0000 obrien 2010-10-20 07:54:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh Makefile Log: SVN rev 214104 on 2010-10-20 07:54:43Z by obrien MFC: r213774: DEBUG_FLAGS should be used to enable extra debugging rather than frobbing CFLAGS directly. r213798: do not inline static functions if debugging Revision Changes Path 1.47.2.4 +1 -1 src/bin/sh/Makefile From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 09:35:33 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED3001065782 for ; Wed, 20 Oct 2010 09:35:33 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C0A4B8FC19 for ; Wed, 20 Oct 2010 09:35:33 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K9ZXIl044608 for ; Wed, 20 Oct 2010 09:35:33 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K9ZXpi044607 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 09:35:33 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201010200935.o9K9ZXpi044607@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Wed, 20 Oct 2010 09:35:20 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss setup.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 09:35:34 -0000 ed 2010-10-20 09:35:20 UTC FreeBSD src repository Modified files: usr.bin/truss setup.c Log: SVN rev 214105 on 2010-10-20 09:35:20Z by ed Remove setpgid() call before executing child process. Using a separate process group here is bad, since (for example) job control in the TTY layer prevents interaction with the TTY, causing the child process to hang. Mentioned on: current@ MFC after: 2 weeks Revision Changes Path 1.29 +0 -1 src/usr.bin/truss/setup.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 09:41:54 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8150B1065713 for ; Wed, 20 Oct 2010 09:41:54 +0000 (UTC) (envelope-from jchandra@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5437B8FC13 for ; Wed, 20 Oct 2010 09:41:54 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K9fss4045107 for ; Wed, 20 Oct 2010 09:41:54 GMT (envelope-from jchandra@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K9fslH045106 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 09:41:54 GMT (envelope-from jchandra@repoman.freebsd.org) Message-Id: <201010200941.o9K9fslH045106@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jchandra@repoman.freebsd.org using -f From: "Jayachandran C." Date: Wed, 20 Oct 2010 09:41:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/rmi xlr_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 09:41:54 -0000 jchandra 2010-10-20 09:41:36 UTC FreeBSD src repository Modified files: sys/mips/rmi xlr_machdep.c Log: SVN rev 214106 on 2010-10-20 09:41:36Z by jchandra On uniprocessor, warn and fixup hardware cpu mask if more than on CPU is enabled by the bootloader. Revision Changes Path 1.24 +9 -1 src/sys/mips/rmi/xlr_machdep.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 09:50:30 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A83F4106564A for ; Wed, 20 Oct 2010 09:50:30 +0000 (UTC) (envelope-from jchandra@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 941D78FC12 for ; Wed, 20 Oct 2010 09:50:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9K9oUlD045718 for ; Wed, 20 Oct 2010 09:50:30 GMT (envelope-from jchandra@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9K9oUdh045717 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 09:50:30 GMT (envelope-from jchandra@repoman.freebsd.org) Message-Id: <201010200950.o9K9oUdh045717@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jchandra@repoman.freebsd.org using -f From: "Jayachandran C." Date: Wed, 20 Oct 2010 09:50:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/rmi board.c src/sys/mips/rmi/dev/nlge if_nlge.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 09:50:30 -0000 jchandra 2010-10-20 09:50:11 UTC FreeBSD src repository Modified files: sys/mips/rmi board.c sys/mips/rmi/dev/nlge if_nlge.c Log: SVN rev 214107 on 2010-10-20 09:50:11Z by jchandra Network driver updates - Fix network driver issue on a XLS eval board (major# 8). - Fix issue uncovered by r213475 in check for XGMII Submitted by: Sriram Gorti (srgorti at netlogicmicro dot com) Revision Changes Path 1.11 +6 -6 src/sys/mips/rmi/board.c 1.16 +1 -1 src/sys/mips/rmi/dev/nlge/if_nlge.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 12:38:22 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81ED91065679 for ; Wed, 20 Oct 2010 12:38:22 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 54E378FC12 for ; Wed, 20 Oct 2010 12:38:22 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KCcMuG060656 for ; Wed, 20 Oct 2010 12:38:22 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KCcMP9060655 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 12:38:22 GMT (envelope-from maxim@repoman.freebsd.org) Message-Id: <201010201238.o9KCcMP9060655@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to maxim@repoman.freebsd.org using -f From: Maxim Konovalov Date: Wed, 20 Oct 2010 12:38:05 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netinet/ipfw ip_fw_log.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 12:38:22 -0000 maxim 2010-10-20 12:38:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netinet/ipfw ip_fw_log.c Log: SVN rev 214108 on 2010-10-20 12:38:05Z by maxim MFC r211992: some programs could send broadcast/multicast traffic to ipfw pseudo-interface. This leads to a panic due to uninitialized if_broadcastaddr address. Initialize it and implement ip_output() method to prevent mbuf leak later. Revision Changes Path 1.9.2.4 +21 -2 src/sys/netinet/ipfw/ip_fw_log.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 16:40:30 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5CC51065672 for ; Wed, 20 Oct 2010 16:40:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 897C98FC22 for ; Wed, 20 Oct 2010 16:40:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KGeUji092986 for ; Wed, 20 Oct 2010 16:40:30 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KGeUQV092983 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 16:40:30 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010201640.o9KGeUQV092983@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Wed, 20 Oct 2010 16:40:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci_pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 16:40:30 -0000 jkim 2010-10-20 16:40:14 UTC FreeBSD src repository Modified files: sys/dev/pci pci_pci.c Log: SVN rev 214109 on 2010-10-20 16:40:14Z by jkim Do not apply do_power_resume for suspending P2P bridge as we did in r214064. Revision Changes Path 1.63 +1 -1 src/sys/dev/pci/pci_pci.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 16:47:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14B2F1065673 for ; Wed, 20 Oct 2010 16:47:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 01C748FC0C for ; Wed, 20 Oct 2010 16:47:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KGlNbg004544 for ; Wed, 20 Oct 2010 16:47:23 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KGlNQs004543 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 16:47:23 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010201647.o9KGlNQs004543@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Wed, 20 Oct 2010 16:47:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci.c src/sys/dev/pci pci.c pci_pci.c pci_private.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 16:47:24 -0000 jkim 2010-10-20 16:47:09 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c sys/dev/pci pci.c pci_pci.c pci_private.h Log: SVN rev 214110 on 2010-10-20 16:47:09Z by jkim Introduce a new tunable 'hw.pci.do_power_suspend'. This tunable lets you avoid PCI power state transition from D0 to D3 for suspending case. Default is 1 or enabled. Revision Changes Path 1.37 +1 -1 src/sys/dev/acpica/acpi_pci.c 1.406 +9 -1 src/sys/dev/pci/pci.c 1.64 +1 -1 src/sys/dev/pci/pci_pci.c 1.31 +1 -0 src/sys/dev/pci/pci_private.h From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 17:43:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF3E4106566B for ; Wed, 20 Oct 2010 17:43:37 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ACA208FC0A for ; Wed, 20 Oct 2010 17:43:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KHhbkX009759 for ; Wed, 20 Oct 2010 17:43:37 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KHhbT8009758 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 17:43:37 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010201743.o9KHhbT8009758@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Wed, 20 Oct 2010 17:42:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man4 lagg.4 src/sys/net if_lagg.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 17:43:37 -0000 delphij 2010-10-20 17:42:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man4 lagg.4 sys/net if_lagg.c Log: SVN rev 214111 on 2010-10-20 17:42:10Z by delphij MFC r212100 (emaste),213632,214066: Add a new syslog knob, net.link.lagg.failover_rx_all, to control whether to accept input packets on any link in a failover lagg, and add the corresponding documentation. Revision Changes Path 1.8.2.2 +11 -2 src/share/man/man4/lagg.4 1.37.2.4 +9 -1 src/sys/net/if_lagg.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 17:58:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52754106566B for ; Wed, 20 Oct 2010 17:58:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3FDA18FC18 for ; Wed, 20 Oct 2010 17:58:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KHwtDs010784 for ; Wed, 20 Oct 2010 17:58:55 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KHwtUR010783 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 17:58:55 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010201758.o9KHwtUR010783@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Wed, 20 Oct 2010 17:58:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/share/man/man4 lagg.4 src/sys/net if_lagg.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 17:58:55 -0000 delphij 2010-10-20 17:58:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) share/man/man4 lagg.4 sys/net if_lagg.c Log: SVN rev 214112 on 2010-10-20 17:58:12Z by delphij MFC r190527,190528,190531: 190527(sam): fix wired-wireless failover example and remove incorrect comment about WPA not working 190528(sam): remove bogus nwid use; that's a compat shim for netbsd 190531(bruffer): Fix typo. MFC r212100 (emaste),213632,214066: Add a new syslog knob, net.link.lagg.failover_rx_all, to control whether to accept input packets on any link in a failover lagg, and add the corresponding documentation. Revision Changes Path 1.4.2.2 +17 -7 src/share/man/man4/lagg.4 1.19.2.10 +9 -1 src/sys/net/if_lagg.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 18:25:32 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 882D8106566C for ; Wed, 20 Oct 2010 18:25:32 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 72DC48FC0A for ; Wed, 20 Oct 2010 18:25:32 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KIPWZQ013898 for ; Wed, 20 Oct 2010 18:25:32 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KIPW03013897 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 18:25:32 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010201825.o9KIPW03013897@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Wed, 20 Oct 2010 18:25:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh alias.c cd.c eval.c exec.c expand.c histedit.c input.c jobs.c mail.c main.c memalloc.c nodes.c.pat options.c output.c parser.c redir.c shell.h show.c var.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 18:25:32 -0000 obrien 2010-10-20 18:25:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh alias.c cd.c eval.c exec.c expand.c histedit.c input.c jobs.c mail.c main.c memalloc.c nodes.c.pat options.c output.c parser.c redir.c shell.h show.c var.c Log: SVN rev 214113 on 2010-10-20 18:25:00Z by obrien MFC r213811: c89 linkage and storage class (also covers r213744, r213760) Revision Changes Path 1.25.2.3 +8 -8 src/bin/sh/alias.c 1.36.2.5 +18 -18 src/bin/sh/cd.c 1.64.2.5 +18 -18 src/bin/sh/eval.c 1.34.2.5 +11 -11 src/bin/sh/exec.c 1.55.2.6 +43 -43 src/bin/sh/expand.c 1.31.2.5 +2 -2 src/bin/sh/histedit.c 1.25.2.4 +3 -3 src/bin/sh/input.c 1.72.10.4 +29 -29 src/bin/sh/jobs.c 1.14.10.3 +2 -2 src/bin/sh/mail.c 1.31.2.6 +4 -4 src/bin/sh/main.c 1.28.2.3 +2 -2 src/bin/sh/memalloc.c 1.15.30.3 +14 -14 src/bin/sh/nodes.c.pat 1.27.2.4 +8 -8 src/bin/sh/options.c 1.21.2.3 +1 -1 src/bin/sh/output.c 1.63.2.10 +46 -45 src/bin/sh/parser.c 1.27.2.2 +5 -5 src/bin/sh/redir.c 1.18.2.2 +1 -2 src/bin/sh/shell.h 1.23.10.3 +1 -1 src/bin/sh/show.c 1.39.2.6 +9 -9 src/bin/sh/var.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 19:52:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C61E1065674 for ; Wed, 20 Oct 2010 19:52:38 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 501828FC14 for ; Wed, 20 Oct 2010 19:52:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KJqcN8021139 for ; Wed, 20 Oct 2010 19:52:38 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KJqchm021138 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 19:52:38 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010201952.o9KJqchm021138@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Wed, 20 Oct 2010 19:52:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/common gpt.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 19:52:39 -0000 pjd 2010-10-20 19:52:27 UTC FreeBSD src repository Modified files: sys/boot/common gpt.c Log: SVN rev 214114 on 2010-10-20 19:52:27Z by pjd Correct typos. Revision Changes Path 1.2 +2 -2 src/sys/boot/common/gpt.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 19:53:44 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73AFC1065840 for ; Wed, 20 Oct 2010 19:53:44 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 478F78FC13 for ; Wed, 20 Oct 2010 19:53:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KJritd021215 for ; Wed, 20 Oct 2010 19:53:44 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KJriqj021214 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 19:53:44 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201010201953.o9KJriqj021214@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Wed, 20 Oct 2010 19:53:29 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/login login.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 19:53:44 -0000 ed 2010-10-20 19:53:29 UTC FreeBSD src repository Modified files: usr.bin/login login.c Log: SVN rev 214115 on 2010-10-20 19:53:29Z by ed Get rid of hand-rolled closefrom(3). Revision Changes Path 1.112 +1 -2 src/usr.bin/login/login.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 20:02:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8879D106564A for ; Wed, 20 Oct 2010 20:02:05 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B8968FC1B for ; Wed, 20 Oct 2010 20:02:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KK25aX021868 for ; Wed, 20 Oct 2010 20:02:05 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KK25m8021867 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 20:02:05 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010202002.o9KK25m8021867@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Wed, 20 Oct 2010 20:01:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c g_eli_integrity.c g_eli_privacy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 20:02:05 -0000 pjd 2010-10-20 20:01:45 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c g_eli_integrity.c g_eli_privacy.c Log: SVN rev 214116 on 2010-10-20 20:01:45Z by pjd - Add missing comments. - Make a comment consistent with others. Revision Changes Path 1.52 +4 -2 src/sys/geom/eli/g_eli.c 1.8 +5 -0 src/sys/geom/eli/g_eli_integrity.c 1.6 +5 -0 src/sys/geom/eli/g_eli_privacy.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 20:52:13 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40083106566C for ; Wed, 20 Oct 2010 20:52:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2B8C08FC13 for ; Wed, 20 Oct 2010 20:52:13 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KKqDun037453 for ; Wed, 20 Oct 2010 20:52:13 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KKqDPF037452 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 20:52:13 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010202052.o9KKqDPF037452@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Wed, 20 Oct 2010 20:50:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/class/eli geli.8 geom_eli.c src/sys/geom/eli g_eli.c g_eli.h g_eli_ctl.c g_eli_integrity.c g_eli_privacy.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 20:52:13 -0000 pjd 2010-10-20 20:50:55 UTC FreeBSD src repository Modified files: sbin/geom/class/eli geli.8 geom_eli.c sys/geom/eli g_eli.c g_eli.h g_eli_ctl.c g_eli_integrity.c g_eli_privacy.c Log: SVN rev 214118 on 2010-10-20 20:50:55Z by pjd Bring in geli suspend/resume functionality (finally). Before this change if you wanted to suspend your laptop and be sure that your encryption keys are safe, you had to stop all processes that use file system stored on encrypted device, unmount the file system and detach geli provider. This isn't very handy. If you are a lucky user of a laptop where suspend/resume actually works with FreeBSD (I'm not!) you most likely want to suspend your laptop, because you don't want to start everything over again when you turn your laptop back on. And this is where geli suspend/resume steps in. When you execute: # geli suspend -a geli will wait for all in-flight I/O requests, suspend new I/O requests, remove all geli sensitive data from the kernel memory (like encryption keys) and will wait for either 'geli resume' or 'geli detach'. Now with no keys in memory you can suspend your laptop without stopping any processes or unmounting any file systems. When you resume your laptop you have to resume geli devices using 'geli resume' command. You need to provide your passphrase, etc. again so the keys can be restored and suspended I/O requests released. Of course you need to remember that 'geli suspend' won't clear file system cache and other places where data from your geli-encrypted file system might be present. But to get rid of those stopping processes and unmounting file system won't help either - you have to turn your laptop off. Be warned. Also note, that suspending geli device which contains file system with geli utility (or anything used by 'geli resume') is not very good idea, as you won't be able to resume it - when you execute geli(8), the kernel will try to read it and this read I/O request will be suspended. Revision Changes Path 1.30 +93 -1 src/sbin/geom/class/eli/geli.8 1.38 +59 -0 src/sbin/geom/class/eli/geom_eli.c 1.53 +100 -26 src/sys/geom/eli/g_eli.c 1.21 +7 -0 src/sys/geom/eli/g_eli.h 1.18 +213 -2 src/sys/geom/eli/g_eli_ctl.c 1.9 +5 -3 src/sys/geom/eli/g_eli_integrity.c 1.7 +54 -4 src/sys/geom/eli/g_eli_privacy.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 21:10:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 936EE1065697 for ; Wed, 20 Oct 2010 21:10:34 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66F238FC14 for ; Wed, 20 Oct 2010 21:10:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KLAYMR039836 for ; Wed, 20 Oct 2010 21:10:34 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KLAYJp039835 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 21:10:34 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010202110.o9KLAYJp039835@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Wed, 20 Oct 2010 21:10:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/hastd hooks.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 21:10:34 -0000 pjd 2010-10-20 21:10:01 UTC FreeBSD src repository Modified files: sbin/hastd hooks.c Log: SVN rev 214119 on 2010-10-20 21:10:01Z by pjd Use closefrom(2) instead of close(2) in a loop. MFC after: 1 week Revision Changes Path 1.8 +8 -21 src/sbin/hastd/hooks.c From owner-cvs-src-old@FreeBSD.ORG Wed Oct 20 23:41:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B45C106566C for ; Wed, 20 Oct 2010 23:41:38 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 67F5C8FC1D for ; Wed, 20 Oct 2010 23:41:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9KNfcNg053055 for ; Wed, 20 Oct 2010 23:41:38 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9KNfcSZ053054 for cvs-src-old@freebsd.org; Wed, 20 Oct 2010 23:41:38 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201010202341.o9KNfcSZ053054@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Wed, 20 Oct 2010 23:41:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c pcireg.h pcivar.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 23:41:38 -0000 jkim 2010-10-20 23:41:16 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c pcireg.h pcivar.h Log: SVN rev 214122 on 2010-10-20 23:41:16Z by jkim Update PCI power management registers per PCI Bus Power Management Interface Specification Rev. 1.2. Rename pp_pcmcsr field of PM capabilities to pp_bse to avoid further confusions and adjust some comments accordingly. The real PMCSR (Power Management Control/Status Register) is PCIR_POWER_STATUS and it is actually BSE (PCI-to-PCI Bridge Support Extensions) register. Revision Changes Path 1.407 +1 -1 src/sys/dev/pci/pci.c 1.79 +18 -14 src/sys/dev/pci/pcireg.h 1.88 +3 -3 src/sys/dev/pci/pcivar.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 01:14:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17E30106564A for ; Thu, 21 Oct 2010 01:14:00 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE75A8FC0C for ; Thu, 21 Oct 2010 01:13:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9L1DxYh073088 for ; Thu, 21 Oct 2010 01:13:59 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9L1DxuF073087 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 01:13:59 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010210113.o9L1DxuF073087@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Thu, 21 Oct 2010 01:13:41 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh error.c expand.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 01:14:00 -0000 obrien 2010-10-21 01:13:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh error.c expand.c Log: SVN rev 214123 on 2010-10-21 01:13:41Z by obrien MFC r211281: don't shadow sigset r212243: improve comments in expand.c r213925: use rather than Revision Changes Path 1.26.10.3 +3 -3 src/bin/sh/error.c 1.55.2.7 +35 -18 src/bin/sh/expand.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 06:52:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB5A81065780 for ; Thu, 21 Oct 2010 06:52:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D87128FC1E for ; Thu, 21 Oct 2010 06:52:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9L6qOwJ014061 for ; Thu, 21 Oct 2010 06:52:24 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9L6qOFq014060 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 06:52:24 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010210652.o9L6qOFq014060@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Thu, 21 Oct 2010 06:52:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/lpr/lpr lpr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 06:52:25 -0000 edwin 2010-10-21 06:52:14 UTC FreeBSD src repository Modified files: usr.sbin/lpr/lpr lpr.c Log: SVN rev 214124 on 2010-10-21 06:52:14Z by edwin Fix printing of files located on ZFS filesystem with an st_dev or st_ino larger than 2**31. From the PR: Printing from a ZFS filesystem using 'lp' fails and returns an email reporting "Your printer job was not printed because it was not linked to the original file". In order to protect against files being switched when files are printed using 'lp' or 'lpr -s', the st_dev and st_ino values for the original file are saved by lpr and verified by lpd before the file is printed. Unfortunately, lpr prints both values using '%d' (although both fields are unsigned) and lpd(8) assumes a string of decimal digits. ZFS (at least) generates st_dev values greater than 2^31-1, resulting in negative values being printed - which lpd cannot parse, leading it to report that the file has been switched. A similar problem would occur with large inode numbers. How-To-Repeat: Find a file with either st_dev or st_ino greater than 2^31-1 (stat(1) will report both numbers) and print it with 'lpq -s'. This should generate an email reporting that the file could not be printed because it was not linked to the original file PR: bin/151567 Submitted by: Peter Jeremy MFC after: 1 week Revision Changes Path 1.45 +1 -1 src/usr.sbin/lpr/lpr/lpr.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 08:57:46 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CBB8106566B for ; Thu, 21 Oct 2010 08:57:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F3E938FC08 for ; Thu, 21 Oct 2010 08:57:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9L8vjhQ036005 for ; Thu, 21 Oct 2010 08:57:45 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9L8vjec036004 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 08:57:45 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010210857.o9L8vjec036004@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Thu, 21 Oct 2010 08:57:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_syscalls.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 08:57:46 -0000 delphij 2010-10-21 08:57:25 UTC FreeBSD src repository Modified files: sys/kern kern_syscalls.c Log: SVN rev 214125 on 2010-10-21 08:57:25Z by delphij In syscall_module_handler(): all switch branches return, remove unreached code as pointed out in a Chinese forum [1]. [1] http://www.freebsdchina.org/forum/viewtopic.php?t=50619 Pointed out by: btw616 MFC after: 1 month Revision Changes Path 1.16 +1 -4 src/sys/kern/kern_syscalls.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:11:52 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16C8B106566B for ; Thu, 21 Oct 2010 10:11:52 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DDEC58FC0A for ; Thu, 21 Oct 2010 10:11:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LABpx4043501 for ; Thu, 21 Oct 2010 10:11:51 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LABpjj043500 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:11:51 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211011.o9LABpjj043500@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 10:11:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man4 nxge.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:11:52 -0000 pluknet 2010-10-21 10:11:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man4 nxge.4 Log: SVN rev 214126 on 2010-10-21 10:11:39Z by pluknet Fix typo: Offlaod -> Offload. PR: docs/150756 Approved by: avg (mentor) Revision Changes Path 1.5.2.2 +1 -1 src/share/man/man4/nxge.4 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:14:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BFA51065670 for ; Thu, 21 Oct 2010 10:14:12 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6EEBF8FC1C for ; Thu, 21 Oct 2010 10:14:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LAECQb043649 for ; Thu, 21 Oct 2010 10:14:12 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LAECQE043648 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:14:12 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211014.o9LAECQE043648@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 10:13:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/share/man/man4 nxge.4 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:14:12 -0000 pluknet 2010-10-21 10:13:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) share/man/man4 nxge.4 Log: SVN rev 214127 on 2010-10-21 10:13:52Z by pluknet MFC r214020: Fix typo: Offlaod -> Offload. PR: docs/150756 Approved by: avg (mentor) Revision Changes Path 1.3.2.3 +1 -1 src/share/man/man4/nxge.4 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:36:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EBD81065674 for ; Thu, 21 Oct 2010 10:36:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 61B7F8FC1C for ; Thu, 21 Oct 2010 10:36:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LAamM9045365 for ; Thu, 21 Oct 2010 10:36:48 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LAamBd045364 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:36:48 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010211036.o9LAamBd045364@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Thu, 21 Oct 2010 10:36:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libgeom geom_ctl.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:36:48 -0000 pjd 2010-10-21 10:36:36 UTC FreeBSD src repository Modified files: lib/libgeom geom_ctl.c Log: SVN rev 214128 on 2010-10-21 10:36:36Z by pjd - Simplify gctl_get_handle() a bit. - Prefer 'unsigned int' over 'u_int' in userland code. Revision Changes Path 1.6 +3 -5 src/lib/libgeom/geom_ctl.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:38:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B1031065695 for ; Thu, 21 Oct 2010 10:38:24 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E2478FC15 for ; Thu, 21 Oct 2010 10:38:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LAcOsO045483 for ; Thu, 21 Oct 2010 10:38:24 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LAcO7g045482 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:38:24 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010211038.o9LAcO7g045482@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Thu, 21 Oct 2010 10:38:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libgeom geom_ctl.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:38:24 -0000 pjd 2010-10-21 10:38:14 UTC FreeBSD src repository Modified files: lib/libgeom geom_ctl.c Log: SVN rev 214129 on 2010-10-21 10:38:14Z by pjd Remove code duplication by introducing static gctl_param_add() function which is now used by both gctl_ro_param() and gctl_rw_param(). Revision Changes Path 1.7 +14 -22 src/lib/libgeom/geom_ctl.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:39:15 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73CEF1065697 for ; Thu, 21 Oct 2010 10:39:15 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 46E938FC0C for ; Thu, 21 Oct 2010 10:39:15 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LAdFg0045585 for ; Thu, 21 Oct 2010 10:39:15 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LAdFet045584 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:39:15 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211039.o9LAdFet045584@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 10:38:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mfi mfireg.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:39:15 -0000 pluknet 2010-10-21 10:38:52 UTC FreeBSD src repository Modified files: sys/dev/mfi mfireg.h Log: SVN rev 214130 on 2010-10-21 10:38:52Z by pluknet Update PD state firmware definitions: add copyback, system. Reviewed by: jhb Approved by: avg (mentor) MFC after: 1 week Revision Changes Path 1.14 +3 -1 src/sys/dev/mfi/mfireg.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 10:46:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E5F31065782 for ; Thu, 21 Oct 2010 10:46:36 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5121D8FC14 for ; Thu, 21 Oct 2010 10:46:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LAkaNN046145 for ; Thu, 21 Oct 2010 10:46:36 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LAkaKO046144 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 10:46:36 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211046.o9LAkaKO046144@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 10:46:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/mfiutil mfi_drive.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 10:46:36 -0000 pluknet 2010-10-21 10:46:18 UTC FreeBSD src repository Modified files: usr.sbin/mfiutil mfi_drive.c Log: SVN rev 214131 on 2010-10-21 10:46:18Z by pluknet Enable copyback and system PD states. Reviewed by: jhb Approved by: avg (mentor) MFC after: 1 week X-MFC-After: r214130 Revision Changes Path 1.3 +4 -0 src/usr.sbin/mfiutil/mfi_drive.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 12:28:13 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1273F10656A4 for ; Thu, 21 Oct 2010 12:28:13 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F04098FC22 for ; Thu, 21 Oct 2010 12:28:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LCSC3l055614 for ; Thu, 21 Oct 2010 12:28:12 GMT (envelope-from uqs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LCSC2i055611 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 12:28:12 GMT (envelope-from uqs@repoman.freebsd.org) Message-Id: <201010211228.o9LCSC2i055611@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to uqs@repoman.freebsd.org using -f From: Ulrich Spoerlein Date: Thu, 21 Oct 2010 12:27:13 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys getpriority.2 pathconf.2 stat.2 src/sbin/fsirand fsirand.8 src/sbin/ipfw ipfw.8 src/sbin/restore restore.8 src/share/man/man4 iscsi_initiator.4 src/share/man/man5 elf.5 src/share/man/man9 sysctl_add_oid.9 src/usr.bin/mesg mesg.1 ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 12:28:13 -0000 uqs 2010-10-21 12:27:13 UTC FreeBSD src repository Modified files: lib/libc/sys getpriority.2 pathconf.2 stat.2 sbin/fsirand fsirand.8 sbin/ipfw ipfw.8 sbin/restore restore.8 share/man/man4 iscsi_initiator.4 share/man/man5 elf.5 share/man/man9 sysctl_add_oid.9 usr.bin/mesg mesg.1 usr.sbin/mtest mtest.8 Log: SVN rev 214132 on 2010-10-21 12:27:13Z by uqs mdoc: make pages render with mandoc It's a bit more pedantic regarding .Bl list elements. This has an added benefit of unbreaking the ipfw(8) manpage, where groff was silently skipping one list element. Revision Changes Path 1.14 +1 -1 src/lib/libc/sys/getpriority.2 1.25 +1 -2 src/lib/libc/sys/pathconf.2 1.51 +1 -1 src/lib/libc/sys/stat.2 1.19 +1 -1 src/sbin/fsirand/fsirand.8 1.243 +1 -2 src/sbin/ipfw/ipfw.8 1.54 +0 -1 src/sbin/restore/restore.8 1.7 +1 -1 src/share/man/man4/iscsi_initiator.4 1.38 +1 -1 src/share/man/man5/elf.5 1.23 +1 -1 src/share/man/man9/sysctl_add_oid.9 1.14 +1 -1 src/usr.bin/mesg/mesg.1 1.13 +1 -1 src/usr.sbin/mtest/mtest.8 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 12:58:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DB4310656B6 for ; Thu, 21 Oct 2010 12:58:34 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 01A9E8FC14 for ; Thu, 21 Oct 2010 12:58:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LCwXVl068709 for ; Thu, 21 Oct 2010 12:58:33 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LCwXHQ068708 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 12:58:33 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010211258.o9LCwXHQ068708@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Thu, 21 Oct 2010 12:58:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 12:58:34 -0000 pjd 2010-10-21 12:58:26 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c Log: SVN rev 214133 on 2010-10-21 12:58:26Z by pjd Fix a bug introduced in r213067 where we use authentication key before initializing it. Revision Changes Path 1.54 +10 -9 src/sys/geom/eli/g_eli.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 15:10:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D76F1065698 for ; Thu, 21 Oct 2010 15:10:55 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 018DA8FC14 for ; Thu, 21 Oct 2010 15:10:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LFAsME081231 for ; Thu, 21 Oct 2010 15:10:54 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LFAslE081230 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 15:10:54 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201010211510.o9LFAslE081230@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Thu, 21 Oct 2010 15:10:35 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen pututxline.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 15:10:55 -0000 ed 2010-10-21 15:10:35 UTC FreeBSD src repository Modified files: lib/libc/gen pututxline.c Log: SVN rev 214134 on 2010-10-21 15:10:35Z by ed Fix error handling logic of pututxline(3). Instead of only returning NULL when the entry is invalid and can't be matched against the current database, also return it when it cannot open the log files properly. Revision Changes Path 1.6 +21 -12 src/lib/libc/gen/pututxline.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 16:08:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC9E9106566B for ; Thu, 21 Oct 2010 16:08:45 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AA8E98FC18 for ; Thu, 21 Oct 2010 16:08:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LG8jo2086368 for ; Thu, 21 Oct 2010 16:08:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LG8jf4086367 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 16:08:45 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010211608.o9LG8jf4086367@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 16:08:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 16:08:45 -0000 rwatson 2010-10-21 16:08:31 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214135 on 2010-10-21 16:08:31Z by rwatson Improve the structure and implementation of the syscall_timing microbenchmark suite: - Use common benchmark_start/benchmark_stop routines to simplify individual benchmarks. - Add a central table of tests with names, where new tests can be hooked in easily. - Add new benchmarks for dup, shm_open, shm_open + fstat, fork, vfork, vfork + exec, chroot, setuid. - Accept a number of loops, not just a number of iterations. - Report results more usefully in a table. Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.4 +374 -106 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 16:21:15 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B512E1065670 for ; Thu, 21 Oct 2010 16:21:15 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A34D18FC18 for ; Thu, 21 Oct 2010 16:21:15 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LGLFXq087292 for ; Thu, 21 Oct 2010 16:21:15 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LGLFqd087291 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 16:21:15 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211621.o9LGLFqd087291@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 16:20:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if.c if.h src/sys/sys sockio.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 16:21:15 -0000 pluknet 2010-10-21 16:20:48 UTC FreeBSD src repository Modified files: sys/net if.c if.h sys/sys sockio.h Log: SVN rev 214136 on 2010-10-21 16:20:48Z by pluknet Reshuffle SIOCGIFCONF32 handler from r155224. - move all the chunks into one file, which allows to hide SIOCGIFCONF32 global definition as well. - replace __amd64__ with proper COMPAT_FREEBSD32 around. - handle 32bit capacity before going into the handler itself instead of doing internal 32bit specific changes within it (e.g. as it's done for SIOCGDEFIFACE32_IN6). - use explicitely sized types for ABI compat. Approved by: kib (mentor) MFC after: 2 weeks Revision Changes Path 1.390 +29 -17 src/sys/net/if.c 1.127 +0 -10 src/sys/net/if.h 1.39 +0 -3 src/sys/sys/sockio.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:05:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A621A106566C for ; Thu, 21 Oct 2010 17:05:36 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7A7428FC08 for ; Thu, 21 Oct 2010 17:05:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LH5as5002596 for ; Thu, 21 Oct 2010 17:05:36 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LH5a4V002595 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:05:36 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010211705.o9LH5a4V002595@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Thu, 21 Oct 2010 17:05:15 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/unzip unzip.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:05:36 -0000 glebius 2010-10-21 17:05:15 UTC FreeBSD src repository Modified files: usr.bin/unzip unzip.c Log: SVN rev 214137 on 2010-10-21 17:05:15Z by glebius Make it possible to read input from stdin. Without this change I don't see a way to unpack a multivolume archive without wasting disk space for a temporary file. Revision Changes Path 1.8 +4 -2 src/usr.bin/unzip/unzip.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:14:57 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CA2E1065670 for ; Thu, 21 Oct 2010 17:14:57 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 50DA28FC16 for ; Thu, 21 Oct 2010 17:14:57 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHEvgl003217 for ; Thu, 21 Oct 2010 17:14:57 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHEvuK003216 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:14:57 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010211714.o9LHEvuK003216@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 17:14:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions-cleanup.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:14:57 -0000 imp 2010-10-21 17:14:44 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions-cleanup.sh Log: SVN rev 214138 on 2010-10-21 17:14:44Z by imp This small patch updates the "geli setkey" flags pc-sysinstall uses when saving a users passphrase, to make it work in HEAD with recent geli improvements. Submitted by: Kris Moore PR: 151002 Revision Changes Path 1.5 +1 -1 src/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:20:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70B22106566C for ; Thu, 21 Oct 2010 17:20:48 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 452778FC19 for ; Thu, 21 Oct 2010 17:20:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHKm5g003679 for ; Thu, 21 Oct 2010 17:20:48 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHKmNL003678 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:20:48 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010211720.o9LHKmNL003678@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 17:20:37 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:20:48 -0000 imp 2010-10-21 17:20:37 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions.sh Log: SVN rev 214139 on 2010-10-21 17:20:37Z by imp This is an updated patch to the last patch to do this which fixes a local variable issue. This patch decompresses compressed images to the stdout when writing to a device to avoid running out of space issues. Submitted by: John Hixson Pr: 151049 Revision Changes Path 1.6 +44 -60 src/usr.sbin/pc-sysinstall/backend/functions.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:23:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B476106566C for ; Thu, 21 Oct 2010 17:23:24 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3FAC98FC19 for ; Thu, 21 Oct 2010 17:23:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHNOLv003879 for ; Thu, 21 Oct 2010 17:23:24 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHNOjB003878 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:23:24 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010211723.o9LHNOjB003878@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Thu, 21 Oct 2010 17:23:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/unzip unzip.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:23:24 -0000 glebius 2010-10-21 17:23:09 UTC FreeBSD src repository Modified files: usr.bin/unzip unzip.1 Log: SVN rev 214140 on 2010-10-21 17:23:09Z by glebius Document possibility to read from stdin. Revision Changes Path 1.6 +5 -1 src/usr.bin/unzip/unzip.1 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:24:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BA9B106564A for ; Thu, 21 Oct 2010 17:24:00 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4FB5E8FC1A for ; Thu, 21 Oct 2010 17:24:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHO0q2003945 for ; Thu, 21 Oct 2010 17:24:00 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHO084003943 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:24:00 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010211724.o9LHO084003943@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 17:23:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend-query list-components.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:24:00 -0000 imp 2010-10-21 17:23:48 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend-query list-components.sh Log: SVN rev 214141 on 2010-10-21 17:23:48Z by imp This patch will only list components if the directory exists. The directory exist on PC-BSD but not FreeBSD, so an extra check is made. Submitted by: John Hixson PR: 151461 Revision Changes Path 1.3 +19 -18 src/usr.sbin/pc-sysinstall/backend-query/list-components.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:27:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 546DA10657E6 for ; Thu, 21 Oct 2010 17:27:51 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 42CCD8FC1E for ; Thu, 21 Oct 2010 17:27:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHRpvl004244 for ; Thu, 21 Oct 2010 17:27:51 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHRpGW004243 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:27:51 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010211727.o9LHRpGW004243@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 17:27:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:27:51 -0000 rwatson 2010-10-21 17:27:39 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214142 on 2010-10-21 17:27:39Z by rwatson Further enhancements to syscall_timing: - Use getopt rather than hand-parsed arguments - Allow iterations to be specified and/or a new number of seconds bound on the number of iterations - Fix printout of timer resolution - Add new tests, such as TCP and UDP socket creation, and open/read/close of /dev/zero and /dev/null. Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.5 +257 -78 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:29:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CE43106564A for ; Thu, 21 Oct 2010 17:29:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 421B68FC23 for ; Thu, 21 Oct 2010 17:29:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHTgwH004367 for ; Thu, 21 Oct 2010 17:29:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHTg87004366 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:29:42 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010211729.o9LHTg87004366@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 17:29:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions-disk.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:29:42 -0000 imp 2010-10-21 17:29:18 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions-disk.sh Log: SVN rev 214143 on 2010-10-21 17:29:18Z by imp Left over from prior patch removed. Submitted by: John Hixon PR: 151442 (but the patch was backwards there) Revision Changes Path 1.7 +0 -11 src/usr.sbin/pc-sysinstall/backend/functions-disk.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:29:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60075106564A for ; Thu, 21 Oct 2010 17:29:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4EE728FC1B for ; Thu, 21 Oct 2010 17:29:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHTmvx004388 for ; Thu, 21 Oct 2010 17:29:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHTmN7004387 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:29:48 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201010211729.o9LHTmN7004387@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 21 Oct 2010 17:29:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c vm_map.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:29:48 -0000 jhb 2010-10-21 17:29:32 UTC FreeBSD src repository Modified files: sys/vm vm_map.c vm_map.h Log: SVN rev 214144 on 2010-10-21 17:29:32Z by jhb - Make 'vm_refcnt' volatile so that compilers won't be tempted to treat its value as a loop invariant. Currently this is a no-op because 'atomic_cmpset_int()' clobbers all memory on current architectures. - Use atomic_fetchadd_int() instead of an atomic_cmpset_int() loop to drop a reference in vmspace_free(). Reviewed by: alc MFC after: 1 month Revision Changes Path 1.435 +1 -5 src/sys/vm/vm_map.c 1.137 +1 -1 src/sys/vm/vm_map.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:35:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56F891065670 for ; Thu, 21 Oct 2010 17:35:24 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 454DC8FC15 for ; Thu, 21 Oct 2010 17:35:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHZOdY004896 for ; Thu, 21 Oct 2010 17:35:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHZO7D004895 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:35:24 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010211735.o9LHZO7D004895@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 17:35:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:35:24 -0000 rwatson 2010-10-21 17:35:08 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214145 on 2010-10-21 17:35:08Z by rwatson Fix bug in recent syscall_timing change: measure the number of iterations each loop, rather than once up front. The distinction is unimportant when doing a fix iteration count, but when using a timer, it should vary. Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.6 +4 -3 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 17:46:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7ED50106564A for ; Thu, 21 Oct 2010 17:46:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5368A8FC16 for ; Thu, 21 Oct 2010 17:46:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LHkjj2005818 for ; Thu, 21 Oct 2010 17:46:45 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LHkjTd005817 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 17:46:45 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201010211746.o9LHkjTd005817@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 21 Oct 2010 17:46:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 17:46:45 -0000 jhb 2010-10-21 17:46:23 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: SVN rev 214146 on 2010-10-21 17:46:23Z by jhb Clarify a misleading comment. The test in pci_reserve_map() was meant to ignore BARs that are invalid due to having a size of zero, not to ignore BARs with an existing base of zero. While here, reorganize the code slightly to make the intent clearer. Reported by: avg MFC after: 1 week Revision Changes Path 1.408 +9 -9 src/sys/dev/pci/pci.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 18:21:36 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F6F2106576D for ; Thu, 21 Oct 2010 18:21:36 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 740C98FC0C for ; Thu, 21 Oct 2010 18:21:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LILaXo009379 for ; Thu, 21 Oct 2010 18:21:36 GMT (envelope-from bcr@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LILacN009378 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 18:21:36 GMT (envelope-from bcr@repoman.freebsd.org) Message-Id: <201010211821.o9LILacN009378@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bcr@repoman.freebsd.org using -f From: Benedict Reuschling Date: Thu, 21 Oct 2010 18:21:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib strtonum.3 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 18:21:36 -0000 bcr 2010-10-21 18:21:19 UTC FreeBSD src repository Modified files: lib/libc/stdlib strtonum.3 Log: SVN rev 214147 on 2010-10-21 18:21:19Z by bcr Sync with OpenBSD rev. 1.13: strtonum does not require limits.h Obtained from: OpenBSD Discussed with: ru@ MFC after: 5 days Revision Changes Path 1.6 +1 -2 src/lib/libc/stdlib/strtonum.3 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 18:31:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8CB01065695 for ; Thu, 21 Oct 2010 18:31:12 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8D53A8FC0C for ; Thu, 21 Oct 2010 18:31:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LIVCqN010053 for ; Thu, 21 Oct 2010 18:31:12 GMT (envelope-from bcr@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LIVCQb010052 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 18:31:12 GMT (envelope-from bcr@repoman.freebsd.org) Message-Id: <201010211831.o9LIVCQb010052@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bcr@repoman.freebsd.org using -f From: Benedict Reuschling Date: Thu, 21 Oct 2010 18:30:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib strtonum.3 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 18:31:12 -0000 bcr 2010-10-21 18:30:48 UTC FreeBSD src repository Modified files: lib/libc/stdlib strtonum.3 Log: SVN rev 214148 on 2010-10-21 18:30:48Z by bcr Document strtonum()s behavior of setting errno to 0 when no error is found. PR: docs/143330 Submitted by: Efstratios Karatzas (gpf dot kira at gmail dot com) Discussed with: ru@ MFC after: 7 days Revision Changes Path 1.7 +2 -0 src/lib/libc/stdlib/strtonum.3 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 18:49:33 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF22E106566B for ; Thu, 21 Oct 2010 18:49:33 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8392A8FC0C for ; Thu, 21 Oct 2010 18:49:33 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LInXZ9011340 for ; Thu, 21 Oct 2010 18:49:33 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LInXId011339 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 18:49:33 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010211849.o9LInXId011339@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Thu, 21 Oct 2010 18:49:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfsserver nfs_nfsdport.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 18:49:33 -0000 rmacklem 2010-10-21 18:49:12 UTC FreeBSD src repository Modified files: sys/fs/nfsserver nfs_nfsdport.c Log: SVN rev 214149 on 2010-10-21 18:49:12Z by rmacklem Modify the experimental NFS server in a manner analagous to r214049 for the regular NFS server, so that it will not do a VOP_LOOKUP() of ".." when at the root of a file system when performing a ReaddirPlus RPC. MFC after: 10 days Revision Changes Path 1.25 +9 -1 src/sys/fs/nfsserver/nfs_nfsdport.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:02:14 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CF9910656C3 for ; Thu, 21 Oct 2010 19:02:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 511948FC25 for ; Thu, 21 Oct 2010 19:02:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJ2E1i012235 for ; Thu, 21 Oct 2010 19:02:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJ2Efh012234 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:02:14 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010211902.o9LJ2Efh012234@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 19:01:59 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:02:14 -0000 rwatson 2010-10-21 19:01:59 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214151 on 2010-10-21 19:01:59Z by rwatson Further syscall_timing improvements: allow an arbitrary "path" string argument to be passed on the command line, allowing file-related tests to be pointed at wherever desired. Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.7 +41 -45 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:03:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3FEE10656C4 for ; Thu, 21 Oct 2010 19:03:45 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A82738FC19 for ; Thu, 21 Oct 2010 19:03:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJ3jsV013386 for ; Thu, 21 Oct 2010 19:03:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJ3jUU013385 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:03:45 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010211903.o9LJ3jUU013385@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 19:03:24 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:03:45 -0000 rwatson 2010-10-21 19:03:24 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214154 on 2010-10-21 19:03:24Z by rwatson Add Cambridge/Google tag since the copyright has been updated. MFC after: 2 weeks Revision Changes Path 1.8 +3 -0 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:18:11 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16F371065673 for ; Thu, 21 Oct 2010 19:18:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04BAE8FC12 for ; Thu, 21 Oct 2010 19:18:11 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJIAwu014442 for ; Thu, 21 Oct 2010 19:18:10 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJIAOB014441 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:18:10 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201010211918.o9LJIAOB014441@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 21 Oct 2010 19:17:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_exec.c kern_exit.c kern_fork.c kern_ktrace.c src/sys/sys ktrace.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:18:11 -0000 jhb 2010-10-21 19:17:40 UTC FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_fork.c kern_ktrace.c sys/sys ktrace.h Log: SVN rev 214158 on 2010-10-21 19:17:40Z by jhb - When disabling ktracing on a process, free any pending requests that may be left. This fixes a memory leak that can occur when tracing is disabled on a process via disabling tracing of a specific file (or if an I/O error occurs with the tracefile) if the process's next system call is exit(). The trace disabling code clears p_traceflag, so exit1() doesn't do any KTRACE-related cleanup leading to the leak. I chose to make the free'ing of pending records synchronous rather than patching exit1(). - Move KTRACE-specific logic out of kern_(exec|exit|fork).c and into kern_ktrace.c instead. Make ktrace_mtx private to kern_ktrace.c as a result. MFC after: 1 month Revision Changes Path 1.359 +2 -10 src/sys/kern/kern_exec.c 1.337 +1 -31 src/sys/kern/kern_exit.c 1.314 +1 -15 src/sys/kern/kern_fork.c 1.136 +102 -24 src/sys/kern/kern_ktrace.c 1.39 +2 -2 src/sys/sys/ktrace.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:29:06 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC14E1065781 for ; Thu, 21 Oct 2010 19:29:06 +0000 (UTC) (envelope-from bschmidt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 803938FC0A for ; Thu, 21 Oct 2010 19:29:06 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJT6Yl015262 for ; Thu, 21 Oct 2010 19:29:06 GMT (envelope-from bschmidt@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJT6PB015261 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:29:06 GMT (envelope-from bschmidt@repoman.freebsd.org) Message-Id: <201010211929.o9LJT6PB015261@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bschmidt@repoman.freebsd.org using -f From: Bernhard Schmidt Date: Thu, 21 Oct 2010 19:28:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iwi if_iwi.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:29:06 -0000 bschmidt 2010-10-21 19:28:52 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c Log: SVN rev 214160 on 2010-10-21 19:28:52Z by bschmidt Instead of calling return when reaching the end of the assoc notification break the loop instead. We want to run the code after the while loop to set an associd and capinfo. If we don't do this net80211 will drop frames because it assumes the node has not yet been associated. MFC after: 1 week Revision Changes Path 1.75 +1 -1 src/sys/dev/iwi/if_iwi.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:31:17 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 723E21065695 for ; Thu, 21 Oct 2010 19:31:17 +0000 (UTC) (envelope-from bschmidt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 487678FC24 for ; Thu, 21 Oct 2010 19:31:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJVHBq015470 for ; Thu, 21 Oct 2010 19:31:17 GMT (envelope-from bschmidt@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJVHOi015469 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:31:17 GMT (envelope-from bschmidt@repoman.freebsd.org) Message-Id: <201010211931.o9LJVHOi015469@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bschmidt@repoman.freebsd.org using -f From: Bernhard Schmidt Date: Thu, 21 Oct 2010 19:30:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iwi if_iwi.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:31:17 -0000 bschmidt 2010-10-21 19:30:55 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c Log: SVN rev 214162 on 2010-10-21 19:30:55Z by bschmidt The firmware always sets bit 14 and 15, to get the real associd we need to clear those bits. MFC after: 1 week Revision Changes Path 1.76 +1 -1 src/sys/dev/iwi/if_iwi.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 19:44:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8465710656A3 for ; Thu, 21 Oct 2010 19:44:38 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 588568FC0C for ; Thu, 21 Oct 2010 19:44:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LJicod016440 for ; Thu, 21 Oct 2010 19:44:38 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LJicJ9016439 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 19:44:38 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010211944.o9LJicJ9016439@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Thu, 21 Oct 2010 19:44:28 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c g_eli.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 19:44:38 -0000 pjd 2010-10-21 19:44:28 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c g_eli.h Log: SVN rev 214163 on 2010-10-21 19:44:28Z by pjd Free opencrypto sessions on suspend, as they also might keep encryption keys. Revision Changes Path 1.55 +80 -35 src/sys/geom/eli/g_eli.c 1.22 +1 -0 src/sys/geom/eli/g_eli.h From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 20:22:19 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADED51065698 for ; Thu, 21 Oct 2010 20:22:19 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 821068FC1D for ; Thu, 21 Oct 2010 20:22:19 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LKMJ7o020283 for ; Thu, 21 Oct 2010 20:22:19 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LKMJNW020282 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 20:22:19 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201010212022.o9LKMJNW020282@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Thu, 21 Oct 2010 20:22:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/unzip unzip.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 20:22:19 -0000 glebius 2010-10-21 20:22:00 UTC FreeBSD src repository Modified files: usr.bin/unzip unzip.1 Log: SVN rev 214174 on 2010-10-21 20:22:00Z by glebius Fix typo in last commit. Submitted by: bcr Revision Changes Path 1.7 +1 -1 src/usr.bin/unzip/unzip.1 From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 20:32:10 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9498610656BA for ; Thu, 21 Oct 2010 20:32:10 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 689578FC0A for ; Thu, 21 Oct 2010 20:32:10 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LKWAIv021107 for ; Thu, 21 Oct 2010 20:32:10 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LKWA8H021106 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 20:32:10 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <201010212032.o9LKWA8H021106@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Thu, 21 Oct 2010 20:31:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_syscalls.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 20:32:10 -0000 delphij 2010-10-21 20:31:50 UTC FreeBSD src repository Modified files: sys/kern kern_syscalls.c Log: SVN rev 214181 on 2010-10-21 20:31:50Z by delphij Call chainevh callback when we are invoked with neither MOD_LOAD nor MOD_UNLOAD. This makes it possible to add custom hooks for other module events. Return EOPNOTSUPP when there is no callback available. Pointed out by: jhb Reviewed by: jhb MFC after: 1 month Revision Changes Path 1.17 +3 -1 src/sys/kern/kern_syscalls.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 21:08:31 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ABF01065784 for ; Thu, 21 Oct 2010 21:08:31 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E24B8FC20 for ; Thu, 21 Oct 2010 21:08:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LL8V0C035735 for ; Thu, 21 Oct 2010 21:08:31 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LL8ViS035734 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 21:08:31 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010212108.o9LL8ViS035734@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Thu, 21 Oct 2010 21:08:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 21:08:31 -0000 rwatson 2010-10-21 21:08:12 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214185 on 2010-10-21 21:08:12Z by rwatson Universally use uintmax_t in syscall_timing; rearrange arithmetic to suffer fewer rounding errors with smaller numbers; fix argc validation so multiple tests run on a single command line. Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.9 +65 -64 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 22:34:14 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 806B610656C1 for ; Thu, 21 Oct 2010 22:34:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 53DAC8FC18 for ; Thu, 21 Oct 2010 22:34:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LMYElY042824 for ; Thu, 21 Oct 2010 22:34:14 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LMYDJW042823 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 22:34:13 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010212234.o9LMYDJW042823@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 22:33:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 22:34:14 -0000 imp 2010-10-21 22:33:50 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions.sh Log: SVN rev 214187 on 2010-10-21 22:33:50Z by imp Minor tweaks in compression support: o We need an eval here to get the right expansion of the command o bs=128k doesn't work in some cases, so eliminate it and cope with the minor performance hit. Submitted by: john hixson Revision Changes Path 1.7 +9 -9 src/usr.sbin/pc-sysinstall/backend/functions.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 22:46:19 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 963D5106566B for ; Thu, 21 Oct 2010 22:46:19 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 699178FC13 for ; Thu, 21 Oct 2010 22:46:19 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LMkJIK043735 for ; Thu, 21 Oct 2010 22:46:19 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LMkJKh043734 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 22:46:19 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010212246.o9LMkJKh043734@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 22:46:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions-bsdlabel.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 22:46:19 -0000 imp 2010-10-21 22:46:10 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions-bsdlabel.sh Log: SVN rev 214188 on 2010-10-21 22:46:10Z by imp More support for IMAGE installations Revision Changes Path 1.9 +9 -1 src/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 23:08:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 858A9106566B for ; Thu, 21 Oct 2010 23:08:55 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 58FAE8FC08 for ; Thu, 21 Oct 2010 23:08:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LN8tcu046400 for ; Thu, 21 Oct 2010 23:08:55 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LN8tpt046399 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 23:08:55 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010212308.o9LN8tpt046399@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Thu, 21 Oct 2010 23:08:42 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend functions-extractimage.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 23:08:55 -0000 imp 2010-10-21 23:08:42 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend functions-extractimage.sh Log: SVN rev 214189 on 2010-10-21 23:08:42Z by imp Fix two typos Submitted by: Benedict Reuschling Revision Changes Path 1.8 +2 -2 src/usr.sbin/pc-sysinstall/backend/functions-extractimage.sh From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 23:47:23 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E5EC1065672 for ; Thu, 21 Oct 2010 23:47:23 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1AF498FC0C for ; Thu, 21 Oct 2010 23:47:23 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LNlMjN049133 for ; Thu, 21 Oct 2010 23:47:23 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LNlMeT049132 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 23:47:22 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010212347.o9LNlMeT049132@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Thu, 21 Oct 2010 23:45:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh histedit.c memalloc.c memalloc.h src/tools/regression/bin/sh/expansion trim4.0 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 23:47:23 -0000 obrien 2010-10-21 23:45:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh histedit.c memalloc.c memalloc.h Added files: (Branch: RELENG_8) tools/regression/bin/sh/expansion trim4.0 Log: SVN rev 214190 on 2010-10-21 23:45:57Z by obrien MFC r213814: Do not assume in growstackstr() that a "precious" character will be immediately written into the stack after the call. Instead let the caller manage the "space left". Revision Changes Path 1.31.2.6 +1 -1 src/bin/sh/histedit.c 1.28.2.4 +10 -7 src/bin/sh/memalloc.c 1.11.2.3 +8 -1 src/bin/sh/memalloc.h 1.1.2.2 +15 -0 src/tools/regression/bin/sh/expansion/trim4.0 (new) From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 00:10:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7633F1065741 for ; Fri, 22 Oct 2010 00:10:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 49B2D8FC15 for ; Fri, 22 Oct 2010 00:10:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M0AxTi052153 for ; Fri, 22 Oct 2010 00:10:59 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M0AxES052152 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 00:10:59 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010220010.o9M0AxES052152@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Fri, 22 Oct 2010 00:10:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend-query query-langs.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 00:10:59 -0000 imp 2010-10-22 00:10:48 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend-query query-langs.sh Log: SVN rev 214191 on 2010-10-22 00:10:48Z by imp Remove unnecessary variable. Submitted by: Alex Kozlov Revision Changes Path 1.3 +0 -2 src/usr.sbin/pc-sysinstall/backend-query/query-langs.sh From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 00:12:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FC0C106564A for ; Fri, 22 Oct 2010 00:12:05 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 431798FC14 for ; Fri, 22 Oct 2010 00:12:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M0C50u052246 for ; Fri, 22 Oct 2010 00:12:05 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M0C5rJ052245 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 00:12:05 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201010220012.o9M0C5rJ052245@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Fri, 22 Oct 2010 00:11:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pc-sysinstall/backend-query disk-info.sh test-live.sh X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 00:12:05 -0000 imp 2010-10-22 00:11:55 UTC FreeBSD src repository Modified files: usr.sbin/pc-sysinstall/backend-query disk-info.sh test-live.sh Log: SVN rev 214192 on 2010-10-22 00:11:55Z by imp More simplifications Submitted by: Alex Kozlov Revision Changes Path 1.5 +5 -14 src/usr.sbin/pc-sysinstall/backend-query/disk-info.sh 1.3 +2 -9 src/usr.sbin/pc-sysinstall/backend-query/test-live.sh From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 04:43:18 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B791106566B for ; Fri, 22 Oct 2010 04:43:18 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0840C8FC18 for ; Fri, 22 Oct 2010 04:43:18 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M4hHHV086776 for ; Fri, 22 Oct 2010 04:43:17 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M4hHGu086775 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 04:43:17 GMT (envelope-from marcel@repoman.freebsd.org) Message-Id: <201010220443.o9M4hHGu086775@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marcel@repoman.freebsd.org using -f From: Marcel Moolenaar Date: Fri, 22 Oct 2010 04:43:04 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf Makefile src/libexec/rtld-elf/ia64 reloc.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 04:43:18 -0000 marcel 2010-10-22 04:43:04 UTC FreeBSD src repository Modified files: libexec/rtld-elf Makefile libexec/rtld-elf/ia64 reloc.c Log: SVN rev 214194 on 2010-10-22 04:43:04Z by marcel Unbreak ia64. With r169630 I disabled symbol versioning because it broke rtld. With r211706 rtld got broken for ia64 & powerpc64. It was fixed for powerpc64 with r212497. In between, r211749 removed the exports table because the version script handled the exports. But wait, symbol versioning was disabled on ia64. With exports controlled by the version script and symbol versioning disabled, all symbols are exported and too many symbols bind to the definition in rtld. Let's just say that waird things happen. So, enable symbol versioning on ia64 and apply a work-around for the SIGSEGV that triggered r169630 to begin with: when rtld relocates itself, it comes across r_debug_state and for some reason can't find the definition. This causes a failure, relocation aborts and null pointers galore. The work-around is to ignore the missing definition when rtld is relocating itself and keep going. Maybe with the next binutils this will all go away. Maybe not, in which case I still need to figure out why r_debug_state cannot be found. BTW: r_debug_state is in the symbol map -- I don't think any other rtld symbols that rtld references are in the symbol map... Revision Changes Path 1.51 +0 -2 src/libexec/rtld-elf/Makefile 1.22 +16 -3 src/libexec/rtld-elf/ia64/reloc.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 06:56:29 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 436EB1065672 for ; Fri, 22 Oct 2010 06:56:29 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 173FE8FC1C for ; Fri, 22 Oct 2010 06:56:29 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M6uSlN009232 for ; Fri, 22 Oct 2010 06:56:28 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M6uSBe009231 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 06:56:28 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010220656.o9M6uSBe009231@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Fri, 22 Oct 2010 06:56:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh expand.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 06:56:29 -0000 obrien 2010-10-22 06:56:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh expand.c Log: SVN rev 214196 on 2010-10-22 06:56:11Z by obrien Reduce diff to 9-CURRENT. Revision Changes Path 1.55.2.8 +3 -4 src/bin/sh/expand.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 08:36:35 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46D7B1065694 for ; Fri, 22 Oct 2010 08:36:35 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B32B8FC17 for ; Fri, 22 Oct 2010 08:36:35 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M8aZpf018211 for ; Fri, 22 Oct 2010 08:36:35 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M8aYhG018210 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 08:36:34 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010220836.o9M8aYhG018210@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Fri, 22 Oct 2010 08:36:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sys pcpu.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 08:36:35 -0000 avg 2010-10-22 08:36:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sys pcpu.h Log: SVN rev 214197 on 2010-10-22 08:36:26Z by avg MFC r204955,205885: Various and sundry style, whitespace, and comment fixes. On behalf of: jhb Revision Changes Path 1.33.2.5 +25 -35 src/sys/sys/pcpu.h From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 08:42:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4059106566B for ; Fri, 22 Oct 2010 08:42:55 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 783D48FC1A for ; Fri, 22 Oct 2010 08:42:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M8gtLp018636 for ; Fri, 22 Oct 2010 08:42:55 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M8gtep018635 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 08:42:55 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010220842.o9M8gtep018635@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Fri, 22 Oct 2010 08:42:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/sys pcpu.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 08:42:55 -0000 avg 2010-10-22 08:42:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/sys pcpu.h Log: SVN rev 214198 on 2010-10-22 08:42:44Z by avg MFC r212647: sys/pcpu.h: remove a workaround for a fixed ld bug Revision Changes Path 1.33.2.6 +0 -14 src/sys/sys/pcpu.h From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 08:48:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0396106564A for ; Fri, 22 Oct 2010 08:48:05 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 84B058FC20 for ; Fri, 22 Oct 2010 08:48:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M8m5GO029976 for ; Fri, 22 Oct 2010 08:48:05 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M8m53T029975 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 08:48:05 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010220848.o9M8m53T029975@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Fri, 22 Oct 2010 08:46:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src UPDATING X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 08:48:05 -0000 avg 2010-10-22 08:46:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) . UPDATING Log: SVN rev 214199 on 2010-10-22 08:46:22Z by avg add UPDATING entry for r214198: removed ld bug workaround This is a direct commit to the branch. Revision Changes Path 1.632.2.17 +8 -0 src/UPDATING From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 08:51:57 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1539C1065785 for ; Fri, 22 Oct 2010 08:51:57 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DDEF58FC24 for ; Fri, 22 Oct 2010 08:51:56 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M8pub5030240 for ; Fri, 22 Oct 2010 08:51:56 GMT (envelope-from bcr@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M8puX2030239 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 08:51:56 GMT (envelope-from bcr@repoman.freebsd.org) Message-Id: <201010220851.o9M8puX2030239@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bcr@repoman.freebsd.org using -f From: Benedict Reuschling Date: Fri, 22 Oct 2010 08:51:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib strtonum.3 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 08:51:57 -0000 bcr 2010-10-22 08:51:49 UTC FreeBSD src repository Modified files: lib/libc/stdlib strtonum.3 Log: SVN rev 214200 on 2010-10-22 08:51:49Z by bcr Revert to r214147, errno is not clobbered as originally thought. Revision Changes Path 1.8 +0 -2 src/lib/libc/stdlib/strtonum.3 From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 08:57:47 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 773821065785 for ; Fri, 22 Oct 2010 08:57:47 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B24E8FC17 for ; Fri, 22 Oct 2010 08:57:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9M8vlWf030618 for ; Fri, 22 Oct 2010 08:57:47 GMT (envelope-from avg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9M8vl78030617 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 08:57:47 GMT (envelope-from avg@repoman.freebsd.org) Message-Id: <201010220857.o9M8vl78030617@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to avg@repoman.freebsd.org using -f From: Andriy Gapon Date: Fri, 22 Oct 2010 08:57:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/cddl/compat/opensolaris/kern opensolaris_kmem.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 08:57:47 -0000 avg 2010-10-22 08:57:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/cddl/compat/opensolaris/kern opensolaris_kmem.c Log: SVN rev 214201 on 2010-10-22 08:57:25Z by avg MFC r213528: opensolaris_kmem kmem_size(): report lesser of vm_kmem_size and available physical memory Revision Changes Path 1.8.2.2 +14 -2 src/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 11:22:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FF811065674 for ; Fri, 22 Oct 2010 11:22:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0D9028FC1B for ; Fri, 22 Oct 2010 11:22:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MBMcGv045741 for ; Fri, 22 Oct 2010 11:22:38 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MBMcpX045740 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 11:22:38 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010221122.o9MBMcpX045740@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Fri, 22 Oct 2010 11:22:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/syscall_timing syscall_timing.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 11:22:39 -0000 rwatson 2010-10-22 11:22:19 UTC FreeBSD src repository Modified files: tools/tools/syscall_timing syscall_timing.c Log: SVN rev 214202 on 2010-10-22 11:22:19Z by rwatson Validate syscall_timing test names before starting to provide earlier feedback regarding user error. Provide default loop and timing settings. Add a new test that just times pread() without the open()/close(). Mark tests requiring a path argument so we can provide better feedback to the user than EFAULT on (null). Sponsored by: Google, Inc. MFC after: 2 weeks Revision Changes Path 1.10 +68 -12 src/tools/tools/syscall_timing/syscall_timing.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 11:42:14 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A05C0106564A for ; Fri, 22 Oct 2010 11:42:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 743A78FC08 for ; Fri, 22 Oct 2010 11:42:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MBgEpH047169 for ; Fri, 22 Oct 2010 11:42:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MBgEso047168 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 11:42:14 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201010221142.o9MBgEso047168@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Fri, 22 Oct 2010 11:42:02 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 11:42:14 -0000 jhb 2010-10-22 11:42:02 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: SVN rev 214203 on 2010-10-22 11:42:02Z by jhb - Add a new PCI quirk to whitelist an old chipset that doesn't support PCI-express or PCI-X capabilities if we are running in a virtual machine. - Whitelist the Intel 82440 chipset used by QEMU. Tested by: jfv MFC after: 1 week Revision Changes Path 1.409 +31 -1 src/sys/dev/pci/pci.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 16:01:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DE891065698 for ; Fri, 22 Oct 2010 16:01:38 +0000 (UTC) (envelope-from mdf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E5EF78FC21 for ; Fri, 22 Oct 2010 16:01:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MG1bCp080828 for ; Fri, 22 Oct 2010 16:01:37 GMT (envelope-from mdf@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MG1bmF080827 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 16:01:37 GMT (envelope-from mdf@repoman.freebsd.org) Message-Id: <201010221601.o9MG1bmF080827@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mdf@repoman.freebsd.org using -f From: Matthew D Fleming Date: Fri, 22 Oct 2010 16:00:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man9 zone.9 src/sys/vm uma_core.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 16:01:38 -0000 mdf 2010-10-22 16:00:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man9 zone.9 sys/vm uma_core.c Log: SVN rev 214206 on 2010-10-22 16:00:00Z by mdf MFC r214062: uma_zfree(zone, NULL) should do nothing, to match free(9). Noticed by: Ron Steinke Revision Changes Path 1.29.2.2 +7 -0 src/share/man/man9/zone.9 1.153.2.3 +4 -0 src/sys/vm/uma_core.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 16:02:16 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF4FA1065702 for ; Fri, 22 Oct 2010 16:02:16 +0000 (UTC) (envelope-from mdf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C374C8FC1B for ; Fri, 22 Oct 2010 16:02:16 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MG2GmJ080917 for ; Fri, 22 Oct 2010 16:02:16 GMT (envelope-from mdf@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MG2GGn080916 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 16:02:16 GMT (envelope-from mdf@repoman.freebsd.org) Message-Id: <201010221602.o9MG2GGn080916@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mdf@repoman.freebsd.org using -f From: Matthew D Fleming Date: Fri, 22 Oct 2010 16:00:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/share/man/man9 zone.9 src/sys/vm uma_core.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 16:02:17 -0000 mdf 2010-10-22 16:00:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) share/man/man9 zone.9 sys/vm uma_core.c Log: SVN rev 214207 on 2010-10-22 16:00:45Z by mdf MFC r214062: uma_zfree(zone, NULL) should do nothing, to match free(9). Noticed by: Ron Steinke Revision Changes Path 1.28.2.2 +7 -0 src/share/man/man9/zone.9 1.147.2.5 +4 -0 src/sys/vm/uma_core.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 17:49:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A0BC1065698 for ; Fri, 22 Oct 2010 17:49:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 688BE8FC19 for ; Fri, 22 Oct 2010 17:49:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MHnclX001663 for ; Fri, 22 Oct 2010 17:49:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MHncdj001662 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 17:49:38 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010221749.o9MHncdj001662@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Fri, 22 Oct 2010 17:49:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh Makefile expand.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 17:49:38 -0000 obrien 2010-10-22 17:49:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh Makefile expand.c Log: SVN rev 214208 on 2010-10-22 17:49:11Z by obrien MFC r212243: improve comments in expand.c r214100: MFC r213815: only need to look as far as '..' to find 'test/' r214104: r213774: DEBUG_FLAGS should be used to enable extra debugging rather than frobbing CFLAGS directly. r213798: do not inline static functions if debugging Revision Changes Path 1.46.2.2 +2 -2 src/bin/sh/Makefile 1.51.2.5 +37 -21 src/bin/sh/expand.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 18:07:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BD271065742 for ; Fri, 22 Oct 2010 18:07:34 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 699008FC17 for ; Fri, 22 Oct 2010 18:07:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MI7YiS003969 for ; Fri, 22 Oct 2010 18:07:34 GMT (envelope-from rdivacky@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MI7YT7003968 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 18:07:34 GMT (envelope-from rdivacky@repoman.freebsd.org) Message-Id: <201010221807.o9MI7YT7003968@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rdivacky@repoman.freebsd.org using -f From: Roman Divacky Date: Fri, 22 Oct 2010 18:07:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 18:07:34 -0000 rdivacky 2010-10-22 18:07:21 UTC FreeBSD src repository Modified files: sys/boot/i386/boot2 boot2.c Log: SVN rev 214210 on 2010-10-22 18:07:21Z by rdivacky Avoid using memcpy() for copying 32bit chunks. This shrinks the resulting code a little. Approved by: rpaulo (mentor) Reviewed by: jhb Revision Changes Path 1.90 +2 -2 src/sys/boot/i386/boot2/boot2.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 18:32:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB19B10657C1 for ; Fri, 22 Oct 2010 18:32:05 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9F1B58FC13 for ; Fri, 22 Oct 2010 18:32:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MIW5jB005785 for ; Fri, 22 Oct 2010 18:32:05 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MIW5rB005784 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 18:32:05 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010221832.o9MIW5rB005784@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Fri, 22 Oct 2010 18:31:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 18:32:05 -0000 yongari 2010-10-22 18:31:44 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: SVN rev 214216 on 2010-10-22 18:31:44Z by yongari Enable TX MAC state machine lockup fix for both BCM5755 or higher and BCM5906. Publicly available data sheet just says it may happen due to corrupted TxMbuf. Revision Changes Path 1.328 +6 -1 src/sys/dev/bge/if_bge.c 1.113 +1 -0 src/sys/dev/bge/if_bgereg.h From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 19:31:06 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B953D1065788 for ; Fri, 22 Oct 2010 19:31:06 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A7CDB8FC1B for ; Fri, 22 Oct 2010 19:31:06 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MJV6aS010979 for ; Fri, 22 Oct 2010 19:31:06 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MJV6f7010978 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 19:31:06 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010221931.o9MJV6f7010978@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Fri, 22 Oct 2010 19:30:56 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 19:31:06 -0000 yongari 2010-10-22 19:30:56 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: SVN rev 214219 on 2010-10-22 19:30:56Z by yongari Add workaround for BCM5906 A1 controller silicon bug. When auto-negotiation results in half-duplex operation, excess collision on the ethernet link may cause internal chip delays that may result in subsequent valid frames being dropped due to insufficient receive buffer resources. The workaround is to choose de-pipeline method as a flow control decision for SDI. De-pipeline method allows only 1 data in TxMbuf at a time such that a request to RDMA from SDI is made only when TxMbuf is empty. Thanks for david for providing detailed errata information. Revision Changes Path 1.329 +5 -0 src/sys/dev/bge/if_bge.c 1.114 +1 -0 src/sys/dev/bge/if_bgereg.h From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 20:14:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C91510656DB for ; Fri, 22 Oct 2010 20:14:03 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ED16A8FC0C for ; Fri, 22 Oct 2010 20:14:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MKE2V9015688 for ; Fri, 22 Oct 2010 20:14:02 GMT (envelope-from hselasky@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MKE2S1015687 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 20:14:02 GMT (envelope-from hselasky@repoman.freebsd.org) Message-Id: <201010222014.o9MKE2S1015687@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to hselasky@repoman.freebsd.org using -f From: Hans Petter Selasky Date: Fri, 22 Oct 2010 20:13:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usb_device.c usb_freebsd.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 20:14:05 -0000 hselasky 2010-10-22 20:13:45 UTC FreeBSD src repository Modified files: sys/dev/usb usb_device.c usb_freebsd.h Log: SVN rev 214221 on 2010-10-22 20:13:45Z by hselasky Add possibility to generate devctl notifications regardless of UGEN presence. Submitted by: Nick Hibma Approved by: thompsa (mentor) Revision Changes Path 1.66 +46 -15 src/sys/dev/usb/usb_device.c 1.3 +1 -0 src/sys/dev/usb/usb_freebsd.h From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 21:39:19 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 783B5106566C for ; Fri, 22 Oct 2010 21:39:19 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6584E8FC13 for ; Fri, 22 Oct 2010 21:39:19 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MLdJJa034071 for ; Fri, 22 Oct 2010 21:39:19 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MLdJCW034070 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 21:39:19 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010222139.o9MLdJCW034070@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Fri, 22 Oct 2010 21:38:56 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfs nfs_var.h nfsdport.h src/sys/fs/nfsserver nfs_nfsdport.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 21:39:19 -0000 rmacklem 2010-10-22 21:38:56 UTC FreeBSD src repository Modified files: sys/fs/nfs nfs_var.h nfsdport.h sys/fs/nfsserver nfs_nfsdport.c Log: SVN rev 214224 on 2010-10-22 21:38:56Z by rmacklem Modify the file handle hash function in the experimental NFS server so that it will work better for non-UFS file systems. The new function simply sums the bytes of the fh_fid field of fhandle_t. MFC after: 10 days Revision Changes Path 1.16 +1 -0 src/sys/fs/nfs/nfs_var.h 1.4 +1 -1 src/sys/fs/nfs/nfsdport.h 1.26 +15 -0 src/sys/fs/nfsserver/nfs_nfsdport.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 22:13:25 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AED7910657C0 for ; Fri, 22 Oct 2010 22:13:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 825388FC17 for ; Fri, 22 Oct 2010 22:13:25 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MMDPWM037489 for ; Fri, 22 Oct 2010 22:13:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MMDPVH037488 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 22:13:25 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010222213.o9MMDPVH037488@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Fri, 22 Oct 2010 22:13:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c g_eli_ctl.c g_eli_key.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 22:13:25 -0000 pjd 2010-10-22 22:13:11 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c g_eli_ctl.c g_eli_key.c Log: SVN rev 214225 on 2010-10-22 22:13:11Z by pjd Move sc_akeyctx and sc_ivctx initialization to the g_eli_mkey_propagate() function which eliminates code duplication and will ensure proper order of operation. Revision Changes Path 1.56 +0 -24 src/sys/geom/eli/g_eli.c 1.19 +2 -18 src/sys/geom/eli/g_eli_ctl.c 1.7 +25 -0 src/sys/geom/eli/g_eli_key.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 22:44:31 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2E6C1065709 for ; Fri, 22 Oct 2010 22:44:31 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 76D9F8FC17 for ; Fri, 22 Oct 2010 22:44:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MMiV6l039969 for ; Fri, 22 Oct 2010 22:44:31 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MMiVq0039968 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 22:44:31 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010222244.o9MMiVq0039968@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Fri, 22 Oct 2010 22:44:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 22:44:31 -0000 pjd 2010-10-22 22:44:09 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c Log: SVN rev 214226 on 2010-10-22 22:44:09Z by pjd Encryption keys array might be NULL if device is suspended. Check for this, so we don't panic when we detach suspended device. Revision Changes Path 1.57 +6 -3 src/sys/geom/eli/g_eli.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 22:45:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E9E41065790 for ; Fri, 22 Oct 2010 22:45:37 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E83E8FC1A for ; Fri, 22 Oct 2010 22:45:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MMjbHR040101 for ; Fri, 22 Oct 2010 22:45:37 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MMjb5Q040100 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 22:45:37 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010222245.o9MMjb5Q040100@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Fri, 22 Oct 2010 22:45:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 22:45:37 -0000 pjd 2010-10-22 22:45:26 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c Log: SVN rev 214227 on 2010-10-22 22:45:26Z by pjd Add State tag, so 'geli status' will report active/suspended status, eg: # geli status Name Status Components da0.eli SUSPENDED da0 da1.eli ACTIVE da1 Revision Changes Path 1.58 +2 -0 src/sys/geom/eli/g_eli.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 22:54:43 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76C5B10656C0 for ; Fri, 22 Oct 2010 22:54:43 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA768FC13 for ; Fri, 22 Oct 2010 22:54:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MMshqc040666 for ; Fri, 22 Oct 2010 22:54:43 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MMshgn040665 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 22:54:43 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010222254.o9MMshgn040665@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Fri, 22 Oct 2010 22:54:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli_ctl.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 22:54:43 -0000 pjd 2010-10-22 22:54:26 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli_ctl.c Log: SVN rev 214228 on 2010-10-22 22:54:26Z by pjd Close a race between checking if device is already suspended and suspending it. Revision Changes Path 1.20 +9 -9 src/sys/geom/eli/g_eli_ctl.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 22:58:19 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53AD51065672 for ; Fri, 22 Oct 2010 22:58:19 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 419FF8FC15 for ; Fri, 22 Oct 2010 22:58:19 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MMwJFH040942 for ; Fri, 22 Oct 2010 22:58:19 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MMwJtb040941 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 22:58:19 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010222258.o9MMwJtb040941@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Fri, 22 Oct 2010 22:58:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/eli g_eli_ctl.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 22:58:19 -0000 pjd 2010-10-22 22:58:00 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli_ctl.c Log: SVN rev 214229 on 2010-10-22 22:58:00Z by pjd - Improve error messages, so instead of 'Not fully done', the user will get information that device is already suspended or that device is using one-time key and suspend is not supported. - 'geli suspend -a' silently skips devices that use one-time key, this is fine, but because we log which device were suspended on the console, log also which devices were skipped. Revision Changes Path 1.21 +21 -17 src/sys/geom/eli/g_eli_ctl.c From owner-cvs-src-old@FreeBSD.ORG Fri Oct 22 23:13:55 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B72051065670 for ; Fri, 22 Oct 2010 23:13:55 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A14088FC1A for ; Fri, 22 Oct 2010 23:13:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MNDtm4043139 for ; Fri, 22 Oct 2010 23:13:55 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9MNDtrs043138 for cvs-src-old@freebsd.org; Fri, 22 Oct 2010 23:13:55 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <201010222313.o9MNDtrs043138@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Fri, 22 Oct 2010 23:12:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh Makefile src/tools/regression/bin/sh Makefile regress.sh regress.t src/tools/regression/bin/sh/builtins var-assign.0 src/tools/regression/bin/sh/errors option-error.0 redirection-error.0 src/tools/regression/bin/sh/execution func1.0 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 23:13:55 -0000 obrien 2010-10-22 23:12:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh Makefile tools/regression/bin/sh Makefile regress.sh regress.t tools/regression/bin/sh/builtins var-assign.0 tools/regression/bin/sh/errors option-error.0 redirection-error.0 tools/regression/bin/sh/execution func1.0 Log: SVN rev 214230 on 2010-10-22 23:12:45Z by obrien MFC r213738: allow one to regression test 'sh' changes without having to install a potentially bad /bin/sh first. r213903: default to 'sh' from PATH if 'SH' env is not set. Revision Changes Path 1.46.2.3 +3 -0 src/bin/sh/Makefile 1.1.2.1 +4 -1 src/tools/regression/bin/sh/Makefile 1.1.2.1 +2 -2 src/tools/regression/bin/sh/builtins/var-assign.0 1.1.2.1 +2 -2 src/tools/regression/bin/sh/errors/option-error.0 1.1.2.1 +2 -2 src/tools/regression/bin/sh/errors/redirection-error.0 1.1.4.3 +2 -2 src/tools/regression/bin/sh/execution/func1.0 1.3.2.1 +7 -1 src/tools/regression/bin/sh/regress.sh 1.1.2.1 +3 -1 src/tools/regression/bin/sh/regress.t From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 00:41:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A97DA106564A for ; Sat, 23 Oct 2010 00:41:48 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 96ED58FC19 for ; Sat, 23 Oct 2010 00:41:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9N0fmwO050636 for ; Sat, 23 Oct 2010 00:41:48 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9N0fmhL050633 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 00:41:48 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010230041.o9N0fmhL050633@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Sat, 23 Oct 2010 00:41:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/dev/sis if_sis.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 00:41:48 -0000 yongari 2010-10-23 00:41:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/dev/sis if_sis.c Log: SVN rev 214231 on 2010-10-23 00:41:26Z by yongari MFC r214089: Correct handling of shared interrupt in sis_intr(). r212116 incorrectly released a drver lock for shared interrupt case such that it caused panic. While I'm here check whether driver is still running before serving TX/RX handler. Reported by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > Tested by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > Revision Changes Path 1.9.2.13 +9 -4 src/sys/dev/sis/if_sis.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 00:44:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 601D6106566C for ; Sat, 23 Oct 2010 00:44:39 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4E1A38FC20 for ; Sat, 23 Oct 2010 00:44:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9N0iduv050821 for ; Sat, 23 Oct 2010 00:44:39 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9N0idE5050820 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 00:44:39 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010230044.o9N0idE5050820@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Sat, 23 Oct 2010 00:44:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/sis if_sis.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 00:44:39 -0000 yongari 2010-10-23 00:44:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/sis if_sis.c Log: SVN rev 214232 on 2010-10-23 00:44:16Z by yongari MFC r214089: Correct handling of shared interrupt in sis_intr(). r212116 incorrectly released a drver lock for shared interrupt case such that it caused panic. While I'm here check whether driver is still running before serving TX/RX handler. Reported by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > Tested by: Jerahmy Pocott < QUAKENET1 <> optusnet dot com dot au > Revision Changes Path 1.7.2.17 +9 -4 src/sys/dev/sis/if_sis.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 11:26:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03CFC1065674 for ; Sat, 23 Oct 2010 11:26:34 +0000 (UTC) (envelope-from bschmidt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E5D2E8FC1A for ; Sat, 23 Oct 2010 11:26:33 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NBQXBH041779 for ; Sat, 23 Oct 2010 11:26:33 GMT (envelope-from bschmidt@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NBQX8c041778 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 11:26:33 GMT (envelope-from bschmidt@repoman.freebsd.org) Message-Id: <201010231126.o9NBQX8c041778@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bschmidt@repoman.freebsd.org using -f From: Bernhard Schmidt Date: Sat, 23 Oct 2010 11:26:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iwi if_iwi.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 11:26:34 -0000 bschmidt 2010-10-23 11:26:22 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c Log: SVN rev 214236 on 2010-10-23 11:26:22Z by bschmidt The firmware does pad notifications to an even number of bytes (at least the association notification), the included information though always contains an elem block with an odd number of bytes. We handle the last byte as if it might contain a whole elem block, this of course is not true as one byte is not enough to hold a block, we therefore discard the complete frame. The solution here is to subtract one from the actual notification length, this is also what the Linux driver does. With this change the frames ends exactly where the last elem block ends. This commit also reverts r214160 which is no longer required and now even wrong. MFC after: 1 week Revision Changes Path 1.77 +2 -2 src/sys/dev/iwi/if_iwi.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 12:27:54 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C41631065670 for ; Sat, 23 Oct 2010 12:27:54 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 97DCB8FC1E for ; Sat, 23 Oct 2010 12:27:54 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NCRsqE047062 for ; Sat, 23 Oct 2010 12:27:54 GMT (envelope-from uqs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NCRsCl047061 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 12:27:54 GMT (envelope-from uqs@repoman.freebsd.org) Message-Id: <201010231227.o9NCRsCl047061@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to uqs@repoman.freebsd.org using -f From: Ulrich Spoerlein Date: Sat, 23 Oct 2010 12:27:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/bsnmp/snmpd bsnmpd.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 12:27:54 -0000 uqs 2010-10-23 12:27:39 UTC FreeBSD src repository Modified files: contrib/bsnmp/snmpd bsnmpd.1 Log: SVN rev 214237 on 2010-10-23 12:27:39Z by uqs Remove mention of non-existant -o flag for debugging options. MFC after: 3 days Revision Changes Path 1.5 +3 -5 src/contrib/bsnmp/snmpd/bsnmpd.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 13:17:00 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2353106566C for ; Sat, 23 Oct 2010 13:17:00 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9FC6A8FC0C for ; Sat, 23 Oct 2010 13:17:00 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NDH0Uk062559 for ; Sat, 23 Oct 2010 13:17:00 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NDH0HY062557 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 13:17:00 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201010231317.o9NDH0HY062557@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Sat, 23 Oct 2010 13:16:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_kthread.c kern_thr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 13:17:00 -0000 davidxu 2010-10-23 13:16:39 UTC FreeBSD src repository Modified files: sys/kern kern_kthread.c kern_thr.c Log: SVN rev 214238 on 2010-10-23 13:16:39Z by davidxu In thr_exit() and kthread_exit(), only remove thread from hash if it can directly exit, otherwise let exit1() do it. The change should be in r213950, but for unknown reason, it was lost. Revision Changes Path 1.57 +5 -1 src/sys/kern/kern_kthread.c 1.87 +7 -6 src/sys/kern/kern_thr.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 13:36:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E291110656A4 for ; Sat, 23 Oct 2010 13:36:21 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B66978FC26 for ; Sat, 23 Oct 2010 13:36:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NDaLKA063973 for ; Sat, 23 Oct 2010 13:36:21 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NDaLrI063972 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 13:36:21 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231336.o9NDaLrI063972@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 13:36:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 13:36:22 -0000 jilles 2010-10-23 13:36:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) bin/sh sh.1 Log: SVN rev 214239 on 2010-10-23 13:36:09Z by jilles MFC r213926: sh(1): Clarify subshells/processes for pipelines. For multi-command pipelines, 1. all commands are direct children of the shell (unlike the original Bourne shell) 2. all commands are executed in a subshell (unlike the real Korn shell) Revision Changes Path 1.130.2.9 +8 -10 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 13:57:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A265B1065670 for ; Sat, 23 Oct 2010 13:57:42 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7697C8FC17 for ; Sat, 23 Oct 2010 13:57:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NDvgnV065425 for ; Sat, 23 Oct 2010 13:57:42 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NDvg4E065424 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 13:57:42 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231357.o9NDvg4E065424@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 13:57:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 13:57:42 -0000 jilles 2010-10-23 13:57:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh sh.1 Log: SVN rev 214240 on 2010-10-23 13:57:26Z by jilles MFC r197848: Clarify quoting of word in ${v=word} in sh(1). Revision Changes Path 1.125.2.4 +3 -0 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 14:00:48 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EB05106564A for ; Sat, 23 Oct 2010 14:00:48 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CE1F8FC0A for ; Sat, 23 Oct 2010 14:00:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NE0mbT065667 for ; Sat, 23 Oct 2010 14:00:48 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NE0m0q065666 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 14:00:48 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231400.o9NE0m0q065666@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 14:00:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 14:00:48 -0000 jilles 2010-10-23 14:00:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh sh.1 Log: SVN rev 214241 on 2010-10-23 14:00:31Z by jilles MFC r212417: sh(1): Remove xrefs for expr(1) and getopt(1). expr(1) should usually not be used as various forms of parameter expansion and arithmetic expansion replicate most of its functionality in an easier way. getopt(1) should not be used at all in new code. Instead, getopts(1) or entirely manual parsing should be used. Revision Changes Path 1.125.2.5 +1 -3 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 14:04:24 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77C531065695 for ; Sat, 23 Oct 2010 14:04:24 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4BDDE8FC1B for ; Sat, 23 Oct 2010 14:04:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NE4Ogk066959 for ; Sat, 23 Oct 2010 14:04:24 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NE4OLI066958 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 14:04:24 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231404.o9NE4OLI066958@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 14:04:04 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 14:04:24 -0000 jilles 2010-10-23 14:04:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh sh.1 Log: SVN rev 214242 on 2010-10-23 14:04:04Z by jilles MFC r211621: sh(1): Add a brief summary of arithmetic expressions. Revision Changes Path 1.125.2.6 +35 -4 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 14:15:30 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 829A6106566C for ; Sat, 23 Oct 2010 14:15:30 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 56AFD8FC0A for ; Sat, 23 Oct 2010 14:15:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NEFUZR067831 for ; Sat, 23 Oct 2010 14:15:30 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NEFUBX067830 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 14:15:30 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231415.o9NEFUBX067830@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 14:15:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 14:15:30 -0000 jilles 2010-10-23 14:15:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh sh.1 Log: SVN rev 214243 on 2010-10-23 14:15:10Z by jilles MFC r207831: sh(1): Fix "reserved word" vs "keyword" inconsistency. Use "keyword" everywhere, like the output of the 'type' builtin, and only mention "reserved word" once to say it is the same thing. Revision Changes Path 1.125.2.7 +8 -8 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 14:16:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74B9E1065672 for ; Sat, 23 Oct 2010 14:16:51 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 488B18FC21 for ; Sat, 23 Oct 2010 14:16:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NEGpAG067917 for ; Sat, 23 Oct 2010 14:16:51 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NEGpQ5067916 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 14:16:51 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201010231416.o9NEGpQ5067916@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 23 Oct 2010 14:16:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 14:16:51 -0000 jilles 2010-10-23 14:16:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) bin/sh sh.1 Log: SVN rev 214244 on 2010-10-23 14:16:33Z by jilles MFC r213926: sh(1): Clarify subshells/processes for pipelines. For multi-command pipelines, 1. all commands are direct children of the shell (unlike the original Bourne shell) 2. all commands are executed in a subshell (unlike the real Korn shell) Revision Changes Path 1.125.2.8 +8 -10 src/bin/sh/sh.1 From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 14:23:12 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 859C5106567A for ; Sat, 23 Oct 2010 14:23:12 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5AA508FC19 for ; Sat, 23 Oct 2010 14:23:12 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NENCkF068374 for ; Sat, 23 Oct 2010 14:23:12 GMT (envelope-from trasz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NENC3T068373 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 14:23:12 GMT (envelope-from trasz@repoman.freebsd.org) Message-Id: <201010231423.o9NENC3T068373@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to trasz@repoman.freebsd.org using -f From: Edward Tomasz Napierala Date: Sat, 23 Oct 2010 14:22:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_acl_nfs4.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 14:23:12 -0000 trasz 2010-10-23 14:22:50 UTC FreeBSD src repository Modified files: sys/kern subr_acl_nfs4.c Log: SVN rev 214245 on 2010-10-23 14:22:50Z by trasz Remove workaround for ZFS bug; fix was committed to the //depot/user/pjd/zfs/... branch some time ago. MFC after: two weeks Revision Changes Path 1.9 +0 -22 src/sys/kern/subr_acl_nfs4.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 16:59:49 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65B7B1065675 for ; Sat, 23 Oct 2010 16:59:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3811D8FC1A for ; Sat, 23 Oct 2010 16:59:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NGxna0092457 for ; Sat, 23 Oct 2010 16:59:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NGxn8l092456 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 16:59:49 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <201010231659.o9NGxn8l092456@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Sat, 23 Oct 2010 16:59:39 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac mac_vfs.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 16:59:49 -0000 rwatson 2010-10-23 16:59:39 UTC FreeBSD src repository Modified files: sys/security/mac mac_vfs.c Log: SVN rev 214249 on 2010-10-23 16:59:39Z by rwatson Add missing DTrace probe invocation to mac_vnode_check_open; the probe was declared, but never used. MFC after: 3 days Sponsored by: Google, Inc. Revision Changes Path 1.132 +2 -0 src/sys/security/mac/mac_vfs.c From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 20:36:07 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBB52106588C for ; Sat, 23 Oct 2010 20:36:06 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C81998FC29 for ; Sat, 23 Oct 2010 20:36:06 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NKa6YA013107 for ; Sat, 23 Oct 2010 20:36:06 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NKa6AY013106 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 20:36:06 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201010232036.o9NKa6AY013106@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sat, 23 Oct 2010 20:35:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_ipsec.c src/sys/netinet6 ip6_ipsec.c src/sys/netipsec ipsec_output.c key.c keydb.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 20:36:07 -0000 bz 2010-10-23 20:35:40 UTC FreeBSD src repository Modified files: sys/netinet ip_ipsec.c sys/netinet6 ip6_ipsec.c sys/netipsec ipsec_output.c key.c keydb.h Log: SVN rev 214250 on 2010-10-23 20:35:40Z by bz Make the IPsec SADB embedded route cache a union to be able to hold both the legacy and IPv6 route destination address. Previously in case of IPv6, there was a memory overwrite due to not enough space for the IPv6 address. PR: kern/122565 MFC After: 2 weeks Revision Changes Path 1.25 +1 -1 src/sys/netinet/ip_ipsec.c 1.20 +1 -1 src/sys/netinet6/ip6_ipsec.c 1.30 +2 -1 src/sys/netipsec/ipsec_output.c 1.73 +4 -4 src/sys/netipsec/key.c 1.9 +7 -1 src/sys/netipsec/keydb.h From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 21:25:57 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7C64106564A for ; Sat, 23 Oct 2010 21:25:57 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 94DF58FC1A for ; Sat, 23 Oct 2010 21:25:57 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NLPvR9028716 for ; Sat, 23 Oct 2010 21:25:57 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NLPvkD028715 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 21:25:57 GMT (envelope-from yongari@repoman.freebsd.org) Message-Id: <201010232125.o9NLPvkD028715@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to yongari@repoman.freebsd.org using -f From: Pyun YongHyeon Date: Sat, 23 Oct 2010 21:25:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 21:25:57 -0000 yongari 2010-10-23 21:25:50 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: SVN rev 214251 on 2010-10-23 21:25:50Z by yongari Apply the same workaround for SDI flow control used on BCM5906 A1 to BCM6906 A0/A2. This should fix a long standing BCM5906 A2 lockup issues. Data sheet explicitly mentions BCM5906 A0, A1 and A2 use de-pipelined mode on these revisions. Special thanks to Buganini who tried all combinations of experimental patches for more than 10 days. Tested by: Buganini gmail dot com > Revision Changes Path 1.330 +8 -5 src/sys/dev/bge/if_bge.c 1.115 +1 -0 src/sys/dev/bge/if_bgereg.h From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 21:57:03 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 923AA106564A for ; Sat, 23 Oct 2010 21:57:03 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7F9F48FC0A for ; Sat, 23 Oct 2010 21:57:03 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NLv3Mc030929 for ; Sat, 23 Oct 2010 21:57:03 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NLv3Tb030928 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 21:57:03 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010232157.o9NLv3Tb030928@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sat, 23 Oct 2010 21:56:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sbin/geom/core geom.c geom.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 21:57:03 -0000 pjd 2010-10-23 21:56:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sbin/geom/core geom.c geom.h Log: SVN rev 214252 on 2010-10-23 21:56:50Z by pjd Implement G_TYPE_MULTI and G_VAL_OPTIONAL for stable/8. This should have been MFC, but I've no green light from marcel to remove G_TYPE_ASCNUM and gc_argname and to modify geom_part in stable/8, so this is reimplementation that doesn't touch gpart and hopefully doesn't break anything. Revision Changes Path 1.38.2.4 +67 -37 src/sbin/geom/core/geom.c 1.7.2.3 +8 -0 src/sbin/geom/core/geom.h From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 22:04:54 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7837F106566C for ; Sat, 23 Oct 2010 22:04:54 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B8678FC1C for ; Sat, 23 Oct 2010 22:04:54 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NM4sUg032572 for ; Sat, 23 Oct 2010 22:04:54 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NM4sGo032571 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 22:04:54 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010232204.o9NM4sGo032571@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sat, 23 Oct 2010 22:04:37 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sbin/geom/core geom.c geom.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 22:04:54 -0000 pjd 2010-10-23 22:04:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sbin/geom/core geom.c geom.h Log: SVN rev 214253 on 2010-10-23 22:04:37Z by pjd Constify go_val field. (Should've been MFC of r212547.) Revision Changes Path 1.38.2.5 +9 -7 src/sbin/geom/core/geom.c 1.7.2.4 +1 -1 src/sbin/geom/core/geom.h From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 22:11:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 911901065670 for ; Sat, 23 Oct 2010 22:11:45 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7DEE18FC0C for ; Sat, 23 Oct 2010 22:11:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NMBjDl033136 for ; Sat, 23 Oct 2010 22:11:45 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NMBjpC033135 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 22:11:45 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201010232211.o9NMBjpC033135@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sat, 23 Oct 2010 22:11:30 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/opencrypto cryptodev.c cryptodev.h cryptosoft.c xform.c xform.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 22:11:45 -0000 pjd 2010-10-23 22:11:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/opencrypto cryptodev.c cryptodev.h cryptosoft.c xform.c xform.h Log: SVN rev 214254 on 2010-10-23 22:11:30Z by pjd MFC r213065,r213068: r213065: Remove redundant space. r213068: Add support for AES-XTS. Obtained from: OpenBSD Revision Changes Path 1.40.2.3 +3 -0 src/sys/opencrypto/cryptodev.c 1.25.10.2 +2 -1 src/sys/opencrypto/cryptodev.h 1.23.2.4 +59 -5 src/sys/opencrypto/cryptosoft.c 1.10.2.2 +138 -10 src/sys/opencrypto/xform.c 1.4.10.2 +2 -0 src/sys/opencrypto/xform.h From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 22:28:51 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B39CA1065674 for ; Sat, 23 Oct 2010 22:28:51 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE968FC15 for ; Sat, 23 Oct 2010 22:28:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9NMSpi1034335 for ; Sat, 23 Oct 2010 22:28:51 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NMSpEE034334 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 22:28:51 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010232228.o9NMSpEE034334@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Sat, 23 Oct 2010 22:28:29 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfs nfs_var.h src/sys/fs/nfsserver nfs_nfsdport.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 22:28:51 -0000 rmacklem 2010-10-23 22:28:29 UTC FreeBSD src repository Modified files: sys/fs/nfs nfs_var.h sys/fs/nfsserver nfs_nfsdport.c Log: SVN rev 214255 on 2010-10-23 22:28:29Z by rmacklem Modify the experimental NFSv4 server's file handle hash function to use the generic hash32_buf() function. Although adding the bytes seemed sufficient for UFS and ZFS, since most of the bytes are the same for file handles on the same volume, this might not be sufficient for other file systems. Use of a generic function also seems preferable to one specific to NFSv4. Suggested by: gleb.kurtsou at gmail.com MFC after: 10 days Revision Changes Path 1.17 +1 -1 src/sys/fs/nfs/nfs_var.h 1.27 +4 -6 src/sys/fs/nfsserver/nfs_nfsdport.c