From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 03:50:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BC496FCC for ; Sun, 18 Aug 2013 03:50:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9CB952C5A for ; Sun, 18 Aug 2013 03:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7I3o0Rq063071 for ; Sun, 18 Aug 2013 03:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7I3o0UI063070; Sun, 18 Aug 2013 03:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 03:50:00 GMT Resent-Message-Id: <201308180350.r7I3o0UI063070@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chie Taguchi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E819AF9B for ; Sun, 18 Aug 2013 03:44:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B74632C47 for ; Sun, 18 Aug 2013 03:44:55 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7I3itJq048816 for ; Sun, 18 Aug 2013 03:44:55 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7I3itlX048815; Sun, 18 Aug 2013 03:44:55 GMT (envelope-from nobody) Message-Id: <201308180344.r7I3itlX048815@oldred.freebsd.org> Date: Sun, 18 Aug 2013 03:44:55 GMT From: Chie Taguchi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181369: incompatibility between bsdpatch and gnupatch dealing of filename's delimiter X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 03:50:00 -0000 >Number: 181369 >Category: misc >Synopsis: incompatibility between bsdpatch and gnupatch dealing of filename's delimiter >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 03:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Chie Taguchi >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD raspberry-pi 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Tue Aug 13 03:22:23 JST 2013 user@arty:/usr/home/user/crochet-freebsd/work/obj/arm.armv6/usr/src.arm/sys/RPI-B-ELY arm >Description: During my building, i got a patch error, following: ===> Applying FreeBSD patch /usr/ports/x11-servers/xorg-server/files/patch- Xserver-hw-xfree86-os-support-bsd-Makefile.in Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: programs/Xserver/hw/xfree86/os-support/bsd/Makefile.in |diff -u -p programs/Xserver/hw/xfree86/os-support/bsd/Makefile.in orig prog rams/Xserver/hw/xfree86/os-support/bsd/Makefile.in |--- hw/xfree86/os-support/bsd/Makefile.in .orig Tue Oct 4 01:46:14 2005 |+++ hw/xfree86/os-support/bsd/Makefile.in Thu Jan 26 14:57:56 2006 -------------------------- File to patch: ^C root@raspberry-pi:/usr/ports/x11-servers/xorg-server # => Patch patch-Xserv er-hw-xfree86-os-support-bsd-Makefile.in failed to apply cleanly. -----error-end i find this error caused by a space after filename 'Makefile.in '. and this error made by only bsdpatch, not gnupatch. because of bsdpatch see filename's space is not a delimiter, but gnupatch see it a delimiter. i think this difference maybe a specification for bsdpatch, not a bug, because bsdpatch can deal filename, inside-space. but it is not good for developers to exist such incompatibility between bsdpatch and gnupatch. >How-To-Repeat: suffix a space at filename in any patchfile, example: --- hw/xfree86/xorgconf.cpp.orig Fri Dec 31 14:40:27 2004 +++ hw/xfree86/xorgconf.cpp Fri Dec 31 14:40:28 2004 add a space 'hw/xfree86/xorgconf.cpp'-> 'hw/xfree86/xorgconf.cpp ' # patch < patchfile it will fail to patch. but, # gnupatch < patchfile it will success to patch. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 06:20:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E1947904 for ; Sun, 18 Aug 2013 06:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B485120E3 for ; Sun, 18 Aug 2013 06:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7I6K1AP019143 for ; Sun, 18 Aug 2013 06:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7I6K1Ze019142; Sun, 18 Aug 2013 06:20:01 GMT (envelope-from gnats) Date: Sun, 18 Aug 2013 06:20:01 GMT Message-Id: <201308180620.r7I6K1Ze019142@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: DEV Nexen Subject: bin/181272 and misc/181369 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: DEV Nexen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 06:20:01 -0000 The following reply was made to PR bin/181272; it has been noted by GNATS. From: DEV Nexen To: bug-followup@freebsd.org Cc: Subject: bin/181272 and misc/181369 Date: Sun, 18 Aug 2013 07:17:39 +0100 --001a11c34c2a0d93c804e432c936 Content-Type: multipart/alternative; boundary=001a11c34c2a0d93c304e432c934 --001a11c34c2a0d93c304e432c934 Content-Type: text/plain; charset=ISO-8859-1 Hello. I worked yesterday on bin/181272 for patch BSD utility and then I saw today misc/181369 so I added few changes for it as well. Thanks. Kindest regards. David CARLIER --001a11c34c2a0d93c304e432c934 Content-Type: text/html; charset=ISO-8859-1
Hello.

I worked yesterday on bin/181272 for patch BSD utility and then I saw today misc/181369 so I added few changes for it as well.

Thanks.
Kindest regards.

David CARLIER
--001a11c34c2a0d93c304e432c934-- --001a11c34c2a0d93c804e432c936 Content-Type: text/plain; charset=US-ASCII; name="patch.txt" Content-Disposition: attachment; filename="patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hkhv6eag0 LS0tIHV0aWwuYy5vcmlnCTIwMTMtMDgtMTcgMTQ6NTQ6NDQuMDAwMDAwMDAwICswMTAwCisrKyB1 dGlsLmMJMjAxMy0wOC0xOCAwNzoxMzozOS4wMDAwMDAwMDAgKzAxMDAKQEAgLTQwMiwxMiArNDAy LDE2IEBACiAJbmFtZSA9IGZ1bGxuYW1lID0gdCA9IHNhdmVzdHIoYXQpOwogCiAJLyogU3RyaXAg b2ZmIHVwIHRvIGBzbGVhZGluZycgbGVhZGluZyBzbGFzaGVzIGFuZCBudWxsIHRlcm1pbmF0ZS4g Ki8KLQlmb3IgKDsgKnQgJiYgIWlzc3BhY2UoKHVuc2lnbmVkIGNoYXIpKnQpOyB0KyspCisJZm9y ICg7ICp0ICYmICp0IT0nXHQnICYmICp0IT0nXG4nOyB0KyspCisJCS8qIFJlcGxhY2UgYW55IHNw YWNlIGJ5IDB4MjAgKi8KKwkJaWYgKGlzc3BhY2UoKHVuc2lnbmVkIGNoYXIpICp0KSkKKwkJCWlm ICgqKHQrMSkgJiYgKCoodCsxKSA9PSAnXHQnKSkKKwkJCQlicmVhazsKKwkJCSp0ID0gMHgyMDsK IAkJaWYgKCp0ID09ICcvJykKIAkJCWlmICgtLXNsZWFkaW5nID49IDApCiAJCQkJbmFtZSA9IHQg KyAxOwogCSp0ID0gJ1wwJzsKLQogCS8qCiAJICogSWYgbm8gLXAgb3B0aW9uIHdhcyBnaXZlbiAo OTU3IGlzIHRoZSBkZWZhdWx0IHZhbHVlISksCiAJICogd2Ugd2VyZSBnaXZlbiBhIHJlbGF0aXZl IHBhdGhuYW1lLAo= --001a11c34c2a0d93c804e432c936-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 06:30:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8FC6CB0D for ; Sun, 18 Aug 2013 06:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E1BF213D for ; Sun, 18 Aug 2013 06:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7I6U1s4031045 for ; Sun, 18 Aug 2013 06:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7I6U1H1031044; Sun, 18 Aug 2013 06:30:01 GMT (envelope-from gnats) Date: Sun, 18 Aug 2013 06:30:01 GMT Message-Id: <201308180630.r7I6U1H1031044@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: DEV Nexen Subject: misc/181369 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: DEV Nexen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 06:30:01 -0000 The following reply was made to PR bin/181369; it has been noted by GNATS. From: DEV Nexen To: bug-followup@freebsd.org Cc: Subject: misc/181369 Date: Sun, 18 Aug 2013 07:22:18 +0100 --001a11c21cb0a9aea204e432d967 Content-Type: multipart/alternative; boundary=001a11c21cb0a9ae9e04e432d965 --001a11c21cb0a9ae9e04e432d965 Content-Type: text/plain; charset=ISO-8859-1 --001a11c21cb0a9ae9e04e432d965 Content-Type: text/html; charset=ISO-8859-1

--001a11c21cb0a9ae9e04e432d965-- --001a11c21cb0a9aea204e432d967 Content-Type: text/plain; charset=US-ASCII; name="patch.txt" Content-Disposition: attachment; filename="patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hkhvd9ht0 LS0tIHV0aWwuYy5vcmlnCTIwMTMtMDgtMTcgMTQ6NTQ6NDQuMDAwMDAwMDAwICswMTAwCisrKyB1 dGlsLmMJMjAxMy0wOC0xOCAwNzoxMzozOS4wMDAwMDAwMDAgKzAxMDAKQEAgLTQwMiwxMiArNDAy LDE2IEBACiAJbmFtZSA9IGZ1bGxuYW1lID0gdCA9IHNhdmVzdHIoYXQpOwogCiAJLyogU3RyaXAg b2ZmIHVwIHRvIGBzbGVhZGluZycgbGVhZGluZyBzbGFzaGVzIGFuZCBudWxsIHRlcm1pbmF0ZS4g Ki8KLQlmb3IgKDsgKnQgJiYgIWlzc3BhY2UoKHVuc2lnbmVkIGNoYXIpKnQpOyB0KyspCisJZm9y ICg7ICp0ICYmICp0IT0nXHQnICYmICp0IT0nXG4nOyB0KyspCisJCS8qIFJlcGxhY2UgYW55IHNw YWNlIGJ5IDB4MjAgKi8KKwkJaWYgKGlzc3BhY2UoKHVuc2lnbmVkIGNoYXIpICp0KSkKKwkJCWlm ICgqKHQrMSkgJiYgKCoodCsxKSA9PSAnXHQnKSkKKwkJCQlicmVhazsKKwkJCSp0ID0gMHgyMDsK IAkJaWYgKCp0ID09ICcvJykKIAkJCWlmICgtLXNsZWFkaW5nID49IDApCiAJCQkJbmFtZSA9IHQg KyAxOwogCSp0ID0gJ1wwJzsKLQogCS8qCiAJICogSWYgbm8gLXAgb3B0aW9uIHdhcyBnaXZlbiAo OTU3IGlzIHRoZSBkZWZhdWx0IHZhbHVlISksCiAJICogd2Ugd2VyZSBnaXZlbiBhIHJlbGF0aXZl IHBhdGhuYW1lLAo= --001a11c21cb0a9aea204e432d967-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 10:10:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD32AE13 for ; Sun, 18 Aug 2013 10:10:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C6F82940 for ; Sun, 18 Aug 2013 10:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7IAA02B055973 for ; Sun, 18 Aug 2013 10:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7IAA0GV055972; Sun, 18 Aug 2013 10:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 10:10:00 GMT Resent-Message-Id: <201308181010.r7IAA0GV055972@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Sam Fourman Jr." Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2A7F3C0C for ; Sun, 18 Aug 2013 10:04:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 16EA72901 for ; Sun, 18 Aug 2013 10:04:38 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7IA4bAF099918 for ; Sun, 18 Aug 2013 10:04:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7IA4bxN099911; Sun, 18 Aug 2013 10:04:37 GMT (envelope-from nobody) Message-Id: <201308181004.r7IA4bxN099911@oldred.freebsd.org> Date: Sun, 18 Aug 2013 10:04:37 GMT From: "Sam Fourman Jr." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181373: net-p2p/litecoin fails to compile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 10:10:00 -0000 >Number: 181373 >Category: misc >Synopsis: net-p2p/litecoin fails to compile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 10:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sam Fourman Jr. >Release: HEAD >Organization: >Environment: root@NewBSD:/usr/ports/net-p2p/litecoin # uname -a FreeBSD NewBSD 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r254466: Sat Aug 17 21:34:16 UTC 2013 root@Border:/usr/obj/usr/src/sys/GENERIC amd64 >Description: fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/walletdb.d -o obj/walletdb.o walletdb.cpp g++46 -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/hash.d -o obj/hash.o hash.cpp g++46 -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/bloom.d -o obj/bloom.o bloom.cpp g++46 -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/noui.d -o obj/noui.o noui.cpp g++46 -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/leveldb.d -o obj/leveldb.o leveldb.cpp g++46 -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -MMD -MF obj/txdb.d -o obj/txdb.o txdb.cpp g++46 -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/obj -I/usr/local/include -I/usr/local/include/db48 -DUSE_IPV6=1 -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/include -I/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc46 -fno-strict-aliasing -I/usr/local/include -I/usr/local/include/db48 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-rpath=/usr/local/lib/gcc46 -o litecoind leveldb/libleveldb.a obj/alert.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/keystore.o obj/main.o obj/net.o obj/protoc ol.o obj/bitcoinrpc.o obj/rpcdump.o obj/rpcnet.o obj/rpcmining.o obj/rpcwallet.o obj/rpcblockchain.o obj/rpcrawtransaction.o obj/script.o obj/scrypt.o obj/sync.o obj/util.o obj/wallet.o obj/walletdb.o obj/hash.o obj/bloom.o obj/noui.o obj/leveldb.o obj/txdb.o -Wl,-z,relro -Wl,-z,now -Wl,-rpath=/usr/lib:/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc46 -L/usr/local/lib -L/usr/local/lib/db48 -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -Wl,-Bdynamic -l z -l pthread /usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/libleveldb.a /usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src/leveldb/libmemenv.a obj/db.o: In function `wait_for >': /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:177: undefined reference to `boost::chrono::system_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:178: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:181: undefined reference to `boost::chrono::steady_clock::now()' obj/init.o: In function `wait_for >': /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:177: undefined reference to `boost::chrono::system_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:178: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:181: undefined reference to `boost::chrono::steady_clock::now()' obj/rpcwallet.o: In function `wait_for >': /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:177: undefined reference to `boost::chrono::system_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:178: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:181: undefined reference to `boost::chrono::steady_clock::now()' obj/walletdb.o: In function `wait_for >': /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:177: undefined reference to `boost::chrono::system_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:178: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:181: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:177: undefined reference to `boost::chrono::system_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:178: undefined reference to `boost::chrono::steady_clock::now()' /usr/local/include/boost/thread/pthread/condition_variable_fwd.hpp:181: undefined reference to `boost::chrono::steady_clock::now()' collect2: ld returned 1 exit status gmake[2]: *** [litecoind] Error 1 gmake[2]: Leaving directory `/usr/ports/net-p2p/litecoin/work/litecoin-project-litecoin-2884342/src' ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make[1]: stopped in /usr/ports/net-p2p/litecoin *** Error code 1 Stop. make: stopped in /usr/ports/net-p2p/litecoin >How-To-Repeat: Install base system, then build /usr/ports/net-p2p/litecoin 9.2 beta or 10 CURRENT they both fail >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 13:03:05 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 967E421D; Sun, 18 Aug 2013 13:03:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68BB32680; Sun, 18 Aug 2013 13:03:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7ID35Vo016949; Sun, 18 Aug 2013 13:03:05 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7ID35Ob016948; Sun, 18 Aug 2013 13:03:05 GMT (envelope-from linimon) Date: Sun, 18 Aug 2013 13:03:05 GMT Message-Id: <201308181303.r7ID35Ob016948@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/181373: net-p2p/litecoin fails to compile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 13:03:05 -0000 Synopsis: net-p2p/litecoin fails to compile Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 18 13:02:54 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=181373 From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 14:30:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2094EC33 for ; Sun, 18 Aug 2013 14:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F279129BB for ; Sun, 18 Aug 2013 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7IEU0p3034308 for ; Sun, 18 Aug 2013 14:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7IEU0hD034307; Sun, 18 Aug 2013 14:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 14:30:00 GMT Resent-Message-Id: <201308181430.r7IEU0hD034307@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Konstantin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8C0B9AA6 for ; Sun, 18 Aug 2013 14:25:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78CD12994 for ; Sun, 18 Aug 2013 14:25:13 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7IEPCST034742 for ; Sun, 18 Aug 2013 14:25:12 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7IEPC8s034739; Sun, 18 Aug 2013 14:25:12 GMT (envelope-from nobody) Message-Id: <201308181425.r7IEPC8s034739@oldred.freebsd.org> Date: Sun, 18 Aug 2013 14:25:12 GMT From: Konstantin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181375: disk free space blackhole magic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 14:30:01 -0000 >Number: 181375 >Category: kern >Synopsis: disk free space blackhole magic >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 14:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Konstantin >Release: FreeBSD 8.3 - FreeBSD 8.4 >Organization: Kaspersky Lab >Environment: FreeBSD 8.3-RELEASE-p5 FreeBSD 8.3-RELEASE-p5 #1: Thu Dec 6 17:13:30 UTC 2012 root@tb.kaspersky-labs.com:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD test 8.4-RELEASE FreeBSD 8.4-RELEASE #0 r251259: Sun Jun 2 21:26:57 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: FreeBSD 8.3 - FreeBSD 8.4 amd64 SMP soft updates noatime A daemon running as unprivileged user writes a log. Newsyslog rotates this log every hour and compress it by gzip. Some time later (about 1-2 weeks on our real systems) filesystem gets full. df and du show different results. Kill processes ('/etc/rc.d/jail stop' to be honest) doesn't help. Finally, it is impossible to umount this partition. We get "Device busy" error, but fstat and/or lsof doesn't show something. We know about "open file deletion" issue and other reasons why df and du shows different results, but it looks like it is not our case. Our real systems use jail environment, but it is possible to repeat this strange behavior without jail. We could not repeat this on non-SMP system, but it is not heavily tested. Below are more details: # tunefs -p /dev/mfid0p4 tunefs: POSIX.1e ACLs: (-a) disabled tunefs: NFSv4 ACLs: (-N) disabled tunefs: MAC multilabel: (-l) disabled tunefs: soft updates: (-n) enabled tunefs: gjournal: (-J) disabled tunefs: trim: (-t) disabled tunefs: maximum blocks per file in a cylinder group: (-e) 2048 tunefs: average file size: (-f) 16384 tunefs: average number of files in a directory: (-s) 64 tunefs: minimum percentage of free space: (-m) 8% tunefs: optimization preference: (-o) time tunefs: volume label: (-L) We tested with disabled Soft Updates. It did not help. /etc/fstat: /dev/mfid0p4 /jail ufs rw,noatime 2 2 We tested without noatime options. It did not help. jail newsyslog.conf: /var/log/urep.txt kuser:logv 664 24 * 1 Z /var/run/kur.service.pid real logs: -rw-rw-r-- 1 1001 1002 17361916663 Aug 16 18:59 urep.txt -rw-rw-r-- 1 1001 1002 5801630304 Aug 16 18:00 urep.txt.0.gz -rw-rw-r-- 1 1001 1002 4950129578 Aug 16 17:00 urep.txt.1.gz -rw-rw-r-- 1 1001 1002 2333474330 Aug 16 08:00 urep.txt.10.gz -rw-rw-r-- 1 1001 1002 1154592135 Aug 16 07:00 urep.txt.11.gz -rw-rw-r-- 1 1001 1002 783671738 Aug 16 06:00 urep.txt.12.gz -rw-rw-r-- 1 1001 1002 641988029 Aug 16 05:00 urep.txt.13.gz -rw-rw-r-- 1 1001 1002 711639597 Aug 16 04:00 urep.txt.14.gz -rw-rw-r-- 1 1001 1002 858166595 Aug 16 03:00 urep.txt.15.gz -rw-rw-r-- 1 1001 1002 1129264281 Aug 16 02:00 urep.txt.16.gz -rw-rw-r-- 1 1001 1002 1825284327 Aug 16 01:00 urep.txt.17.gz -rw-rw-r-- 1 1001 1002 2336803342 Aug 16 00:00 urep.txt.18.gz -rw-rw-r-- 1 1001 1002 2412378597 Aug 15 23:00 urep.txt.19.gz -rw-rw-r-- 1 1001 1002 5808607921 Aug 16 16:00 urep.txt.2.gz -rw-rw-r-- 1 1001 1002 2751801103 Aug 15 22:00 urep.txt.20.gz -rw-rw-r-- 1 1001 1002 2546710751 Aug 15 21:00 urep.txt.21.gz -rw-rw-r-- 1 1001 1002 2540838045 Aug 15 20:00 urep.txt.22.gz -rw-rw-r-- 1 1001 1002 3015737372 Aug 15 19:00 urep.txt.23.gz -rw-rw-r-- 1 1001 1002 3251842089 Aug 15 18:00 urep.txt.24.gz -rw-rw-r-- 1 1001 1002 5239690207 Aug 16 15:00 urep.txt.3.gz -rw-rw-r-- 1 1001 1002 6059472499 Aug 16 14:00 urep.txt.4.gz -rw-rw-r-- 1 1001 1002 6249745715 Aug 16 13:00 urep.txt.5.gz -rw-rw-r-- 1 1001 1002 6314110754 Aug 16 12:00 urep.txt.6.gz -rw-rw-r-- 1 1001 1002 6142097019 Aug 16 11:00 urep.txt.7.gz -rw-rw-r-- 1 1001 1002 5700280821 Aug 16 10:00 urep.txt.8.gz -rw-rw-r-- 1 1001 1002 3843021410 Aug 16 09:00 urep.txt.9.gz # dmesg pid 81826 (ksn_urlrepd), uid 1001 inumber 15002792 on /jail: filesystem full pid 81826 (ksn_urlrepd), uid 1001 inumber 15002792 on /jail: filesystem full pid 81826 (ksn_urlrepd), uid 1001 inumber 15002792 on /jail: filesystem full pid 81826 (ksn_urlrepd), uid 1001 inumber 15002792 on /jail: filesystem full # df -h Filesystem Size Used Avail Capacity Mounted on /dev/mfid0p2 9.7G 1.1G 8.0G 12% / devfs 1.0k 1.0k 0B 100% /dev /dev/mfid0p4 256G 238G -2.9G 101% /jail devfs 1.0k 1.0k 0B 100% /jail/jail0/dev du show different free space: # du -h -d 1 / | grep jail 124G /jail Ok, try to stop jail and check free space again. # /etc/rc.d/jail stop Stopping jails: k.kaspersky-labs.com. Nothing has changed. du and df show the same values. Ok, try to umount filesystem. # umount /dev/mfid0p4 umount: unmount of /jail failed: Device busy Are you sure, really? # sync # fstat | grep jail Nobody use /jail! # umount /dev/mfid0p4 umount: unmount of /jail failed: Device busy We were trying to sync/fstat/umount several times without success. We were waiting several hours. Nothing has changed. Ok, finally try to umount -f # umount -f /dev/mfid0p4 Yeah! # fsck /dev/mfid0p4 ** /dev/mfid0p4 ** Last Mounted on /jail ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 25147 files, 65589771 used, 68699872 free (12208 frags, 8585958 blocks, 0.0% fragmentation) ***** FILE SYSTEM IS CLEAN ***** There are no any errors. Mount it back and check free space. # mount /dev/mfid0p4 # df -h Filesystem Size Used Avail Capacity Mounted on /dev/mfid0p2 9.7G 1.1G 8.0G 12% / devfs 1.0k 1.0k 0B 100% /dev /dev/mfid0p4 256G 125G 110G 53% /jail # du -h -d 1 / | grep jail 125G /jail Yeah! >How-To-Repeat: 1. Create a fs partition and mount it somewhere. It is better to create small size partition. We will use /data for example. 2. Add a local unprivileged account. We will use account named 'logv' and the same group name for example. Create some subdirectory in the /data and give it 'rwx' access rights for our account. We will use /data/logv. 3. Add to /etc/newsyslog.conf: /data/logv/test.log logv:logv 664 24 * 1 NZ i.e. rotate log every hour, owner and group for the archive file is our account, no need to send signal, compress log with gzip, keep a 24 gzipped copies. 4. Start with privilege of logv account simple script: while [ 1 -ne 0 ] ; do echo 111111111111111111111111 >> /data/logv/test.log; done Wait from several hours to several days. Waiting time depend on power of the system and the partition size. You can check filesystem free size by 'df -h | grep data' and 'du -h -d 1 / | grep data' commands. When you see a big difference between du and df free space time has come. Kill the script, comment out rotation of log in the /etc/newsyslog.conf, sync, check by fstat and/or lsof usage of our partition, kill all if need, try to umount the partition. >Fix: Not a real fix: 'umount -f' >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 15:40:03 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A9CE5C4B for ; Sun, 18 Aug 2013 15:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89A502D0C for ; Sun, 18 Aug 2013 15:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7IFe30c051668 for ; Sun, 18 Aug 2013 15:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7IFe3ll051667; Sun, 18 Aug 2013 15:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 15:40:03 GMT Resent-Message-Id: <201308181540.r7IFe3ll051667@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christopher Harrison Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0B2179FA for ; Sun, 18 Aug 2013 15:33:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC5682CB8 for ; Sun, 18 Aug 2013 15:33:46 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7IFXksb001192 for ; Sun, 18 Aug 2013 15:33:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7IFXkxk001189; Sun, 18 Aug 2013 15:33:46 GMT (envelope-from nobody) Message-Id: <201308181533.r7IFXkxk001189@oldred.freebsd.org> Date: Sun, 18 Aug 2013 15:33:46 GMT From: Christopher Harrison To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181377: zfs recv causes an inconsistant pool X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 15:40:03 -0000 >Number: 181377 >Category: kern >Synopsis: zfs recv causes an inconsistant pool >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 15:40:03 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Christopher Harrison >Release: 9.2-RC2 >Organization: >Environment: >Description: When receiving a large zfs send -R stream if the system is interrupted the system does not recover gracefully. The zpool will end up in an inconsistent state and not zfs list, zpool import or zpool scrub. The system will run out of available memory resources and "hang" killing all user land processes in the process. This functionality is different from prior releases as the system would "normally" roll back the inconsistent dataset to a consistent state (all bent to a prior state which might have lost data). I would be happy to provide core files Attempts to roll back the zpool to a prior transaction fall too with a zdb core dump (zdb -F z, zdb -X z). On initial check/import/list of the inconsistent pool an error is generated: Solaris: WARNING: can't open objset for z/Systems/volumes/images digging into this using zdb -dddd z/Systems/volumes/images The follow message occurs: Could not open gls/Systems/volumes/images, error 16 >How-To-Repeat: upgrade the zpool the to the latest version flags (or create a new zpool). Have a system with a smaller amount of memory (I have 8GB). Send a large zfs dataset (>100GB) to the newly created pool, after 50% complete pull the power or have a system interruption which causing the system to need to reboot. After the reboot, the system come up in an inconsistent state and quickly becomes memory starved, thus crashing over and over again. The system will consume memory without releasing any and will experience a memory starvation situation within 10min of issuing a zpool command on the inconsistent pool >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 18:21:33 2013 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6513FECE for ; Sun, 18 Aug 2013 18:21:33 +0000 (UTC) (envelope-from b.emailink@orange.fr) Received: from smtp.smtpout.orange.fr (smtp08.smtpout.orange.fr [80.12.242.130]) by mx1.freebsd.org (Postfix) with ESMTP id 94FE924B0 for ; Sun, 18 Aug 2013 18:21:31 +0000 (UTC) Received: from [127.0.0.1] ([81.53.161.20]) by mwinf5d31 with ME id EJMT1m00F0SiMTl03JMUnE; Sun, 18 Aug 2013 20:21:30 +0200 Message-ID: <112da3f05eb11a0798495dd2bd62cf60@mwinf5d31.me-wanadoo.net> Mime-Version: 1.0 Content-Type: multipart/mixed;boundary="4D_===================43971564==" Date: Sun, 18 Aug 2013 20:21:27 +0200 To: freebsd-bugs@FreeBSD.org From: Galerie Depardieu Subject: =?iso-8859-1?Q?"Travers=E9es"_:_photographies_d'Andr=E9_Pharel, _vernissage_samedi_21_septembre?= X-Emailink: Ref=Elk-147483-16675 X-Mailer: eMailink 4 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: galerie.depardieu@orange.fr List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 18:21:33 -0000 --4D_===================43971564== MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" < Si vous n'arrivez pas à visualiser correctement la newsletter, cliquez [1]"ici" [logogalerie.jpg] Exposition hors les murs #11 André Pharel TRAVERSEES Vernissage samedi 21 septembre 2013 à partir de 16h en présence de l'artiste. Exposition jusqu'au 19 octobre 2013 [pharel.jpg] La Galerie Depardieu, "hors les murs" vous invite 18 avenue des fleurs 06000 Nice tél 0 493 96 40 96 - [2]galerie.depardieu@orange.fr [3]www.galerie-depardieu.com (au fond de l'impasse, entre le Consulat de Tunisie et le CROUS) Parking Palmeira - Bus n° 38 av. des Fleurs - 3, 9, 10, 14, 22, rue Bottero - 7 Alsace Lorraine [cpga.jpg] [botoxs.jpg] Conformément à l'article 34 de la loi Informatique et Liberté du 6/01/1978, vous disposez d'un droit d'accès, de modification, de rectification et de suppression des données vous concernant. Si ce message vous a causé un quelconque dérangement, nous vous prions de nous en excuser et vous incitons à vous désinscrire de notre fichier. [4]désinscription "ici" unsubscribe "here" [5]ABONNEZ-VOUS "ICI" SUBSCRIBE "HERE" References 1. http://www.performarts.net/newsletter/nlhorslesmurs11.html 2. mailto:galerie.depardieu@orange.fr 3. http://www.galerie-depardieu.com/ 4. mailto:a.emailink@orange.fr?Subject=Ref_Desabo=Elk-147483-16675&body=Dsinscription%20cliquez 5. mailto:a.emailink@orange.fr?Subject=Ref_Abo=Elk-147483-16675&body=ABONNEMENT%20CLIQUEZ --4D_===================43971564== Content-Transfer-Encoding: base64 Content-Type: application/octet-stream;name="=?iso-8859-1?Q?Comm._presse_Andr=E9_Pharel.pdf?=" Content-Disposition: attachment;filename="=?iso-8859-1?Q?Comm._presse_Andr=E9_Pharel.pdf?=" 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 ycSfzIQGX1cW+GozK8HKdbrnR9Mjkf44WAZ/s/WXS//T0U+wFJb+K05Pg2/M29wX4AWAgx6VpfiN WOv/9r+AFCSm+//4tRjYr65nwTL+Ag2sfl4By8CERc+n3uzCnU2ezs6nF44LNmny1ebzvcl0E8+C TTSbOLNw8syb4WXG5PD48PBw8sK1Z5ODybOLacAbq1fe/cn+w4eTw8nm08nDycnx5tPk8OQY8/cK nGBT4kUF+JK8FTZhIda87+g1Hy8B2WJ2f34B+C4vL+OiSbOibaL7EvbAwN63lypXr0q/7e2vKvA3 elWeZm1ZCRO9+byJJ+7L8/lkvpgEX3vLC3u1WuxNFudgIaBnMZm9PF9t4gDOG4KAHqYMLw1ecCLy Gk/aubfyFpMFQAD84+enU2tvcmGHvnd+NnlmB0tvEdoTTlSdFi2rcz/p0qrrqkL+9GATrybnr4C1 nyb2JbrdvMjb6B4suJo8CRabOFxNjjnE3uTR3uT+Afz/YG8C3AbftpicgPvcRIvwpQB6OImrCvcI NvVzsLJni/2nL8PQ9s4X5uTgv/8FWzE4qWVuZHN0cmVhbQplbmRvYmoKNjIgMCBvYmoKNDY0NApl bmRvYmoKNCAwIG9iago8PC9UeXBlL1BhZ2UvTWVkaWFCb3ggWzAgMCA1OTUgODQyXQovUm90YXRl IDAvUGFyZW50IDMgMCBSCi9SZXNvdXJjZXM8PC9Qcm9jU2V0Wy9QREYgL0ltYWdlQyAvVGV4dF0K L0V4dEdTdGF0ZSA1NyAwIFIKL1hPYmplY3QgNTggMCBSCi9Gb250IDU5IDAgUgo+PgovQ29udGVu dHMgNSAwIFIKL3l0MiA4NDIuMAoveWIxIDEuMAovQmxlZWRCb3ggWzAgMS4wIDU5NC4wIDg0Mi4w XQoveHQyIDU5NC4wCi91MnBNYXQgWzEuMCAwIDAgLTEuMCAwIDg0Mi4wXQoveGIxIDAKL3h0MSAw Ci95dDEgMS4wCi94YjIgNTk0LjAKL3liMiA4NDIuMAovVHJpbUJveCBbMCAxLjAgNTk0LjAgODQy LjBdCj4+CmVuZG9iago2MCAwIG9iago8PC9UeXBlL1BhZ2UvTWVkaWFCb3ggWzAgMCA1OTUgODQy XQovUm90YXRlIDAvUGFyZW50IDMgMCBSCi9SZXNvdXJjZXM8PC9Qcm9jU2V0Wy9QREYgL0ltYWdl QyAvVGV4dF0KL0V4dEdTdGF0ZSA2NSAwIFIKL1hPYmplY3QgNjYgMCBSCi9Gb250IDY3IDAgUgo+ PgovQ29udGVudHMgNjEgMCBSCi95dDIgODQyLjAKL3liMSAxLjAKL0JsZWVkQm94IFswIDEuMCA1 OTQuMCA4NDIuMF0KL3h0MiA1OTQuMAovdTJwTWF0IFsxLjAgMCAwIC0xLjAgMCA4NDIuMF0KL3hi MSAwCi94dDEgMAoveXQxIDEuMAoveGIyIDU5NC4wCi95YjIgODQyLjAKL1RyaW1Cb3ggWzAgMS4w IDU5NC4wIDg0Mi4wXQo+PgplbmRvYmoKMyAwIG9iago8PCAvVHlwZSAvUGFnZXMgL0tpZHMgWwo0 IDAgUgo2MCAwIFIKXSAvQ291bnQgMgo+PgplbmRvYmoKMSAwIG9iago8PC9UeXBlIC9DYXRhbG9n IC9QYWdlcyAzIDAgUgovTWV0YWRhdGEgODMgMCBSCj4+CmVuZG9iago3IDAgb2JqCjw8L1R5cGUv RXh0R1N0YXRlCi9TTSAwPj5lbmRvYmoKOSAwIG9iago8PC9UeXBlL0V4dEdTdGF0ZQovb3AgdHJ1 ZT4+ZW5kb2JqCjE2IDAgb2JqCjw8L1R5cGUvRXh0R1N0YXRlCi9vcCBmYWxzZT4+ZW5kb2JqCjU3 IDAgb2JqCjw8L1IxNgoxNiAwIFIvUjkKOSAwIFIvUjcKNyAwIFI+PgplbmRvYmoKNTggMCBvYmoK PDwvUjU2CjU2IDAgUi9SNTMKNTMgMCBSL1IxNwoxNyAwIFIvUjgKOCAwIFI+PgplbmRvYmoKNTYg MCBvYmoKPDwvU3VidHlwZS9JbWFnZQovQ29sb3JTcGFjZS9EZXZpY2VDTVlLCi9XaWR0aCA1ODgK L0hlaWdodCA1NTcKL0JpdHNQZXJDb21wb25lbnQgOAovRmlsdGVyL0RDVERlY29kZS9MZW5ndGgg OTQ2OTE+PnN0cmVhbQr/2P/uAA5BZG9iZQBkAAAAAAD/2wBDAA4KCw0LCQ4NDA0QDw4RFiQXFhQU FiwgIRokNC43NjMuMjI6QVNGOj1OPjIySGJJTlZYXV5dOEVmbWVabFNbXVn/wAAUCAItAkwEQyIA TREAWREASyIA/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUF 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 H2c/99//AFqZ/bIYHNv/AOP/AP1qb9vtclfNA/4Cf8KbBqSGc+ZLlemMGtaSba2KiJ3od3KniseT V1L5EDD6yZ/pUkWtKqkG2Lf9tP8A61WcNg57U1Uyck5qhLqwOR5H/j//ANaov7Y4x5H/AI//APWq J9QtM48zOO+DSXWoW8fywldjcH5TmrbWwj+eQ8dqrOVfvkVDc6uJxgwED03/AP1qp/bef9Wf++v/ AK1aN1KSmwdTT7W3CxjI5rJGrAtkwf8Aj/8A9arK6zgf8e//AI//APWpFv7QyFjJ7Dg02G9tUGEc L3+6f8KuyIoAwoyas28QC+9ZYvhnJjJ/4F/9ap01YAf6gn/gf/1q0HiGc4qpKuKjfWcj/Uf+P/8A 1qqvqoJP7j/x/wD+tRNf2p48z/x0/wCFSm/tyuDIP++TWiVAzxVSUVG2rBh/qCP+B/8A1qgbUAT/ AKo/99f/AFqn25NTwKQcms/+0lA/1H/j/wD9anjVgB/qP/H/AP61RLe2qtnzP/HTTDd2uP8AW8/Q 1LsyakRdoqr9vXH+p/8AHv8A61H28Y/1X/j3/wBatZT8uDTTGetZ39rZx+4/8f8A/rU46x28j/x/ /wCtTxfWrZzLwP8AZNM+2W4G0S9OOhq6nCYNNZDjNVDqAOP3XT/a/wDrU86kMf6k/wDff/1qthd0 oX05qwRWPFq+JmPkf+P/AP1qnOsAn/Uf+P8A/wBamrf2gBJk5J/umnG9tyAPN6f7Jqwq7nUfiakK 89KoJqG1y3lE5/2v/rU86mCf9Sf++/8A61f/2QplbmRzdHJlYW0KZW5kb2JqCjUzIDAgb2JqCjw8 L1N1YnR5cGUvSW1hZ2UKL0NvbG9yU3BhY2UvRGV2aWNlQ01ZSwovV2lkdGggODI0Ci9IZWlnaHQg NjIKL0JpdHNQZXJDb21wb25lbnQgOAovRmlsdGVyL0ZsYXRlRGVjb2RlCi9EZWNvZGVQYXJtczw8 L1ByZWRpY3RvciAxNQovQ29sdW1ucyA4MjQKL0NvbG9ycyA0Pj4vTGVuZ3RoIDYyMjc+PnN0cmVh bQp4nO2dDdBtVVnHHybNj5QpKxVK51bAJVNKAfuYjEOaliMafTlY1hshpGWmYI6RcrXSqdRKIwbl Klnq1EQlOpV9cF+1sZSLFmVd/M5E6MOpgGQkjNaftZ55n3e9z9pnrXP22Wfvc/+/mTUX9tnvc/bZ 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 VyX8+6ZnlBS3u8gALwB9256gjcMVFBVVW1oYTeS+Ee/AZLYqs4XJx+Dvxob6Go8V/ufJbh+UvmzE D268o382cyM/vJA5bYPbd+/oseKXAyu7a8Ca9unjx+dzfZZzXkKiA8CNM25HPPv/wrM6CnyL2v+F /7tATfyc+ENW1ZUVr2cu8vrrB3XrF/6P4Rcx+gWekBm736i6svK9k7dP+yol/sIvfMX/AyycpGIK ZW5kc3RyZWFtCmVuZG9iago4IDAgb2JqCjw8L1N1YnR5cGUvSW1hZ2UKL0NvbG9yU3BhY2UvRGV2 aWNlQ01ZSwovV2lkdGggMTQ3Ci9IZWlnaHQgMTQ3Ci9CaXRzUGVyQ29tcG9uZW50IDgKL0ZpbHRl ci9GbGF0ZURlY29kZQovRGVjb2RlUGFybXM8PC9QcmVkaWN0b3IgMTUKL0NvbHVtbnMgMTQ3Ci9D b2xvcnMgND4+L0xlbmd0aCA0NTI0Pj5zdHJlYW0KeJztndlzFccVxudeiccYDBg7f4DEU+LdbBJi 0wJ4Q5vth1QqqYrtEDYhMDbGbBYYG4RAgMtxErtSlSpjVm8gkNgXyTLGjuNKVYzfUyBkAXoMkibz tebc9O07S8/cvhIo5+cyd7TN9PL16e7T3WcSX5078aPFMAZIsJgYU7CYGGOwmBhjsJgYY7CYGGOw mBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CY GGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgY Y7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhj sJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOw mBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CYGGOwmBhjsJgYY7CY GGOwmBhjsJgYY7CYGGOwmBhj+InJxs/cT2vV8tWFp7/+Svyg5JHHrK07tvzo8btxsSktWdxDuWHC Tli2sfvdAdhOnpz/RFHdsfnyFJOT8IFb3T17Kqpqm/Py8qz+/n5rwB6s82TCyVQyKb7XUFc3oXTB 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 1YVvdael/Ip58kQPvo0hz7rdd1vMMt3BPFWip5j8LJNlpddfGC3Ku5Xp7aRI66j8URbeEI/3u8wu KXrg2MkzVzEWlXeGurNtsQ8+JSa0jDXOgNpPAOTNhpMRfh9XSGkth0DBRg2wicGybEmUFxxrxc/E DLO8qnY3CtJ9h11Qn0+IWZn0JgSRBmqhuhZONvtyF0X7qfz+jsqVZpeqz04mKCB/WP354dX1wo+2 cc+ebixhy15/QEKllyjJDS3NMpGPwTPTjohwO6zK01sa6R7Krwr/U5T930DdJRnHMlE4ZMnrHXqk B3lpO/xFEeWd3syAlXtYpuKAGaF6q7pFKwo7//m9WMejGa5sTbygtb+W/R+LNzBYATFDwyxTUP35 4dW70DGyySVzCmlPOWaXedKqhmvRllteR50YJltYTIwxWEyMMVhMjDFYTIwx/gsQp4yPCmVuZHN0 cmVhbQplbmRvYmoKNTkgMCBvYmoKPDwvUjIxCjIxIDAgUi9SMTgKMTggMCBSL1I1NAo1NCAwIFIv UjQyCjQyIDAgUi9SMTAKMTAgMCBSL1IxNAoxNCAwIFIvUjEyCjEyIDAgUj4+CmVuZG9iago2MyAw IG9iago8PC9UeXBlL0V4dEdTdGF0ZQovU00gMAovb3AgdHJ1ZT4+ZW5kb2JqCjY0IDAgb2JqCjw8 L1R5cGUvRXh0R1N0YXRlCi9PUCB0cnVlPj5lbmRvYmoKNjUgMCBvYmoKPDwvUjY0CjY0IDAgUi9S NjMKNjMgMCBSL1IxNgoxNiAwIFIvUjkKOSAwIFI+PgplbmRvYmoKNjYgMCBvYmoKPDwvUjgKOCAw IFI+PgplbmRvYmoKNjcgMCBvYmoKPDwvUjIxCjIxIDAgUi9SNTQKNTQgMCBSL1IxMAoxMCAwIFIv UjE0CjE0IDAgUj4+CmVuZG9iagoyNyAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3Ro IDExNz4+c3RyZWFtCnicTYw7CkJBDEX7uwlTauGYzH9awQUo2cETC2EKbdz+S3wgpgiH++OQpY06 iIkDC4/UCh0Nc+Yai4mpl9bFIFf37gIPep5+sEy80EPy+wr/vEw6q5VSpQ9OtygkkfSBrerL0ren E+a8sd8d9ImL4ooVn3kfAQplbmRzdHJlYW0KZW5kb2JqCjUwIDAgb2JqCjw8L0ZpbHRlci9GbGF0 ZURlY29kZS9MZW5ndGggMTE2Pj5zdHJlYW0KeJwz0DMxM7U0N1cwAEJdAz0DExMDMyNTBQM9E1Nz C0MjEMPM2NxUIcWQCyhrCFYHZyTnchVyWegZgwBYAJmdnKvgFALUZGymUM6lH2RkqAA0LiSNC6IV SOoZWkCIkFwuoEwRl4aAZkgWl2sIVyAXAKYAHVgKZW5kc3RyZWFtCmVuZG9iago0MyAwIG9iago8 PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDExOT4+c3RyZWFtCnicTYwxCsMwDEX3fwpBl2So KtmJ7ayBHqBBN0jIUPDQLr1+5YRCJfg89HkSHhIJXYUlyRTzeGAMUyqZhIeci4YGY2iwKbxWN3x/ sFa8UDi2OQ7/vFaazaWY6IPbEpT8je04VU/WcoZVePNGd+ntibvhgS9ZmB6VCmVuZHN0cmVhbQpl bmRvYmoKMzQgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAxMTU+PnN0cmVhbQp4 nE2LsQ7CMBBDd3+FRxg4cglJ07VSPwB0f9CqA1IGWPh9rq1AvcF+ss9BcmJgkJBiX2rl5Yedhze3 7N5pLLlwVnir6z//MDW8UCWttwVHnhoH81Eq/OD6iEqNtAX71FW07mIN3rxxkrM9MRru+AIlfx5N CmVuZHN0cmVhbQplbmRvYmoKNDEgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAx MTk+PnN0cmVhbQp4nE2MsQ6DMAxE9/sKjzCQ2nEIYUXiA1p5ZKPqUClDu/T3MSBVeDg93dOZgwox cWDlUYeeOseUOMfey5jKyNlBBreFngLXx4D+sFZ8UILudxRXXitN5iPN9MPtEYUkkr1wTmV/Xc6w CjdfNEvT2huz4Y4NVDYeuAplbmRzdHJlYW0KZW5kb2JqCjQ5IDAgb2JqCjw8L0ZpbHRlci9GbGF0 ZURlY29kZS9MZW5ndGggMTE1Pj5zdHJlYW0KeJxNizsOwkAMRPs5hUtSsHi8eBNaJA4Q5BsEUSBt AQ3XxyESYorR03y0eBUVLaqmleayTz56Jq4ceUoYac2b3IisuK7lB0vHE1Opq77BPy9dzpGn2uSN w9UoNIk7tmt64bRZdGTzws6GeOASmPEBzdkduQplbmRzdHJlYW0KZW5kb2JqCjMzIDAgb2JqCjw8 L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE4Pj5zdHJlYW0KeJxNjEEKQjEMRPdziix1YX+S Nm3XggdQcoMvLoQudOP1Tf9HcALDY4YJJ8vEdOLE2louZUMrXNWIk7G1LgFNtFqluyDqCOb9YB14 oac8tQX/vA46e4xypQ+WmwqJkj+wT+dr6bv5QDRvHJajP3FxXPEFUSgekQplbmRzdHJlYW0KZW5k b2JqCjI2IDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE5Pj5zdHJlYW0KeJxN jTEOAkEIRfvf21OuhQiDzjLtJh5Aww3WWJhMoY3Xl92NiZD8vAAvCFshoYOw6CimZUUrrfpIwibe pCbU6ud2ortiuUwj+wdzxwvOttQ6+Oe50xQpWaUPjreilD/igU3NZPUtoiM3bwy7fTxxCVzxBVKt Hn8KZW5kc3RyZWFtCmVuZG9iago0MCAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3Ro IDExOT4+c3RyZWFtCnicTYwxCkJBDET7qT1ASi1ckyyb3W0FD6DkBl8shC208fpm/0dwAsNjhgmn 0onpyIm1s2lZMWu3VolTqaU2CahmxZTugqgjmPeDZeCFlvLUGvzzMujsMcpGH5xuKiRK/sA2na+l beYD0byx3x38iYvjii9ehR6SCmVuZHN0cmVhbQplbmRvYmoKMzIgMCBvYmoKPDwvRmlsdGVyL0Zs YXRlRGVjb2RlL0xlbmd0aCAxMTY+PnN0cmVhbQp4nDPQMzUztzSzVDAAQl0DPQMTEwMzI1MFA6C4 kZmpGZBhbgakjRRSDLmA0oZghXBGci5XIZeFnjEIgAWQ2cm5Ck4hQE3GZgrlXPpBRoYKhkYKIWlc EK1AUs/QAkKE5HIBZYq4NAQ1Q7K4XEO4ArkAybUdlwplbmRzdHJlYW0KZW5kb2JqCjI1IDAgb2Jq Cjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE3Pj5zdHJlYW0KeJwz0DO1NFUwUNA10DMw MAVTxkaWZhbmCgZ6puYW5kA5PRMzYyCdYsgFlDQEqgVCGCM5l6uQy0LPGATAAsjs5FwFpxCgJmMz hXIu/SAjQwVDI4WQNC6IViCpZ2gBIUJyuYAyRVwaUpohWVyuIVyBXADBSR2SCmVuZHN0cmVhbQpl bmRvYmoKNDggMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAxMTU+PnN0cmVhbQp4 nE2LOwrDQAxE+zmFShvCWtJ+vG4DPkCCbuCQIrBF0vj6lmMwVvF4jGY4aCQmDszZmTjVlFxUxqlM LmPWkgu9BN6RvUqnLA1f1BD3+wdXXxrdzUex0IrhqUKiZG8cU2eQesAa/PNDd+vtg9nwwAaCMx05 CmVuZHN0cmVhbQplbmRvYmoKMzkgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAx MTU+PnN0cmVhbQp4nE1LOw7CUAzbfYqMMBCS939rJQ7QKjcoYkB6Ayxcn7QVErFkO3EsnCMJXYRF pMeaet+XlEk49VY3rRpKLnRXeKL+7viZdeCFxnGb/fDv10GTeSkW+uC6BCUNZA8cVWfWdpANePLG Sc/2xM0w4wv9Oh4LCmVuZHN0cmVhbQplbmRvYmoKMjQgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVj b2RlL0xlbmd0aCAxMTg+PnN0cmVhbQp4nE2LMQ5CMQiGdw5hGHUQoe0rdDXxABpu8IyDSQddvL60 LyZC8vMF+JhyW5oqMh6ZWLRV04k5TWQqbLqMWZuVgneB8RhC9A/WDi8wyqPm4p/XjmcPKVf8wOmW BCWhP2BTI0lsC+8Qlzfsdwd/wsXhCl/NgR9OCmVuZHN0cmVhbQplbmRvYmoKNDcgMCBvYmoKPDwv RmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAxMTY+PnN0cmVhbQp4nE2LMQpCQQxE+7mDkFILY7K7 2R9bwQMoucEXC2ELbby+8X8QMzC8TDLC1uvRG0lqL1ylecuNzUq3ntC6Ta50UwiLLn8/mAeecK7f WYJ/ngedIku10xuHa1HSQnHHWk1n9dViIC8vbDe7eOAcuOADqZAdbAplbmRzdHJlYW0KZW5kb2Jq CjM4IDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE5Pj5zdHJlYW0KeJxNizsO wkAMRPs5hUsoWGzvv43EARL5BkEUSFtAw/VxEgkxxejpjYZDarnXSkwcmLWXVjNdnFPiotlt6llj cih9N3eBz7I96AfrwAstxC27+Od10GR+ioU+uC4qJEr2wHH1DtKOsgFf3jjFsz1xM8z4AuVJH4MK ZW5kc3RyZWFtCmVuZG9iagozMSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEy MT4+c3RyZWFtCnicTYyxCgJBDET7+QO7lFq4JpvbvWwr+AFK/uDEQthCG3/f7B2CCYSXGWY4Wcmt NmI6cmJuXHNZUUO2mTiZTkUlYKo6F7oLwo1/7A+Wjhcs6ZhV+Oel09kjpJU+ON2ykGTyB7boaBbb jneE88Z+d/AnLo4rvr9QHy4KZW5kc3RyZWFtCmVuZG9iagoyMyAwIG9iago8PC9GaWx0ZXIvRmxh dGVEZWNvZGUvTGVuZ3RoIDExNT4+c3RyZWFtCnicM9AzsTCwNDdXMABCXQM9AxMTAzMjUwUDPRMz QzMTQzDD2NxUIcWQCyhrCFYHZyTnchVyWegZgwBYAJmdnKvgFALUZGymUM6lH2RkqGBopBCSxgXR CjLZ0AJChORyAWWKuDSENEOyuFxDuAK5AKHuHVIKZW5kc3RyZWFtCmVuZG9iago0NiAwIG9iago8 PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDExOT4+c3RyZWFtCnicTYwxDgJBCEV7ToGdFiKw AzvTmngADTdYY2EyhTZeX3Y2JkLy8wI8mGz21hQZj0wsjV1tYCkDmcxnN08oplUU7wLrZRrZP1g6 vKDStNYY/PPS8RwpTY4fON1UMN/EAzY1k6RuER1y84b97hBPuARc4Qva4B9gCmVuZHN0cmVhbQpl bmRvYmoKMzcgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCAxMTM+PnN0cmVhbQp4 nDPQMzU1VTBQ0DXQMzCBkECunqmRiZmFOZBhbmZmamakkGLIBZQyBCoEQhgjOZerkMtCzxgEwALI 7ORcBacQoCZjM4VyLv0gI0MFQyOFkDQuiFYgqWdoASFCcrmAMkVcGvyaIVlcriFcgVwAXsQc3wpl bmRzdHJlYW0KZW5kb2JqCjMwIDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTAw Pj5zdHJlYW0KeJwz0DMyVjBQ0DXQMzIyBFHmxgqGeqbGhkDSwNhIIcWQy0DPwBCoBAhhjORcrkIu Cz1jEAALILOTcxWcQrj0g4DGGRophKRxQfQAST1DCwgRksuloaYZksXlGsIVyAUARz0Y5AplbmRz dHJlYW0KZW5kb2JqCjIwIDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE5Pj5z dHJlYW0KeJxNjDEKQkEMRPs5RbDSwpj8bP7fbQUPoOQGXyyELbTx+sYVwQSGx0wmwi7WaiGhvbC4 NFt8YHESdpsXbQnFp6oTXRUZaV7n/mDteKCyfWYY/7x2OkaWbKYXDhetlG/ihm81ldMaEh2ZPLHd 7OKOU+CMN1kVHpQKZW5kc3RyZWFtCmVuZG9iago0NSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNv ZGUvTGVuZ3RoIDExOD4+c3RyZWFtCnicTYuxDsIwDET3+4DOHumAsZOQmhWJD6DyH7RiQMoAC79f hwoJn3R6uvMJZxI6CmuqNp07ZdFOwqkUKyWgmk56oVUhLBr/oR8sDS8Y537f4J+XRlePUa70wWlO SprIH9in4ay2mzdE88ZhGP2Jm+OODflKHewKZW5kc3RyZWFtCmVuZG9iagoyOSAwIG9iago8PC9G aWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEyMT4+c3RyZWFtCnicTYs7DsJADER7t1zAZSgw/mQ3 3jYSBwD5BkEUSFtAw/XjECHhkUZP4xmmYtKaIuOJiVVbdd/QWHwqyFTGjKaEsVoGd4HsSfZTP1g6 vMDJtvsG/7x0nCNHVvED55sKimI8YJ+mk/hu0SE/bxgOx3jCJeAKK6NrHv8KZW5kc3RyZWFtCmVu ZG9iago1MiAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDExNz4+c3RyZWFtCnic TYuxDsIwDET3+wqPMNTYSZ00KxIfAPIftOpQKQMs/D6mFRJn6fTkuxO2TEKDsIi1XG3H0Uh4bFq1 BVRNxQotiog02nE/mDuemDh/tT/+ee509RjlQm9cHklJE/mKYxrOOh3mHZG8cJKzb7g57vgA2MId zAplbmRzdHJlYW0KZW5kb2JqCjM2IDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGgg MTIwPj5zdHJlYW0KeJxNizEKwzAMRfd/Co3tUFeyY8tZAz1Agm6QkiHgIVl6/SoJhUrweejrcUjK vSoxPThw5D5pPrHruMRM7A+l6gFZWavQW+C1uOH7g7lhQw3pmPPwz3OjwVxKhT54TlFIItmCS/UM Uq+wBm923OhuK16GEV/cfx9kCmVuZHN0cmVhbQplbmRvYmoKNDQgMCBvYmoKPDwvRmlsdGVyL0Zs YXRlRGVjb2RlL0xlbmd0aCAxMTQ+PnN0cmVhbQp4nDPQMzU1VTAAQl0DPQMTEwMzIyBXz9TIxMzC HMgwMTM2N1VIMeQCyhqC1cEZyblchVwWesYgABZAZifnKjiFADUZmymUc+kHGRkqGBophKRxQbQC ST1DCwgRkssFlCni0pDWDMnicg3hCuQCAEaFHMEKZW5kc3RyZWFtCmVuZG9iagoyOCAwIG9iago8 PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEyMD4+c3RyZWFtCnicTYs7DgIxDET7KTiDSygI juP8WiQOAPINFlEgpYCG66/DSogpRk/zNBy05V4rMXFgll5azXR0VuUi2VftWZJOKMndPcJtnAf6 wTLwQgtp5jv88zLobH5KhT443SRSFLIHtqt3iG0rG3Dzxn53sCcuhitWw+IfKwplbmRzdHJlYW0K ZW5kb2JqCjUxIDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGggMTE1Pj5zdHJlYW0K eJxNi0EKwkAMRff/FFnqojHJmHHWggdQcoOKC2EW7abXb9oimMDnkZcv7IWEBmERk6LmO1+dhF2s aVq+qVWv9Fak0nzP/cHYMaFx2WY//PPY6R5ZKpUWXF6mpEbxwVHNZG1HREeaGafhHF88Ak+s5v8d 3QplbmRzdHJlYW0KZW5kb2JqCjM1IDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZS9MZW5ndGgg MTE5Pj5zdHJlYW0KeJxNTTEKAkEM7OcNFim1MCaX3b3YCj5AyQ9OLIQttPH7Zj0EE5gZJjNEuDY/ eiGhvbDoLKbTkCbFS9pczeeaXJol3xQjlvHcn1g6nnC2MV/jXy+dTpEla/TG4Top5YO4Y60msvoK 0ZGXF7abXTxwDlzwAXsQHsIKZW5kc3RyZWFtCmVuZG9iagoyMSAwIG9iago8PC9CYXNlRm9udC9W QVNDUlIrQUNhc2xvblByby1Cb2xkL0ZvbnREZXNjcmlwdG9yIDIyIDAgUi9UeXBlL0ZvbnQKL0Zp cnN0Q2hhciAwL0xhc3RDaGFyIDUyL1dpZHRoc1sKNzI1IDY4OSA3NTIgODQwIDg2OSA0MTUgNjYz IDgxMCA4NjcgNjQwIDczNSA1NzQgNzM4IDY4MiA0NTYgNTI1CjQzNiA1MzggNDUxIDUwMiA1NjAg MjkwIDI3MCA1MjQgMjkwIDgyMyA1NjUgNTI1IDUzOSA1MzQgMzY2IDM4OAozNDEgNTQ3IDQ3NCA0 MzAgNDQyIDQ1NCAyMDAgNDAwIDI4MCAyODAgMzI3IDMyNyAyMDAgNTAwIDUwMCA1MDAKNTAwIDUw MCA1MDAgNDU2IDQ1Nl0KL0VuY29kaW5nIDc0IDAgUi9TdWJ0eXBlL1R5cGUxPj4KZW5kb2JqCjc0 IDAgb2JqCjw8L1R5cGUvRW5jb2RpbmcvQmFzZUVuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9EaWZm ZXJlbmNlc1sKMC9BL0IvQy9HL0gvSS9ML04vTy9QL1IvUy9UL1YvYS9iCi9jL2QvZS9nL2gvaS9q L2svbC9tL24vby9wL3Evci9zCi90L3Uvdi94L3kvei9zcGFjZS9oeXBoZW4vcGVyaW9kL2NvbG9u L3BhcmVubGVmdC9wYXJlbnJpZ2h0L3F1b3RlcmlnaHQvemVyby9vbmUvdHdvCi90aHJlZS9zaXgv bmluZS9hZ3JhdmUvYWNpcmN1bWZsZXhdPj4KZW5kb2JqCjE4IDAgb2JqCjw8L0Jhc2VGb250L1FB WUFaUCtBQ2FzbG9uUHJvLUJvbGQvRm9udERlc2NyaXB0b3IgMTkgMCBSL1R5cGUvRm9udAovRmly c3RDaGFyIDM0L0xhc3RDaGFyIDM0L1dpZHRoc1sgNDc0XQovRW5jb2RpbmcgNzUgMCBSL1N1YnR5 cGUvVHlwZTE+PgplbmRvYmoKNzUgMCBvYmoKPDwvVHlwZS9FbmNvZGluZy9CYXNlRW5jb2Rpbmcv V2luQW5zaUVuY29kaW5nL0RpZmZlcmVuY2VzWwozNC92XT4+CmVuZG9iago1NCAwIG9iago8PC9C YXNlRm9udC9YTlJGUksrQXJpYWxNVC9Gb250RGVzY3JpcHRvciA1NSAwIFIvVHlwZS9Gb250Ci9G aXJzdENoYXIgMC9MYXN0Q2hhciA0NC9XaWR0aHNbCjI3OCAyNzggMzMzIDI3OCA1NTYgNTU2IDU1 NiA1NTYgNTU2IDU1NiA1NTYgNTU2IDI3OCA2NjcgNjY3IDcyMgo2MTEgNTU2IDc3OCA2NjcgNzIy IDY2NyA2MTEgNzIyIDU1NiA1NTYgNTAwIDU1NiA1NTYgMjc4IDU1NiAyMjIKNTAwIDIyMiA4MzMg NTU2IDU1NiA1NTYgMzMzIDUwMCAyNzggNTU2IDUwMCA0MDAgMjIyXQovRW5jb2RpbmcgNzYgMCBS L1N1YnR5cGUvVHlwZTE+PgplbmRvYmoKNzYgMCBvYmoKPDwvVHlwZS9FbmNvZGluZy9CYXNlRW5j b2RpbmcvV2luQW5zaUVuY29kaW5nL0RpZmZlcmVuY2VzWwowL3NwYWNlL2NvbW1hL2h5cGhlbi9w ZXJpb2QvemVyby9vbmUvdHdvL3RocmVlL2ZvdXIvc2V2ZW4vZWlnaHQvbmluZS9zZW1pY29sb24v QS9CL0MKL0YvTC9PL1AvUi9TL1QvVS9hL2IvYy9kL2UvZi9nL2kKL2svbC9tL24vby9wL3Ivcy90 L3Uvdi9kZWdyZWUvcXVvdGVyaWdodF0+PgplbmRvYmoKNzcgMCBvYmoKPDwvRm9udDw8L1IxOCAx OCAwIFIKCi9SMjEgMjEgMCBSCj4+Pj5lbmRvYmoKNDIgMCBvYmoKPDwvVHlwZS9Gb250Ci9SZXNv dXJjZXMgNzcgMCBSCi9FbmNvZGluZyA3OCAwIFIvQ2hhclByb2NzIDw8L3RocmVlIDUyIDAgUgov emVybyA1MSAwIFIKL2MgNTAgMCBSCi9uaW5lIDQ5IDAgUgovcXVvdGVyaWdodCA0OCAwIFIKL3Eg NDcgMCBSCi91IDQ2IDAgUgovaiA0NSAwIFIKL28gNDQgMCBSCi94IDQzIDAgUgovcGVyaW9kIDQx IDAgUgovaCA0MCAwIFIKL3NpeCAzOSAwIFIKL2FncmF2ZSAzOCAwIFIKL2IgMzcgMCBSCi90IDM2 IDAgUgovcCAzNSAwIFIKL29uZSAzNCAwIFIKL3R3byAzMyAwIFIKL2QgMzIgMCBSCi9tIDMxIDAg Ugovc3BhY2UgMzAgMCBSCi9nIDI5IDAgUgovYSAyOCAwIFIKL3MgMjcgMCBSCi9pIDI2IDAgUgov biAyNSAwIFIKL3IgMjQgMCBSCi9lIDIzIDAgUgovdiAyMCAwIFIKPj4vRm9udE1hdHJpeFsxIDAg MCAxIDAgMF0vRm9udEJCb3hbMCAwIDEgMV0vRmlyc3RDaGFyIDE0L0xhc3RDaGFyIDUxL1dpZHRo c1sgMC40ODYgMC41NTUKMC40NjYgMC41NjggMC40ODEgMC41MzIgMC41OSAwLjMyIDAuMyAwIDAg MC44NTMgMC41OTUgMC41NTUgMC41NjkgMC41NjQgMC4zOTYgMC40MTgKMC4zNzEgMC41NzcgMC41 MDQgMC40NiAwIDAgMC4yMyAwIDAuMzEgMCAwIDAgMC4yMyAwLjUzIDAuNTMgMC41MwowLjUzIDAu NTMgMC41MyAwLjQ4Nl0KL1N1YnR5cGUvVHlwZTM+PgplbmRvYmoKNzggMCBvYmoKPDwvVHlwZS9F bmNvZGluZy9CYXNlRW5jb2RpbmcvV2luQW5zaUVuY29kaW5nL0RpZmZlcmVuY2VzWwoxNC9hL2Iv Yy9kL2UvZy9oL2kvagoyNS9tL24vby9wL3Evci9zL3QvdS92L3gKMzgvc3BhY2UKNDAvcGVyaW9k CjQ0L3F1b3RlcmlnaHQvemVyby9vbmUvdHdvL3RocmVlL3NpeC9uaW5lL2FncmF2ZV0+PgplbmRv YmoKMTAgMCBvYmoKPDwvQmFzZUZvbnQvSkdJRVFTK0FyaWFsLUJvbGRNVC9Gb250RGVzY3JpcHRv ciAxMSAwIFIvVHlwZS9Gb250Ci9GaXJzdENoYXIgMC9MYXN0Q2hhciA0Ni9XaWR0aHNbCjI3OCA1 NTYgNTg0IDI3OCAzMzMgMjc4IDU1NiA1NTYgNTU2IDU1NiA1NTYgNTU2IDU1NiA1NTYgNTU2IDk3 NQo3MjIgNzIyIDY2NyA2MTEgNzc4IDcyMiA3MjIgNTU2IDU1NiA2MTEgNTU2IDMzMyA2MTEgMjc4 IDI3OCAyNzgKODg5IDYxMSA2MTEgNjExIDYxMSAzODkgNTU2IDMzMyA2MTEgNTU2IDc3OCA1NTYg NTU2IDU1NiAyNzhdCi9FbmNvZGluZyA3OSAwIFIvU3VidHlwZS9UeXBlMT4+CmVuZG9iago3OSAw IG9iago8PC9UeXBlL0VuY29kaW5nL0Jhc2VFbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvRGlmZmVy ZW5jZXNbCjAvc3BhY2UvbnVtYmVyc2lnbi9wbHVzL2NvbW1hL2h5cGhlbi9wZXJpb2QvemVyby9v bmUvdHdvL3RocmVlL2ZvdXIvZml2ZS9zaXgvZWlnaHQvbmluZS9hdAovQy9EL0UvRi9HL0gvTi9h L2MvZC9lL2YvZy9pL2ovbAovbS9uL28vcC9xL3Ivcy90L3Uvdi93L2VhY3V0ZS9ndWlsbGVtb3Rs ZWZ0L2d1aWxsZW1vdHJpZ2h0L3F1b3RlcmlnaHRdPj4KZW5kb2JqCjgwIDAgb2JqCjw8L0ZpbHRl ci9GbGF0ZURlY29kZS9MZW5ndGggMzYxPj5zdHJlYW0KeJxdkk1ug0AMhfecghswf5BEimaTbrJo VbW9AAyeiEUAEbLo7fueSaqqi4f4mLGfbVydzi/ncVjL6n2Z0qesZR7GfpHbdF+SlJ1chrGwruyH tD5In+nazkV1em3nr+9ZSlyQvPFbe5XqY2/0i91i0tTLbW6TLO14keJoTDzmHAsZ+39H3m0RXf5z 1RwgE2wEtngVxUTM8WgtsXZA64BesSGGqAIeiDVQYxumsoh1mrlhKofMLhF3e2IfVcY4Q0ScN4q8 7OHpHdG3RHh6NXKM9TCigJnYRBVwR9xFlTOWVfl9VBnTdkRU5LWqThFVBe3Is4wAk7AZeSJMghp1 egqToEaiCBMKyOEEmIROkWVgfiqgENFr0H5zIKLfoLPKLDJgVpSxNX1rTKLWaTTst8Y0qNwZ+uJX qHDKWESoHnOuUT6Fy1434PmruQzcqucSlem+LDKuunq6WlypYZTf7ZynmVElVPwAuvi53gplbmRz dHJlYW0KZW5kb2JqCjE0IDAgb2JqCjw8L0Jhc2VGb250L0RXR0NURCtBQ2FzbG9uUHJvLUJvbGRJ dGFsaWMvRm9udERlc2NyaXB0b3IgMTUgMCBSL1RvVW5pY29kZSA4MCAwIFIvVHlwZS9Gb250Ci9G aXJzdENoYXIgMC9MYXN0Q2hhciA4NC9XaWR0aHNbCjY1NyA2MzAgNjgyIDc5MyA2NzUgNjQwIDc0 MCA4MjAgMzg1IDQwNiA2NjAgOTY3IDc0MCA3NjQgNjI2IDcwNQo1MzAgNjYwIDU5OCA4NTEgNjAw IDQ3NiA0NzAgMzMxIDQ4NiAzOTAgMzA5IDQ2OSA1MDAgMjk2IDI3OSAyNjAKNzY4IDUzMSA0MTkg NDk3IDQ4MiAzOTAgMzI1IDMyMSA1MjEgNTU1IDQ3MCA0NDUgNDg2IDIwMCAyNTAgNDE0CjI1MCAy NTAgMjUwIDMwMCAzMDAgMzMwIDE0MCAxNzUgMzc1IDM3NSA1MDAgNTAwIDUwMCA1MDAgNTAwIDUw MAo1MDAgNTAwIDUwMCA1MDAgNTAwIDI1MCA0NzYgNDc2IDMzMSAzOTAgMzkwIDM5MCAyOTYgNDE5 IDUyMSA2MTAKMTAxMSA1ODUgNTQ3IDUzNCA4MThdCi9FbmNvZGluZyA4MSAwIFIvU3VidHlwZS9U eXBlMT4+CmVuZG9iago4MSAwIG9iago8PC9UeXBlL0VuY29kaW5nL0Jhc2VFbmNvZGluZy9XaW5B bnNpRW5jb2RpbmcvRGlmZmVyZW5jZXNbCjAvQS9CL0MvRC9FL0YvRy9IL0kvSi9ML00vTi9PL1Av UgovUy9UL1YvVy9ZL2EvYi9jL2QvZS9mL2cvaC9pL2ovbAovbS9uL28vcC9xL3Ivcy90L3Uvdi94 L3kvei9zcGFjZS9jb21tYS9oeXBoZW4KL3BlcmlvZC9jb2xvbi9zZW1pY29sb24vcGFyZW5sZWZ0 L3BhcmVucmlnaHQvc2xhc2gvcXVvdGVzaW5nbGUvcXVvdGVyaWdodC9ndWlsbGVtb3RsZWZ0L2d1 aWxsZW1vdHJpZ2h0L3plcm8vb25lL3R3by90aHJlZS9mb3VyL2ZpdmUKL3NpeC9zZXZlbi9laWdo dC9uaW5lL251bWJlcnNpZ24vZGVncmVlL2FncmF2ZS9hY2lyY3VtZmxleC9jY2VkaWxsYS9lZ3Jh dmUvZWFjdXRlL2VjaXJjdW1mbGV4L2ljaXJjdW1mbGV4L29jaXJjdW1mbGV4L3VncmF2ZS9vZQov VF9oL2ZfZi9mX2kvZl9sL2ZfZl9pXT4+CmVuZG9iagoxMiAwIG9iago8PC9CYXNlRm9udC9HR1lF T0krQUNhc2xvblByby1Cb2xkSXRhbGljL0ZvbnREZXNjcmlwdG9yIDEzIDAgUi9UeXBlL0ZvbnQK L0ZpcnN0Q2hhciAwL0xhc3RDaGFyIDc0L1dpZHRoc1sKNjU3IDAgMCAwIDAgMCAwIDAgMCAwIDAg MCAwIDAgNjI2IDAKMCAwIDAgMCAwIDQ3NiAwIDAgNDg2IDM5MCAwIDQ2OSA1MDAgMjk2IDAgMjYw Cjc2OCA1MzEgNDE5IDQ5NyA0ODIgMzkwIDMyNSAzMjEgNTIxIDU1NSAwIDQ0NSAwIDIwMCAyNTAg MAowIDAgMCAwIDAgMCAwIDE3NSAwIDAgMCAwIDAgMCAwIDAKMCAwIDAgMCAwIDAgNDc2IDAgMCAz OTAgMzkwXQovRW5jb2RpbmcgODIgMCBSL1N1YnR5cGUvVHlwZTE+PgplbmRvYmoKODIgMCBvYmoK PDwvVHlwZS9FbmNvZGluZy9CYXNlRW5jb2RpbmcvV2luQW5zaUVuY29kaW5nL0RpZmZlcmVuY2Vz WwowL0EKMTQvUAoyMS9hCjI0L2QvZQoyNy9nL2gvaQozMS9sL20vbi9vL3AvcS9yL3MvdC91L3YK NDMveQo0NS9zcGFjZS9jb21tYQo1NS9xdW90ZXJpZ2h0CjcwL2FncmF2ZQo3My9lZ3JhdmUvZWFj dXRlXT4+CmVuZG9iagoyMiAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL1ZB U0NSUitBQ2FzbG9uUHJvLUJvbGQvRm9udEJCb3hbLTk3IC0yNzUgODM2IDc1NF0vRmxhZ3MgNAov QXNjZW50IDc1NAovQ2FwSGVpZ2h0IDc1NAovRGVzY2VudCAtMjc1Ci9JdGFsaWNBbmdsZSAwCi9T dGVtViAxMjUKL01pc3NpbmdXaWR0aCA1MDAKL0NoYXJTZXQoL0EvQi9DL0cvSC9JL0wvTi9PL1Av Ui9TL1QvVi9hL2FjaXJjdW1mbGV4L2FncmF2ZS9iL2MvY29sb24vZC9lL2cvaC9oeXBoZW4vaS9q L2svbC9tL24vbmluZS9vL29uZS9wL3BhcmVubGVmdC9wYXJlbnJpZ2h0L3BlcmlvZC9xL3F1b3Rl cmlnaHQvci9zL3NpeC9zcGFjZS90L3RocmVlL3R3by91L3YveC95L3ovemVybykvRm9udEZpbGUz IDY4IDAgUj4+CmVuZG9iago2OCAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUKL1N1YnR5cGUv VHlwZTFDL0xlbmd0aCA4MjI0Pj5zdHJlYW0KeJzVeXl0VFW6b5XBqoNgRLS0InoqDNLiADghoKAg ooCizBBCIJCBDCRkqkpS83Sm7wxVp6pSlXkgZCQjSZgMIMokSIvXARW1r0Pbbavdra27co9vrbdP 6Htfv7feuv/fP1KrTqVqn7339/2mfbSaCTdptFrtlGXPp5fkFxa8Vlz4yPLC/Az1s9nxadr4vTfF 70t4UGkfuzZG3QyTE2DyhIv3znZPjVfcHk+8DX00RZOg1b7/57HnC/dXFOdk7y1Nfmz+/PkPq6+P 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 o8SKEAg19/UPnhWvCMe2icvEJ/YseWXJ8rkLnsnO9WGOEn2iH38HJIjyNTx2YfWq1VerMRL/8JoW HUPTFD2ak4BewlnoaaT/GU38auG7z8RMgv5K34XT8Alzfus15VZQpsKrc+0rWQ9PBbhGv1HkJD4Q bTrVN/wmEBc7tu5YmrJric1kZzCZOsEt0o3UX8qOroNHiefTVq1IszfH/KSnofLQHijlyouhiCg8 tA3dRqoT6UefXkbNFm0HItEidF8C8tgM12Ck+dhIf0/7m/AV8dW2H5QpaTvLLWbSLx7EpkaDbvm0 M6leDuBtJGRPwO93cN795Mvlq/JfWrV69Wqsg8q9sCn4wpnl3elHS94DItJveNGBJp29CiONjaZo rF7qAOJs+9KHleRUWxbu3lQ8k6AZ9Z5FH/RruzE/LUazEhCPe3Q97KzYlZWZl7MElhPLj89Ak873 1kVrSFlnVkyPKJqn8nyMH2ORcIaYkFwtiBHyfN1I81snfv3mDHoQ0DTocl/acXHP6R1Ni4AQswwX axbN3cG/Yq0wORwWXykQm3a//+O3nW+d+yeI8Db8N0BCxyb8f8D1P/DwdwgdMAgCiKy4DCUaHU22 WBmkQ9n6oQI09XGjwIqcIGBySx3Ltmj/9mXCd2PZhr3F+/M3D3vClClEy05wQErGFruboilVkCkJ GxEZIlJVsCb0/SX4B/FOau8O8j/psQezI+pUlhnCVZFAgJGpoOnpH3agBYCeBrTqCHrgsx8DQTEE EhFwhdWHYn4/mZa5ccP2RVufKJoD82HuwZkjy96Yf3rLiUzZL7MBFUX/A7fdHV9koANUAHseoCmG nq5MN9IqkbFhj1FkREEU/nbRiLRrMLfwgpgUCgsChz9PSrQ0xhfWIWtNa011QKe0i/FDYT3+bK4k 1tdE0a661hpC6QlPHLoFJU0ib5kgTZ44FJ08GSXVTL6Vn5yo0fxvhTrN3gplbmRzdHJlYW0KZW5k b2JqCjE5IDAgb2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvUUFZQVpQK0FDYXNs b25Qcm8tQm9sZC9Gb250QkJveFstMjEgLTE1IDUwNyA3MDBdL0ZsYWdzIDEzMTA3NgovQXNjZW50 IDcwMAovQ2FwSGVpZ2h0IDcwMAovRGVzY2VudCAtMTUKL0l0YWxpY0FuZ2xlIDAKL1N0ZW1WIDc2 Ci9NaXNzaW5nV2lkdGggNTAwCi9YSGVpZ2h0IDQyMwovQ2hhclNldCgvdikvRm9udEZpbGUzIDY5 IDAgUj4+CmVuZG9iago2OSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUKL1N1YnR5cGUvVHlw ZTFDL0xlbmd0aCA1Njc+PnN0cmVhbQp4nH2QP2wSURzH3wE9aD0rmjAQFV6UURFddCLBDo1LQ1IN 6WJ6lrO9CHf17gppxVigtNBHD45i+SMnicG46GDSxERD7OLgromxjiZq4v4eOQbvcFEHl19+n+97 v+/vly8FHDZAUZQ7MsXKCVGISuL5q2IibmkBcpIip2zktD2VIZVBdAwxdsQ43pNvJ/DhcfzpGP7o BnaK+vBjMCUur0r84pICL4VCoXNWvTiql2EkLt7i4OyqrHBJGV4TFkRpWZRYhYsHYSSRgKMxGUqc zEmpkTga+H0O5GXI8coSJ0HW/LLImy4SF4eKxMa5JCvdgaL18gfe/s9CyAvQ9II3BN6iWcUUZcgK 8QumizjasiCuCIrEc3LwrzPMWKAVy78iAIA6A0AM2MwUwQzlIEXUJz/7lFkDfTsyeRAdFmmsGu88 RhjvjuHvtAGNAw+2YFhzDumbox6HDZNp8tZjdYZFk0TQUiTwkkqRnjGH5+wp4vcUyltVX5fWUT3X EWsPXhuOSraS/WJMP8zUM7VsE7WQVtf2tMZnHG48ffLm1Ve922h2d1rI1aGrSK35Hzt3t8v5nFxE Md8MWlHvI9dWqVTwp52b5U3Vp5vej9I5KX09Zrjza64CPY/Bhp48RLp3r6k1fU1aK1c0f9eplXby 63eLaNp3Fq2p68iVK21v+CfTXXKlg++1e+1WlTaeqeR53WlqwYqqtxt4vtNru4wX9fH9Cew94ptw VJjx/QbDYG+bOVpmJgH4BZaxEksKZW5kc3RyZWFtCmVuZG9iago1NSAwIG9iago8PC9UeXBlL0Zv bnREZXNjcmlwdG9yL0ZvbnROYW1lL1hOUkZSSytBcmlhbE1UL0ZvbnRCQm94Wy0xIC0yMTAgNzY4 IDcyOF0vRmxhZ3MgNAovQXNjZW50IDcyOAovQ2FwSGVpZ2h0IDcyOAovRGVzY2VudCAtMjEwCi9J dGFsaWNBbmdsZSAwCi9TdGVtViAxMTUKL01pc3NpbmdXaWR0aCAxNTM2Ci9DaGFyU2V0KC9BL0Iv Qy9GL0wvTy9QL1IvUy9UL1UvYS9iL2MvY29tbWEvZC9kZWdyZWUvZS9laWdodC9mL2ZvdXIvZy9o eXBoZW4vaS9rL2wvbS9uL25pbmUvby9vbmUvcC9wZXJpb2QvcXVvdGVyaWdodC9yL3Mvc2VtaWNv bG9uL3NldmVuL3NwYWNlL3QvdGhyZWUvdHdvL3Uvdi96ZXJvKS9Gb250RmlsZTMgNzAgMCBSPj4K ZW5kb2JqCjcwIDAgb2JqCjw8L0ZpbHRlci9GbGF0ZURlY29kZQovU3VidHlwZS9UeXBlMUMvTGVu Z3RoIDQwNDQ+PnN0cmVhbQp4nIWXd1hU19bGz8gMDkoTGZijEyUWLCgiiIIiRRCRgCIiKqLSi0rv sRssucvvS7NLLKCIFCFIVDAiGgVjULHEdhNj0BjMVW/6OsMafO46Q3LzfH99D4dzZubZM3vttd/1 e9dWCMo+gkKhUPtlp8auCo2QX3tIgxWSro+kM/kHJel36FepwNwEzJVD+gnKbT4Afz3N+4LOpswG qwfgPCscZi30USgmTzvu4OoycaJDREqiQ2hGekZuUWaig39GdmZGdmxuaka6s4PfqlUO4anJKbk5 DuGJOYnZ+YkJzsbZBUEYbzHccoTVSEfrUaPHjNWKAwYN1tm8MXCI7VCNnYP9m8MUTn1MlCrTvmrB rF9/83GCMEyYKwwXwoQRwjxhvjBKiBAWCJHCQmGG4C+MFwKEmUKg4CLMEiYKQYKbECxMEtyFEGGy ECrMESyEw4KlYCUMEGyEgYKtoBEUglYQhUGCTlALzpwWYYyQLlxXbFb80qfYpI/JdJMEpY0yR3lX pVR9ZTrXdKVpR9/gvk3qcPUhM4XZ8X7T+sX1H94/sH9B/8f9fzdfY37Y/N8WJhZ2FmUWHZazLL+1 srcaZJVgbWPdZv16gJPOVMAddt07AHQq4bX8IEFVVaUBnbKlO0J+6/s6AlSWOlXkNjuMA3SXwiQ9 oI8hDLPA8EKnaqJEMLTpugNV0jTplYYHzKjpOtp14LlY6lUzsomscLxhrNawWf4RZQ4OtsMgAOk+ 4BHUPMDxIJ6FTzfU5p/IO5K+N3lv0ocRMAN6BmnlUfo34dG21uJqcUNz0ZnMusy6+MrI0gWlYbve AhoFpJo3ncwAnbQ0GeB1kzFIHGsnfQ5d8PCj9hLxy/0tZaeqTlXVNla0VrTuvQodHPho1NLM8/jG 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 51cvXj3ZWnap7NLuS9AKuJoCMIBq+JAA5Eujs6kCQwu12zEEVdgH/Yx+x8IEGg6kcyM7uk17KZa8 RpFZFGnXxBfHbo/pXsrYQD/jtN9J9poy2oahNB13Gl09EZcz3wDnOTLZ/E6ieKWDHYA1fb3oakpr cuvCpqATQTV+Jay1NbxiGrqcNqsxaGU5Brx8wl2uyBl/NRZkL51GjtP5PFEMG7ev315ArtrmPZ9+ WAPs82hO5sZ0+XFHItJ0Od4R38ZhDAXl9LYDY41Kx18xiu+exPfuYD499kx8zW2Pp96at/xXlbRH aVgO0nL9GOgZI2tC/uoLnbJbo+cuebg7o5+cxKk0LoRcY2gKX7nk8C71xVDQ7kTHUhxUi1b/xp9w OepxLi5h39O+ni1DovfU+1pfq6FZ0aNkws8H2sGYXoCfgnxF4gLA91iQTqijoFYcefHWL4A6wFTy Rm/awSgHmiovMZXL6NYIHBOhTsbL7B1WP/8kE0AHv4w0ZmngmNFyfzgcxvBpaah6Xo8nD/LiYrHh llTeUm4wOSIgHy4WK/LlY+nCPUvKlxxNrss5m312/Tlo7m3hlPiDpoJWozN3N0XA58HnFV9f/ufl tscNaMLXQbmFmAsYVIBD4n6M+3HuHa9mr2a3o1yEJXwe5RTTOTVQA86nCNzKBcJIeXAb+25fDevh HfDdNKPIv8g/LzwzNjMmNTUuOzY7al0ENzIwuSMdp6jJb7VKn6cfzPUXT/050Gl/1oOtcdYEHIIj ZMecILejdjzI2HQE619q/k8V97xU/n9wYTpa65SS5jmPM0md658ung64Un66oeKCeKh+Zzs8ZcFo aQEPTlRZCsJ/AIPnmQEKZW5kc3RyZWFtCmVuZG9iagoxMSAwIG9iago8PC9UeXBlL0ZvbnREZXNj cmlwdG9yL0ZvbnROYW1lL0pHSUVRUytBcmlhbC1Cb2xkTVQvRm9udEJCb3hbLTQ1IC0yMTAgOTcx IDcyOF0vRmxhZ3MgNAovQXNjZW50IDcyOAovQ2FwSGVpZ2h0IDcyOAovRGVzY2VudCAtMjEwCi9J dGFsaWNBbmdsZSAwCi9TdGVtViAxNDUKL01pc3NpbmdXaWR0aCAxNTM2Ci9DaGFyU2V0KC9DL0Qv RS9GL0cvSC9OL2EvYXQvYy9jb21tYS9kL2UvZWFjdXRlL2VpZ2h0L2YvZml2ZS9mb3VyL2cvZ3Vp bGxlbW90bGVmdC9ndWlsbGVtb3RyaWdodC9oeXBoZW4vaS9qL2wvbS9uL25pbmUvbnVtYmVyc2ln bi9vL29uZS9wL3BlcmlvZC9wbHVzL3EvcXVvdGVyaWdodC9yL3Mvc2l4L3NwYWNlL3QvdGhyZWUv dHdvL3Uvdi93L3plcm8pL0ZvbnRGaWxlMyA3MSAwIFI+PgplbmRvYmoKNzEgMCBvYmoKPDwvRmls dGVyL0ZsYXRlRGVjb2RlCi9TdWJ0eXBlL1R5cGUxQy9MZW5ndGggMzk0Mz4+c3RyZWFtCnicvVd7 WE1p21/V3rXTgWjX3mxkQjmlkuR8JqWQUySJlNK5sCOpZsZh7plhKB2YRInoJKYSYTBjhgwGM3jr nXcUYwbjPPfa+9653nttM9d81/dd3/vne1nWflrPs9ZzH3737/49JoLMVDAxMbGZmBwdHjtkUkJs RMA86YGP2MNE1JiKPc2WUqQ+TBcrB2szsJb16iTIto4H+OvX2gI03fp0xfN2uKIzenYRzExMvCdM LXfydPfwcJq3aqVTQEJ8Qmpa4kqnyQnJiQnJ4anRCfFuThNjY52CoqNWpaY4Ba1MWZm8dmWEm9EG J8kG40gQhKF93uvibNe3a79u/e1dlK4DBjqq1A7de2h69urt1NnUTCYfZG6hsOxkZS0MsbE1cRss CLOE2UJfYY7QTwgS+gtzBRdhnuAqzBcGCAuEhUKwMEmYIkwVhgrThOmCr+An+AsBQqDQR7AWbARb obNwTbATugrdBHtBKTgIjoKJoBXUQndBJiiEGMGdg8WfyjExM1llct00zPSyKZqNMgs3eyZLlf1D bimPk++T/2C+2bzVYrpFkkWLwk3RbmllGWm5oZOj1VqrUqu7Vk+tBetNNl1txtlU2Y6xTbVt6byg 86LOO7sM71Jl19tuvt12jbmAOQ76HACNXHgr/ZAgP3pUCRrZOf086c8Jb+eB3FYja9M/dQCdK7Ru vpxVr86sT6tNqkqsijgUfCB4f9DuAKA+QIpZbmQN6K6iAoC3jVgJIK4BtNrZUlivLqg/WFVbVltW l38ajkFFdpm2TFuUlBeTF/3ZRCALMNSq+AXjVq1inRLI9kDfk94nvb/zaw9rC3u05gngNcB0zAK8 DXiTtLiRboMzDEkdEeod6ucb6hXqleoObgo8ka4EjEI5WqALSJeMFEARQNEkIwtyAeniWV6ksNXI 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 jtqYK9/frObexW62Mzn4As1zG0yWzI/D7m3AblQRb7RPX6L/RbkCs2gI2ksHphvcwCkZDJVgKMZV FMOKEA+zFMdFgOcAq2keLqJNfKb0Wj7VpxgftP3IuWmHrxfmk0yBpeXyDjuDjpvOyH/9jAIfK+En b5CERMDY8c5ScFxfAvpLHceI7M03lExYeF0MputiOB+KMN8QTvmGYLlB4/D/zBi1W4vuqJLGTh4v BZ6rsu9Zkr/2aZ+KZqskLXKcZRgGghQ4n+HoSCOa0f7CbYkN+TyUQMNxGB01Fu0w6eUEzpr9ZTLH foGKr7BaCa+v32DbX8H1adwkSDbN14l/p11lbxRJHQp2zuw7NJeOmVbwMzcL7qQe3sOl3FuB50PA ocYSeYS/KI/TFuxHtphmPNPEYzKIFSCW0CqMpiZgMUqLpFLm4TGczwfbDfAG2k5835pK7V7j+YND Yc7ZDDRTUGmcXNdF1DPDjRzhxVEkGYz4mSHOft758ZUEwqds6QzjxugmmijHGLrjWrgnduc9x/E4 xThmiYWJtAUuMRz9jSqnF/xD7E7p0hqOMa+hVOB36RhIqugDkM+iU4wd1g0cOjm2inlSwubww2T4 Gk+9o16NvO4/cm+dkXuv/A/ulQrDRr9ayXvSdcNCvG5Yzp+lfHE55osL5aLG4X/N5PFMHs/YCsK/ AZ+oSyIKZW5kc3RyZWFtCmVuZG9iagoxNSAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0Zv bnROYW1lL0RXR0NURCtBQ2FzbG9uUHJvLUJvbGRJdGFsaWMvRm9udEJCb3hbLTIxMiAtMzAwIDEw MzggNzgyXS9GbGFncyA0Ci9Bc2NlbnQgNzgyCi9DYXBIZWlnaHQgNzgyCi9EZXNjZW50IC0zMDAK L0l0YWxpY0FuZ2xlIDAKL1N0ZW1WIDE1NQovTWlzc2luZ1dpZHRoIDUwMAovQ2hhclNldCgvQS9C L0MvRC9FL0YvRy9IL0kvSi9ML00vTi9PL1AvUi9TL1QvVF9oL1YvVy9ZL2EvYWNpcmN1bWZsZXgv YWdyYXZlL2IvYy9jY2VkaWxsYS9jb2xvbi9jb21tYS9kL2RlZ3JlZS9lL2VhY3V0ZS9lY2lyY3Vt ZmxleC9lZ3JhdmUvZWlnaHQvZi9mX2YvZl9mX2kvZl9pL2ZfbC9maXZlL2ZvdXIvZy9ndWlsbGVt b3RsZWZ0L2d1aWxsZW1vdHJpZ2h0L2gvaHlwaGVuL2kvaWNpcmN1bWZsZXgvai9sL20vbi9uaW5l L251bWJlcnNpZ24vby9vY2lyY3VtZmxleC9vZS9vbmUvcC9wYXJlbmxlZnQvcGFyZW5yaWdodC9w ZXJpb2QvcS9xdW90ZXJpZ2h0L3F1b3Rlc2luZ2xlL3Ivcy9zZW1pY29sb24vc2V2ZW4vc2l4L3Ns YXNoL3NwYWNlL3QvdGhyZWUvdHdvL3UvdWdyYXZlL3YveC95L3ovemVybykvRm9udEZpbGUzIDcy IDAgUj4+CmVuZG9iago3MiAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUKL1N1YnR5cGUvVHlw ZTFDL0xlbmd0aCAxMTE0MT4+c3RyZWFtCnic1XoJmFNVtm5iIBwFCrQNfeKQFKCCKKMgKgoyKKPM xTxVUfM8pJJKJVWZk3Oyck7mpFLzPE8UFAUyFfMkomjbKKBie5211W7dKU/1vW+fFHbb/V7f133f fe++S30fX2Wonb3XWv/6/3/tCAXD7hIIhcJxCxfH5qVnZa7NzZq6KCs9frkiNj1lL//KpPCDwvBD d4UfFnHJXP9PtQO1w2GUCEYNu/jQs4fvGxDfG94+JjxsrIDA6wjeFnwrFAhFQrHwbmGU8N7FWdnq 3JSkZEX0rBkzZjzJ/z8z8v/c6IXxWXEJ0RvUeYqEjLzo5Zl7s3Kzs3JjFQnx06IXpqdHR/4sLzo3 IS8hVxl5MvIHQ7uMTsmLTkhRJCfkRsfitySl4FVyE+KjFbmx8QkZsblp0Vn8K794mPjvfGB0SmY0 Xis6JjOFf7RBgZ/Mi47NjJ+OV8mKfMrerPxMRW5KQt60v9oGjlY0H63ooXD97WuJuxMTd6ck7k7H v+xO2bg7WSAQxAjGCyfcf9dE0SPDHh3+mHjSiMnE43dLpoy754lfj3ySHCUd/UDUgw+NeXis7F75 fdG/mj1t2UvTl89YMWflc/Oef2HV/AUvTn124aLFS16ZOWvNy0/PXf3U0mfWrd+wca1AMEGwRjBR sFbwnOARwTrBo4L1gscEGwSTBBsFk/FnPi7YJJgi2Cx4QrBIsFWwWDBVsE2wRDBNsF3wkmC64GXB DMFSwUzBMsFywVOCFYLZgpWCOYJXBHMFqwXPCO4RjBa8LqgRRAmuCcYIrgrGCt4Q3Cu4T/Arwf04 3xLBOMGvceYLBKRAKnhAMEzwruBBwUMCn+CyIFlACG4L7hZcFKQK7UIQOoSMkBVs4gtlnfBR4e/u ahfdPUww7NDwQvET4tsj3iK23L3w7tZ7skcKRs0b9a+jnVHPRh0dEzv26bFX7mXum32f81ed92dK JoyLGkeP++zXxeST0oel5x7ofHDZQ8RDoYd3PHxRVijXRDdF/3H8jPG947+f8PCEkxM+nKifeOiR pEd6Hl396KePJU+STvJMlk/2Ty55fOXjJ6c8P+XoE54nJz6568n9U3OnvTgtdVrTdM/0mzN6Z6bM 2vvU2tnyOVlPB8MUHENfq1DTMSEcCz9yTATDwtTA2kFKjFjurISbj7zD0WdiLprrlyD+waBnxKB4 V+R3NJ/Dj8XhExL+N45/FDXwKNWDyrtQ6TVQdamEsweCovAW1C/ZxK1SLlKa00GqEtuAouxWm5K0 WxibD8qglf0QbsN+Kgg+YJwOF1tLOpwUawFCKVZpgmUhd72rXI4eD59gPDbWBFITFFlzqURrDlUE xWCjLebB1METZHLs5uwMIDT4E2jabrHlk3YzS7shAJ3sb+F3cJDygxcYFn9CNenwUowViFxxpq6k oqKxt/Ow/Gv0q+GNXRIUi/xef5nNViRdyDHDo8JNhst7lK1K1Kb8+May14X14XTuHnSPCI0cFwCG YZw9aBjpLq9uq+nc/9pvbtQCEfRaNOq8ZZqd8vSnlGtATaj86pYvLlwrC8pYJ7hsrNFLUqzNQdkM utR0HRAmqysY9NbUXZX3oTGhXqghmpQ9eyY/w5G7M2RGT+PF6pMQkpYZajMmrnpOpZVROIZOyq8n WcrpYNmS0p6eUiC8LotBl79csUr+MreRtjitHpBGDdxDdSX1oANdqK4nvjepSxhegSYsRA+IPv1C YkjSKDKBSBVbgL6TEhNLe+AwvMoehqNwkjoOSAoX67o6+4+x53Ag399ycnwDwY5AovIfTgAaDSey OtOqtrTNZlIhEbj1OCEGoO04+ArSbnXY3EA0iWsqjBoTXWzTyt/k7JLjjq8LgBMQc7c8N1eV7vLo ZGofW+9qJND4cIMk6Ag4AkAcP7ZtDTdqzo55dnkxaBw6logKzzWcRe+cEba+j7bfFKG5Bsll6Cvr 6b30evUPcI5AUbPrY2K2a/fEyTasVsyF5whu+G/2npUVnZUodHVVB8oudJyXH7rZ3LkPiEZ/QV5i xtPp6+RxL6QpcclEhb+iesJf9AgvD0zhlqDFIpT/kcSSpVXsBqJAbKYpq9ymsFv4YpIGcL1+jqup jSr9uZpwvbpovl414kQwuALH65GI9B/y1vkrQg1oOXKV1pbVV1d0AFEpduGSwX9SQzo8NGvE5ZtB LYONEM8WgZGPnJVWRICBI1cnboJSTXG8MZN7gIs3aYxqA2OteBmVkJYaqGsCokHs5ldzM3gDboox 49VSqKkwDXLYYjDzq5ltkdXwvolacRtUa72K77hLpLMIFFQRETUwX3s0/KmqrU94E01B59tEAxK0 VeLAe7Qw+W7S5sBIsi7kpj6ufBmIHU/3oQdvVKOx76C75GduHW+7DOgu6BxvfJzfrwtqaNJDYzy4 +1EyybhplnIonXgNiqYttmKjqRj0oAwV+5Lqtvu2AzcCZu5esWT6pO3TgXua4OTfTUdPn7pS7quQ lXtDrBcIv8tkMdNWu1VOWxmatVdbSbeddTAunC4L19+F9inDI08I0b8iAucrXCHR0TYbbc54lHwm c9va/Ayaoq0YJEbSyYPEWVZz9OCrQW7VYDOpWp+bnw6EQmwF2ma3WVV3YhSARvYz+ABaqABOLcs6 WDfOk5N24kaRhVNrKis/cRltIW/6bjQf7/7kSts1eIe4teHsE4YioI2yk+geB8uwwEgZmsGntttp 2UpumcTP+MCDgdCePZsby42Z/WyxPGqgAxfcpz0p+4UDD6Jo0Y9ouESzMq04BwiV2Myj0Wbh2xdD efBOmtk/QhNcoBrhGqAHrUj62wudaOw3gLbAheIzr1ya+z73cIibABmwk461E5l0ml0HOpx/2mLJ I2l8Nj8Qh8Sl0KA3xBPosYMSxl/JlEEI2u0Hizr0FdqO1APx9atgBU7LWm7Y8s1LY57PmQGEOt1f 4WdDzgp5VFjJh9zTi74/lKg6rxK2/h4lo1misCT8gARH3U45i8uzKuNgOcTpduya9ZR2Aiwnpl3J 6t3fV93cKPNaOAHHFO7NNWIOyOUDz1eF+s4RA9DBvg/vYUwFcaR4TLmrSGYIU1liDRhLS7qQOvwT 6a2y+Ey4tE20hSK4E4MPS3KKypp/exrde+ENeX1TwIO7b7MnN33rPM423Y7DPNfejU53oWCPUDOw UxSePBAlQVKxB9x2lwWJuFGk28LaXUyJh3QyDsbuTEMPk7YymtVCDjxBcTEwHjJYHZh+GUwnEJ3i OujQFsZwTw5mkYY0ZX4iENn4VHZ8KkpJ0pE26gSvo8JRCc2Ow/Au/MH+O/jIfs0egCC4GFfpcfQo yfpwoTDFPtLG8HW4M2bx7BeA4DaKv0Snh/eKX4NupecVh9lBOaHSTrqAdTjcvjdD51vecLA0JpAC HqM0bbPsWZRgTAbiBXFU+IFqJWpW9qORk79ZdUnYGh4vQg+Pc+OPZFxt35LB7kCzv67m+Mn3WqEE PGav1WcJ0CVAVDS2dLZl1WQuWsON2Zgr17vrXqs8ChXSyuLq+NnrF2ZqZJQZKJb2myN4crpDNV3t ZRilHqOhIH1y4Qb5du5pDDhbhHTuxzLgCFYCPX6VkBpIE4Un4sC3ABJS5fYuHMOKoorCc8/4tE6z k3Yx5V7S6WBwHuhAIRppbyB8lMdYnG2ANbJMWExxT8DLEIdTYoooBwwMvAKuGtwga8CnM+VwMwdp UhevUmXzhG7h2d9myyX5hu3CtdXAfgs/YFDzteV0OFyeel5fOM1AZIhTQR2svHgVKcjvLeds1RmG RVK+m3mgCsfbzr/7HHLi9m7H0VaypNVhddDmguWJyS/bp9BkFHrX0I3+1CO89n3R96IvDRIkOHf5 vR5rXVqPvLAquRe6iKNl7qqQV1PEyJxplYZqXJ5lVS2Hd5bu5e7asOLlhJLC5m3yhl01anuafWeh MhP3SH3AGtI1aypwL8grUKcnd+a+hQu5QHsE7e1B/9onvI0mi8KF70kotUlntOrMWbYEIFZPu4Q7 eBJ6AK1Cv0bj2h+dY5ObGMola7BHysYlPYN2OlwUY3NItU4rY8NVI9Xlm40msIKZNXqUZRs65uDa K+I2c6s5mnsUo2Ms2vzZh23BJnmJm3U6SzrRNNLdUOWtA6LsDvOwlaTDR7FmKII86il4EpIjaYrI LwwDXLleHiy1UGYy7SWi0G8M17Yq0b/1CdvQpyJ0K9wtYT22gBnvwUJZKaNlU24OnWO3YWGUygnI Z3AucR+1WnL4jFsxib0rnsFVmFRUPqik2nJl53cfvl9eInOwdoZi9UEsqigsqizmNbEFQBSZfP6g r95VJr+Fsod/i0HvZBm3pyHCTbijPyaOGriA6/TAflTbI9T+NFs0cCl8Q1LSUxFsHGJqzAAuV11E jJqwromlVsAC2IJZm98W7tA5PG/g+OJwVEJVsTHrZS6DpIw2yoQD2SLG5cqyvtfRXjK4r6KkFYga fk3M/m68pouPmhG2Ui/BbIjB60fWtFjzsG7idQbRIS6HSo0hHRd3Dlm4pUCRhuthqLgj77KxlBsL 5k72E/gaejBjufH5cEaGGMvCIyEdCv3lJ6+iVJLxejAJEahZjCW2jTK8wq0j85ep1Bl/BozVGlEK GFYl0INZ8FNox3LZF1ErzhqSwWoFnypZnA/m1mA3puAKw2srrm/AFHzRoGpRCbvCKYOxaLQo/Hh4 jgQXFW6XaU+QRbG6nMLM3LgZnLAQy1yjJ1BRfqj+gnz/16HjWOXWF9SkPr755WwlVrQO3Ar9Bqxo cYyctU2tdSG+uZgNxcW7s5fL4yYX7IY9dGFTWgP8Hj5CD3WdDlhIfWbCBCyvlWXFDZ+fersxJGNc OFmMPiKvgbKpFYqMYhxZ3ON94PV3Nbz3Jg4G67W5jLzokwyJPlWYFoUF4YuSsnON/gYgWsVDus5V ieNGOQ24uPdQs2EmbMJMYIyk3pobkQy4uA/jNJUXFm/j7h3cQxZttqnWDglqO/8uxZ/57Qj7MaBh 8CrOkx8cPHKwBXHb+TwlipOhsKrkCN7QCcNvUdPN524Le/p+g0RoNcaIxyD5HK6/fvTG+a+CvXCF OKjpTdhekFhU7CtwWWUBg0dDJcMSY2zcWo0it3APzmd22xU0sqn71EdyX8jg5lWXzspFwWLIz1Hl F2lyYyGO2NyY09gWLG1o0JaanTKjKz9gL3GUlwQPAHFU3A37/DU1bjOZkxGzIWulJskYD0kQ78so LapSVxZ18KGbwu3oHWjvEXIj0TBu2ECUCI1pliRy0pyYHVgGG1z+EncIyuTV6sa0OGVKanLTztvv 9/ce6JQdOdN+q+0HdH94Pln9en0J5ut6jMw7VebwDKEijnoWJsLOv6CCr00nj4p28X5gMg2peAvZ hivLb6IrB5N5OVKKRorCsvASiZnvJCZNJllcpqrchXE4EWuuIu6+vb0JjZ9f+fF8j9xnTZlsVUOx VBPQtHx26sMqv4z18GWjw2XD0GC1mAxpOzW4XG1Ob2knGuYsl3vbjyCy9CDjoVyYNrgPuA8kcLT8 +rGPG16tr8b9sKpOkZ+sT9FlywvipnG/xjykMXlrsGpKNVxa9TbqfQdUQqYvHHUEK9V+iW9PpaoH PoG+z4M1jNPutDE6N2llKLBT1qK9MUU4ZQafrTwBzSJ7T/efq4ZKALVuu92GRSodtJFYGGHbWdoZ PAZ1RI2uIiuhIF+jkanVqZvy4wiLWPsvlp78aiy0noQYboxNZ8dYYO0hzNw05lln9YH69hCWlT7K qergZGT8hpcWqqAQTIHgUYeTZzrtkG63U4bc4o2gJLIqdfWnzn5+9YDMaR/OH6oXXb+G0rqEZegu lM574cUDz0ksEVFnVkY6mJPPVTBgMZopk1Unf4WbtoqbvZabY9FYskFFbDugOILuv9x77pTs488r v4ZTxMGswzuf2rJ82W6ZwYWeRn9y+mifAaRczuCgBFo6PuroP/LO0aMYnqFAQeZLiqUrX5Snxcfl KSCHMfugEpuZyVRPhnLg4R6hfmCcKHx3+LKk/HRVoJMnIA/uu4zbVR2pMAuO707qEZgBe1g9Lyqw 6zJjQFsjoqJb3AwBddFu7pHBeLJgdb4+BQjtXztk3incZG8AWg3oPqoGd8wSKoB/fLgju8DlZv2B 7i400lXuwGbAyhBqL44mZTNJraaXXkzNKCg0WtRUAZVkXwzEfHEh6DyeGlzQ67hjN+YhcbjxhhDN /uCbL0WHUZPEGbE87rrqg1VYOLJGVuvb3sCVuxKcyXRekUpfmLBpd7Zap6MNmKGKPUYfYfQbvbjZ 5uXkJmXW5B2+cu5SY4P89m0kRAtOftv9ZtdnWJW8WtyyI7EwJz+nIhWyZZBpVVBa/bYN3EidUucg 2W5AI01IbPlM2bAXK+AUbgylo00OK2vHHP6B4XV09ZSwHo0RoZavJBS2OpStuCg+H5NJqrWt9Xdl XXUX5BUHg3UVUA5+ravQXRAyV2GQ1De2VhR0r+UencDFcaMWnE7uu/3aa9UhuZM3iwwR9dN2qker HIjqSuoR5qDZ3OyfjogGFv1RoovTZm3FbgQzKvZrFrog0la9uJP2sDfhe8xUwSGmcjv/bMXTsW0o rAwexJ0mnix5taqe38BQp3E7q+90mmJ4BvtlDVgsZgP3Hm7gJr2BoUtWh2NIupx2q4GbhIWngffS FG0eGlnxTb9HXFlhyC8yZ1sK5dzd3IcJnCB3aQw/3OItQET78DvkxWcLexouQOvPjvIXw4I0cS7o 9/Wh+3Gnf5d0+l0sU3Rt0EEyRR6TD58nwHqD4SfCb5HegJ+m9LhACjP6TMq3LqM1F0v6hMe/Ropv RH9AwyQJhph42E1ofQU1LWWhWo/MU1/qD2J3V51bWdCS2VT0Jmb+sV1vnOspqkvMyS9UFDK6kEru NmIW1BFF2iKlWtm4P1GmrFVXLadoD4l2ojUH6k4cgm5paXFImarKUltklgKzVoep0OjJqkir3huI AWLuri3b4utUHVU11TW03NFQ5DO7zC58bC/h8Xp8FbXZmjJZU2aT/oTXaSHx/g0XVl9D73elqVBV F27ZY9AoNEIUFuPeUTQk2nGfpxw2HOFmcQN4VRblBi6OVFdnBLJgKcRszUx/bmYyJ4RVxN7mmGPv Xvz03SOyoKVgY+EmyJGqS3T131y84fPIWNxTaUYX0YNgs1ksCXv4QSGUuptCF9GkcGJJpzNA+Ytw J0/hfpBAfPJLWfGJm/asUmHVaAjU/fYDlNXfUZaZyOvuv5RkIlp8vT28HT0lQo5wqYT1eRiXEZUN UqRX67PyCfb43OXo5bCDrL1cu7+epzYskx0OjxPLZK89oiRU1GZYAulYSZgjsovK40sFyxOiUdwB zt2J3MhnuSrSpjPbrH6uMLyeNFUYvCp+XrKXLcbdireYVt5iMthiEvt5I5qVNYcTcl+QaZNyYjH9 Ft7pVtRQFfLdqp19Ay5FBqA+rD6YiPrAig5z2V5xAjjOH0azcX09YLiC7u9GM45hcI9C8h9F6CoS RQBOU4rcpOxtQKSoWjqbnA1On3wfe9J/qvVse/sBOE3sU7RuXLs2K3abbNaLaeNhIbHkaNzVr9+5 3FUhY5zA2liCm49GS0pfO/jJPiBqnWpNqiZFo5VnZu0qLnTg3u3SHgt/dUz4NRoTHo8eFIUJrQQp 0XS0A3uajdyIr7hnOD0XzW3hkp6qf+7KavmpLW/rTgFRfEzy1NbzP6LR59GEdz+Xtxw40XkOiLcP bZ4qt3MF3L2ckpNiuYIucscOhb/rQ+wBIZeM/eiR8HgsUvkgWbJ5urJhEf+BeB73eSy3bO/cbSAt ArPH7qfaCuuw7E5X52YltGefR2M+RY+jiUflXX/sQQtqbhF/GFKKHhd2lO4IqCeIG35sRBOvQC14 ChiDO61U2Yuruaa+viu9e86qJbuy8+TzZjliMhbgQ4ux+9B0oZs98b0pHcJwBRov+hyJJfq4wsTd /DARG+6f2x0v9kPQhYX5ZziNP7e7iIiknZE0JoO107vvMHqBrLIesGDWQ3tvY3YeflXTurtbvqNn pxeX0E7gXqYMQzNaqyUyo7Xio78qbgE62ZRGoGlvS4LYKWDt3fhpLkfMWDsxWpnqCqixlEnhjnWH P/g4r1P4IhKHvp6G29ZdaGQ0EonQFO6Y5CYcDh2sea295BB0Qmth9+qORQe21KsCRpemBFdgaUlF tY91VDK1LCJKT6PR8CoBtfYKa9Dl8js92Jq7LC6r1xQ0B6EOyssdDfbqovo0SId0lVJjKE1vW4rh Kl/EEYsX1eeez5DTI2IUSZmgAIWvsCU/rXijMi41JcuqgVRi2ZfrkERWGVZL4AxVc/Ddys6SYA0Q TZAfNz+OE21RGks65L7BjZJ5a9ve6u9oPlAvr9BdSglYzqSW6SCW2LJWGSuLClNpvQEl+uM7vNAJ D8edCv1hYLTEW8H6wUO4bC6TjFuGKclO0VZ+hGjlGz7RJK4MmvTFpjyLVs7FD56mzE6rD6Q3sPFy s4zzDIomfbUVHXXtTd2X3u0CotqnzdpUuEizQa7ZoFmdD1qgyuxVdLm+KhsyQZPjyLXvaVF2wFtw 9sSRW12Xmj6Ea8QR7dmFi5e/sHiXzOgZHjUQg+tofxeqv1NH1WiC6PUPJKYcTb6Gpxnzz37cjv24 G6uIbsyat+EQ5qShgQhb/zMn7RFrQV1aeQaLO7Ic2lw1m/y5H3FbQ3mhPJfJj3VoJW4kZ6EMNxLP n29SsI0x8z4yDbLKcnoLm5ahCRa/oULTmhAgmBFIFvrDDfiSQNHcJM8TCY9QMEFmGHKxkfqjIt2+ AzxqA66/J8/wVwBQAcT1xpV7Fm9bv1slX5W5w8UP6dFRw6VYZVjwNqjQaBQlRPORVIRCiJDQjA2D 2WLcvgl3cAPl8fjZUEm3/CSaWnU22AI10qrisvToedzdFquMxm9mKZ+RvzsBpzNYduh4GRA+p8Ws s6iNOfLs52O5qMKdoJZqfdoWdP/FL70uGeviJwyYUTLDrZKUrIz0hHpFT3dbZ2uron47xkZjpH1t V51WCdHYNhaJv0LCphZRuGNgqgTbccbiKHaQZgdGHWVTWnQW3teAldUEdnRs5D3K+omLOeHpTReX yvu2H42HNcS2pO2rVi27imQVMkdklJ4fkeSRcXwmP1ixu+gSK+mm+AsoT2lJqdvrcpc4fPqm1MOJ lzH47/nsGroPEUtP7zws3/nqzja4SnQ1njj9TYAj9lIyi4PyyGrskcsIpzQKtXGFPeH970QCKxFy O39EpehR0WNcoQTNgM+Qou7aWbSQbLgewLknapRlqknPzCkoltGUAzsmv57k5/MsGwzu767GsfSY TSbQWzXyldzeGG5JLHfXVpAaTaGquoLmxHRlZppDntme9LoMffXTSMk2yE52JBMZHZn79nV2dDfn N2+XRbR8+LN9IZXwjYGVou89EntklBSAfvYtQONhPxXC6o8vQF7Luey8K4sXbwVdTeVlNC3sIc/D VXNlZkhZsT6Y6tKxNrejgiXd2HiDm9rvR48z5Q6nFVc8dkZY2OUX77FOxnlIEkfDGqfKr3dbsTO3 4vZLW2jLK9wEnYK2gY21V+lJfFAs5Fpaz59tqG2o3c/8CNyUQROpWFiQvYkfAg/RCq7WEsOVXcqB 6C5hEEVxUeh9EZo5ZJL4SXKkX9g8fOk3A5tbnMDNHNxGGrLU26GQKKzJrf7h+oceJ193LH1nsgUU VVycnJQHBWAv9TehHeGzpCtIuSOjjC8cyoEJPUIkGLifewm9JELDBiQS3od5eR9WB948W/rCwTMk lefQVkAZBH1ub/iZcCl5+PSFSx38BCsymvKy5VgY2F3YSkAOtR62QMrQxRTfQApI2shi5BPleM+6 uJ2rORv3NqnT6Blnw8XwMNLVUhVs4qey7r+obBqrZx3284tgKnZbxUOzQRPmPh8/CWxVoq9vLb0q bBnYNTgCDROhseMwDzgYd/vvyFBXaVNJ5ZmP3rhRjj0fa9RrlKtzX5av4Z6jjE4bbqkfYvLFdtbV +jsy2Fla7wlc/vKNDzCUg26TXm3MSn9WnjhFvcFR4NAEVe38VdUbiGA9rIeXI0V+ksZooqxWU+yq PCzFbG67F0IVfVVn6q81Xod2orKgO/bxlzjpczG4xwZbe76CFmldRn3qk/O58S/HyQweb/VJNJx/ srh0z7zFs/O0ETSwVMBAOm1Y8zi9wVePlQDhZ8xmuUObs1z5ygpuHUmZnFack6iBT4cyFlagsSJ0 71+yVS8uAUZNJW8cPEfSuZ6iEtx1A/6SyvZDiEHfBMo9Ab/DrtMOjifpHFcRb7FKy0qr9/WjcWht 0+GGXjQFgT9UWl3qLuczFYG428XfENoYYySty2Ej5A3lwjbECxYn7eJHni3gyDHnmLPSnt32dF7c C9x92nxdoYlhqrvC95FsVyhYCkSA1zy/HP3q8JKr4SXIwak2Dsl4rKlsEaPkF5e6tYpM7XZFspxb x3WY9QaWKZEeDROuA2UlrSANiod45I5xw4YEEqhXYD4Wu5HVhqDUz+X/ZBCipd+IUCvP6t/vRWMS LlG4+xVbdTaKdpj8M5jNuMS4fm4GV87N56bqDXabx+DRO2mvG5nQ8+hFZAR0Ei/GcpPRIeGXt0U+ brKkGj25H43rK3h3Qbo6JS2nQe2yyCvUPj1kw/bVSVkmE222snpW52LcPAN9wGV3oO3K8NiI/13y hahnuqTOEFJh0OYlKhL1Zqve4DSVnkLD6y41Kyq3h2RHL/0m0H+ypFI6ZHJ1fvI/bJhX9Cb3GOX4 AGG69/e9wh/Pf3VWhDIHFkqWQtxuegezsSsBO70rBw4d6U/at1Ruj5U0V+QoswpyM7JU9Q21lQ2t mKlmocS3hBfQZ6ILKEPC333J0G/FLifjkZ8agSvEKuPe4S+8zfJf2AEUq/p/7QjQclQiYVnArDsf jSRNwaKgGpIge+uhDDTy+Qh3MyyfTAN6RNiEueobg+RwU2tPm6o3ZkdeQurulswD8v9CR3MTuSQO TIpOBk2/TB6rVl5IAg1oDJoiTvQISeF/DI23/z6rHNioEm4It4rCKwcWSXACwGoezP3TY6TNare4 bG0K0m11MS5PWDEwiXR5aLeV/a90atjdLpDQXjNjtXAPctNI/psoDO02kjhRmF1/vEBeeQWLAcwl Uq+TZQCzpRQrae2r4YtHhK/+HgV+L0I7sLdbj0ZgiZH7h/i3OAG3nRvGVXDbovfNRCPk1KuSBF3r Afz6iHDUV/JuyqeEncQUTjw4YSovyrEw+EQlbA8vEYVHN0juiM8YcSpYy32trtJ9aJQzdARNJqsu nkYzWS/rcfjBBR6bV497S7GlwMjZuRGkDQeKtfrUeN+M3em4WEFWuoIsxrjfbTYbrRrVGvmT3KGc 59LoZP6+OjIktFhy+b6GS88L6F62ExoAjcGqxAMOcLhxVijjd9M+W6QMn7ktRN+jX4tQ7bhuqLJ7 TV6zk8L6n/+2kNfT1PtFTZfTw3eDIh/uBlhjGHMSYtPXYQEyOSB+7ySqRs/Y0Xzi4w2XH+dGLxi/ USmjzLzQqsbUQjOs21/RcvT0WSAu1GzZLae5KZyCW85FTzGYLQYwE3qXze/xOxwhWQjKHTW8OqC0 3eH9N4ToPJIsQ3eL0OywVeK2Od2sM1R9ZP9pIM5WxWav3LrhcYu8yG4ygB5MLnOl9bymbivsIDjx ouef3ZvT1YD1SI310BbsKXRpis39a5EATUYPfIeiz6acWlUlv9725lW4ThxPOTOBu2vFs/G5MovR YWXsf6XchW2o/++Jdmco+M+LdlOhOfvfE+2EM3zgP1Cx1Ur0/M1wtErIhqtE6NI4PzhZdzlfWNex vnE7WW/VWZJxgdsExDwxBuGfXGVUpRakKlAWKJSDzwxKSIOxqBh0hN5rrpQhtTiGe8RcwPLfynoR MRIDUK6AH8WiDWRpKGC1FC7mtpF8qo6h/T9iIR71TR82E5f5K7VV4SZJJbgdLt8ZNIzkiUTnNbms YLMWKvSFabhukrHJs9op01SumaSMDpvb4qT89nrogYP6Gm1TQXkmbCXmL58zNyHfU1os05ZrfGog 1LrC/F2vFZ1C279Bk791yeEN5cUXundXx7j2Orq+i2ymB71zBDlVwoPobtySJSKkwOCN/gHdiybe XnPqhZ1Jem2O3OI+8un1m2jkKanP6fKCnwiafSazkbYVy7jlq7l4bj1waQQ3/MKLaJSsZ9jWor6z J3y/6b4o95fVl3XDfqhJdCSy0/Zy0+fxJLsjKjwyTKqEFehj0Tvh+yW8/aHBzs8s7Do9SWPoAg00 Y2esvdwYcgk3mrLS+Akp8N+moAO8HXHYGWB4vOH+y3/RgmUij2n8Q9Sjh/7T18SxcivD+78Tfh1e L0LegXskWaBnmTKHF7B8MLJYaOlncktJCjuvEpPL5nG43B2HqmouYKu2U6zLn8VN3Ll03dy18wqy igq0maAkFKGcru7KhkOVsrpzb6CJ19CDJ745/bnb5/S4/fyA1cwa+Xao7Qq/v0+47zsFEn2KRqi+ FqEUnKGHP/zo+9f3HN/aJz9che69CL8nrq07NYF7YeVj85af3rw/ThaTw43eAuOJXc3T0WMyf5dk a+qBs7d7j/XXyk9ubU2BpUSW/oU5su/D70uu1G6OW7B7x6Ys+dYTe/fBUeJc6+HXZZEDI/ZwRotR iVCP8D30K7SAvxK4MSCVcLNmchM58SsdM9DdoRKGDcoDrN/pdbot5M5Fy+dx0mV6K2XC+s7oMvKj bg/jYdCmk0iBdgFSE99vvMrdI1sxKJDEFvUfeKsLPXXjiGd17JaiRYod8oJ4lS4ehgKOttxCxC20 SiU8FC4QoYuoTDJP3I2I4TfFK7ltktXcahpbPCdIz/M6GIuc8+gV8kOxH38g68H4dQYsPHvMjPzN O/h5l4v1Vp4iWS/F43qu+BRawHgotwWkW8V4JRtl3MgtIOeLT6PFTGTgJ90kxjikafMGbjE5B/OE 1UpbCtdjELqsASBuiRM5Yvg8fpJnt2jUm7Bzj8j/G+I13EoeqC6QnsV7czidgXNoOfl/9VuOaHH4 q3+6E/IKS4bmIJmwBE3cgSaK3jdI+ppbu1oKDmzclZeYHteWuU/+RXi5BD/IiG3N7MEvdjfjF3mh ig4gufD27YVovMiOxXYDmoTFdk/e+0v+AbGNng+/hRdNSI9rwYs24U9U9W7Gku5Hw/k1ryNJJ3rs /Lajwtb3wpO+FYXHoRxJ8HjPD8eAKA1oVJnazMICeWbKHr0CS5ap3DAJZg87TWUnp2mwNEouaGtt cTexXvkh9mSgv/V0e/O+IWkUs2WFYt0mmebNdYEEiIEdmrjYmA2Zc+AFgiMu7zl59HhdZ7MslNKd +yp8Dq9drui6o5kGJ2+VFNjVVVAHB2pf636tpb/zWDd23v78wq27ZmVukmdsUqTGwd/cWqPs/18v rlFSeOw/Ir+jBxbyEy/0sAhNC6+SHPyXy99CFVFbFMjJUljzTDJjlpobp9+K37k48s4N10VIGF4m qUMP4v3ty728JrNQmZpfp3FZ5eUarxEUELcuPZfnDprROfRDtutvvmuC8v87ft2Ee+jyPxLRfk6J re65b0Tn3pDAI/u5MftWsRaWLnEFMSTtXsMn9AlceqgfzUDlaD6aGvA7nGa/OWBjTBbOxD3PvcgZ gTv53+P7EYgK9/3z2iwiDvqwOEAL/0WC34lp2cFfszmCARKTMxshZQftikVjyGtoNOvieVqKn2Np Rh8gMclj6qf5LyvQ3HTuUezG6MhjnskJ1MQ99J++aFT41p0LKPOB9ANC7qWftovQGPSDZAX3RQr3 0u45KUM3TrTf2lj0841TZnv6yTN9LYc65Qw9PKk98TUkHbp+kv1710/1Pzb9b66f7COo5rSO2bAK luzKy35+ljWmYDmmur+9DkMJfZKqr/Bib0ATBAqCqmB+g7HBEbvKsEO9mjDulszjPt/DLYuduxmk OZG9m9ryW2MNHccbLledr3urD8WFbuGT9+GTIyuW/+jf+upUyM7fwP1+0kCxCEXhADzHfbGHWxk/ bzdI1UaPX25vVDel4PNr8lOT2nPOo1FfY+4RdMsPovt60MLaWwQSi0MVeq2RLr4zqyc0Ednv19Yh 8q9n9X/fYFScKGnHBqPMVK5RFpstClm+OdWGieFZHL52NPE6lIG3gM1i85qUrVielta7OgkcwGkv LdmVkyd7erp1s2IBMSsSMtrw58t+fNjWyGGv7OIPe+ey8QJ3nZ/w8dl+lvtiLzc/dto2kBYP3S/W FHbh02aqFamJ/P3i6C/QbCTcJ+9D9/WihVX4tE+I53FKfUbhNtBINTU5tX9490OP638eCydFxsLA j4U3hstIV9BWWuzNqHq6dD3MhuW78nKenm7bnDe0Z4qym215P+8ZpfdJ6r7rRJM/gWpotFbqSg2s UpexgnuRjBo4h4/T3IsW/Dl7+jvlm/mPle+pwy2H2uRO2oHL9xJIkRRwBR9FE38uYDRCXP73kvmr /0AyC36ZzLniuh+70cQ3MRZcBQ6DM6Ui6zjGQl19276E7qcW/QILc2F5BAvzZtn+Dhb23sHCNYwF P8ZCSX6DoZHZs8q2I+9nLMRyy/bMXQ9S5Z+xsEvX2c9jofatw0NY+MmW1lvck9SF3ngHxfKXGz8N QyNEA99jt+AuDVRBiPDaPBZs42mTbHcRdy/9f3gnkb9Q9cs7CWroBvCfu0ZB9/hCaS5MxRYtf51J Dt1nEv/EfSZdRlfZy3VVuOlnanNy9zQrO946e+LWEfn/4jITTUbfDI9SVYV/7a+qQjFVVVVirp8N H/KMwM9Nc7IVpUG0p7y+lOA6fHf33IOkI2X3DHOOurvHNWoUkpaOGu0YFSUQ/A+2G+oQCmVuZHN0 cmVhbQplbmRvYmoKMTMgMCBvYmoKPDwvVHlwZS9Gb250RGVzY3JpcHRvci9Gb250TmFtZS9HR1lF T0krQUNhc2xvblByby1Cb2xkSXRhbGljL0ZvbnRCQm94Wy0xNDEgLTMwMCA3NDUgNzAwXS9GbGFn cyA0Ci9Bc2NlbnQgNzAwCi9DYXBIZWlnaHQgNzAwCi9EZXNjZW50IC0zMDAKL0l0YWxpY0FuZ2xl IDAKL1N0ZW1WIDExMQovTWlzc2luZ1dpZHRoIDUwMAovQ2hhclNldCgvQS9QL2EvYWdyYXZlL2Nv bW1hL2QvZS9lYWN1dGUvZWdyYXZlL2cvaC9pL2wvbS9uL28vcC9xL3F1b3RlcmlnaHQvci9zL3Nw YWNlL3QvdS92L3kpL0ZvbnRGaWxlMyA3MyAwIFI+PgplbmRvYmoKNzMgMCBvYmoKPDwvRmlsdGVy L0ZsYXRlRGVjb2RlCi9TdWJ0eXBlL1R5cGUxQy9MZW5ndGggMzc5MT4+c3RyZWFtCniczVd7eFNl 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 MP6v/nWaQFX/XwMFKuVu/TsARysmlxkFKP+CEAm4VZJOdCdedbfu9FqN2VBe22kJeeQtlqgTa3DB OrXO7WS82JT9DT8yypjmfhZPp9GGdDot4o+w3P7ILHxvUZBtTSXRjpauFMkPxW4Zm41ysmWzZwbn 3DIWmjMH5aTmzPXPERPEXwCzkN8UCmVuZHN0cmVhbQplbmRvYmoKODMgMCBvYmoKPDwvVHlwZS9N ZXRhZGF0YQovU3VidHlwZS9YTUwvTGVuZ3RoIDE1NzQ+PnN0cmVhbQo8P3hwYWNrZXQgYmVnaW49 J++7vycgaWQ9J1c1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCc/Pgo8P2Fkb2JlLXhhcC1maWx0ZXJz IGVzYz0iQ1JMRiI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9J2Fkb2JlOm5zOm1ldGEvJyB4OnhtcHRr PSdYTVAgdG9vbGtpdCAyLjkuMS0xMywgZnJhbWV3b3JrIDEuNic+CjxyZGY6UkRGIHhtbG5zOnJk Zj0naHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIycgeG1sbnM6aVg9 J2h0dHA6Ly9ucy5hZG9iZS5jb20vaVgvMS4wLyc+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0 PSd1dWlkOjYwZTZlMTUzLWZkYzctMTFlMi0wMDAwLTlmZmI3YTFlOTkwMicgeG1sbnM6cGRmPSdo dHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvJz48cGRmOlByb2R1Y2VyPkdQTCBHaG9zdHNjcmlw dCA5LjA1PC9wZGY6UHJvZHVjZXI+CjxwZGY6S2V5d29yZHM+KCk8L3BkZjpLZXl3b3Jkcz4KPC9y ZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSd1dWlkOjYwZTZlMTUz LWZkYzctMTFlMi0wMDAwLTlmZmI3YTFlOTkwMicgeG1sbnM6eG1wPSdodHRwOi8vbnMuYWRvYmUu Y29tL3hhcC8xLjAvJz48eG1wOk1vZGlmeURhdGU+MjAxMy0wOC0wMlQxNDowNToyMSswMjowMDwv eG1wOk1vZGlmeURhdGU+Cjx4bXA6Q3JlYXRlRGF0ZT4yMDEzLTA4LTAyVDE0OjA1OjIxKzAyOjAw PC94bXA6Q3JlYXRlRGF0ZT4KPHhtcDpDcmVhdG9yVG9vbD5QREZDcmVhdG9yIFZlcnNpb24gMS42 LjI8L3htcDpDcmVhdG9yVG9vbD48L3JkZjpEZXNjcmlwdGlvbj4KPHJkZjpEZXNjcmlwdGlvbiBy ZGY6YWJvdXQ9J3V1aWQ6NjBlNmUxNTMtZmRjNy0xMWUyLTAwMDAtOWZmYjdhMWU5OTAyJyB4bWxu czp4YXBNTT0naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLycgeGFwTU06RG9jdW1lbnRJ RD0ndXVpZDo2MGU2ZTE1My1mZGM3LTExZTItMDAwMC05ZmZiN2ExZTk5MDInLz4KPHJkZjpEZXNj cmlwdGlvbiByZGY6YWJvdXQ9J3V1aWQ6NjBlNmUxNTMtZmRjNy0xMWUyLTAwMDAtOWZmYjdhMWU5 OTAyJyB4bWxuczpkYz0naHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8nIGRjOmZvcm1h dD0nYXBwbGljYXRpb24vcGRmJz48ZGM6dGl0bGU+PHJkZjpBbHQ+PHJkZjpsaSB4bWw6bGFuZz0n eC1kZWZhdWx0Jz5Db21tLiBwcmVzc2UgQW5kcsOpIFBoYXJlbDwvcmRmOmxpPjwvcmRmOkFsdD48 L2RjOnRpdGxlPjxkYzpjcmVhdG9yPjxyZGY6U2VxPjxyZGY6bGk+VXRpbGlzYXRldXI8L3JkZjps aT48L3JkZjpTZXE+PC9kYzpjcmVhdG9yPjxkYzpkZXNjcmlwdGlvbj48cmRmOlNlcT48cmRmOmxp PigpPC9yZGY6bGk+PC9yZGY6U2VxPjwvZGM6ZGVzY3JpcHRpb24+PC9yZGY6RGVzY3JpcHRpb24+ CjwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAK PD94cGFja2V0IGVuZD0ndyc/PgplbmRzdHJlYW0KZW5kb2JqCjIgMCBvYmoKPDwvUHJvZHVjZXIo R1BMIEdob3N0c2NyaXB0IDkuMDUpCi9DcmVhdGlvbkRhdGUoRDoyMDEzMDgwMjE0MDUyMSswMicw MCcpCi9Nb2REYXRlKEQ6MjAxMzA4MDIxNDA1MjErMDInMDAnKQovVGl0bGUoXDM3NlwzNzdcMDAw Q1wwMDBvXDAwMG1cMDAwbVwwMDAuXDAwMCBcMDAwcFwwMDByXDAwMGVcMDAwc1wwMDBzXDAwMGVc MDAwIFwwMDBBXDAwMG5cMDAwZFwwMDByXDAwMFwzNTFcMDAwIFwwMDBQXDAwMGhcMDAwYVwwMDBy XDAwMGVcMDAwbCkKL0NyZWF0b3IoXDM3NlwzNzdcMDAwUFwwMDBEXDAwMEZcMDAwQ1wwMDByXDAw MGVcMDAwYVwwMDB0XDAwMG9cMDAwclwwMDAgXDAwMFZcMDAwZVwwMDByXDAwMHNcMDAwaVwwMDBv XDAwMG5cMDAwIFwwMDAxXDAwMC5cMDAwNlwwMDAuXDAwMDIpCi9BdXRob3IoXDM3NlwzNzdcMDAw VVwwMDB0XDAwMGlcMDAwbFwwMDBpXDAwMHNcMDAwYVwwMDB0XDAwMGVcMDAwdVwwMDByKQovS2V5 d29yZHMoKQovU3ViamVjdCgpPj5lbmRvYmoKeHJlZgowIDg0CjAwMDAwMDAwMDAgNjU1MzUgZiAK MDAwMDAxMjE3NCAwMDAwMCBuIAowMDAwMTc5NjQ0IDAwMDAwIG4gCjAwMDAwMTIxMDggMDAwMDAg biAKMDAwMDAxMTQwNiAwMDAwMCBuIAowMDAwMDAwMDE1IDAwMDAwIG4gCjAwMDAwMDY2NDkgMDAw MDAgbiAKMDAwMDAxMjIzOSAwMDAwMCBuIAowMDAwMTI3ODY4IDAwMDAwIG4gCjAwMDAwMTIyNzkg MDAwMDAgbiAKMDAwMDE0MDg1MCAwMDAwMCBuIAowMDAwMTU3NTIzIDAwMDAwIG4gCjAwMDAxNDI4 NzQgMDAwMDAgbiAKMDAwMDE3MzgwNSAwMDAwMCBuIAowMDAwMTQxODg2IDAwMDAwIG4gCjAwMDAx NjE5NjAgMDAwMDAgbiAKMDAwMDAxMjMyMiAwMDAwMCBuIAowMDAwMTEzNzQ5IDAwMDAwIG4gCjAw MDAxMzkxMTQgMDAwMDAgbiAKMDAwMDE1MjEzNyAwMDAwMCBuIAowMDAwMTM2ODEzIDAwMDAwIG4g CjAwMDAxMzg0ODggMDAwMDAgbiAKMDAwMDE0MzQyNiAwMDAwMCBuIAowMDAwMTM2MDk0IDAwMDAw IG4gCjAwMDAxMzUzNDggMDAwMDAgbiAKMDAwMDEzNDc5NyAwMDAwMCBuIAowMDAwMTM0MjM5IDAw MDAwIG4gCjAwMDAxMzI5NDQgMDAwMDAgbiAKMDAwMDEzNzkzMCAwMDAwMCBuIAowMDAwMTM3MTg2 IDAwMDAwIG4gCjAwMDAxMzY2NDUgMDAwMDAgbiAKMDAwMDEzNTkwNSAwMDAwMCBuIAowMDAwMTM0 NjEzIDAwMDAwIG4gCjAwMDAxMzQwNTMgMDAwMDAgbiAKMDAwMDEzMzUwMCAwMDAwMCBuIAowMDAw MTM4MzAxIDAwMDAwIG4gCjAwMDAxMzc1NjAgMDAwMDAgbiAKMDAwMDEzNjQ2NCAwMDAwMCBuIAow MDAwMTM1NzE4IDAwMDAwIG4gCjAwMDAxMzUxNjUgMDAwMDAgbiAKMDAwMDEzNDQyNiAwMDAwMCBu IAowMDAwMTMzNjgzIDAwMDAwIG4gCjAwMDAxMzk5NjUgMDAwMDAgbiAKMDAwMDEzMzMxMyAwMDAw MCBuIAowMDAwMTM3NzQ4IDAwMDAwIG4gCjAwMDAxMzcwMDAgMDAwMDAgbiAKMDAwMDEzNjI3NyAw MDAwMCBuIAowMDAwMTM1NTM0IDAwMDAwIG4gCjAwMDAxMzQ5ODIgMDAwMDAgbiAKMDAwMDEzMzg3 MCAwMDAwMCBuIAowMDAwMTMzMTI5IDAwMDAwIG4gCjAwMDAxMzgxMTggMDAwMDAgbiAKMDAwMDEz NzM3NSAwMDAwMCBuIAowMDAwMTA3MzIwIDAwMDAwIG4gCjAwMDAxMzkzNTIgMDAwMDAgbiAKMDAw MDE1MzAyNiAwMDAwMCBuIAowMDAwMDEyNDgwIDAwMDAwIG4gCjAwMDAwMTIzNjcgMDAwMDAgbiAK MDAwMDAxMjQxNyAwMDAwMCBuIAowMDAwMTMyNTk0IDAwMDAwIG4gCjAwMDAwMTE3NTYgMDAwMDAg biAKMDAwMDAwNjY2OSAwMDAwMCBuIAowMDAwMDExMzg1IDAwMDAwIG4gCjAwMDAxMzI2OTIgMDAw MDAgbiAKMDAwMDEzMjc0MiAwMDAwMCBuIAowMDAwMTMyNzg2IDAwMDAwIG4gCjAwMDAxMzI4NDkg MDAwMDAgbiAKMDAwMDEzMjg3OSAwMDAwMCBuIAowMDAwMTQzODI4IDAwMDAwIG4gCjAwMDAxNTIz NzUgMDAwMDAgbiAKMDAwMDE1MzM5NCAwMDAwMCBuIAowMDAwMTU3OTMyIDAwMDAwIG4gCjAwMDAx NjI1NzggMDAwMDAgbiAKMDAwMDE3NDExNyAwMDAwMCBuIAowMDAwMTM4ODUwIDAwMDAwIG4gCjAw MDAxMzkyNjkgMDAwMDAgbiAKMDAwMDEzOTY3NCAwMDAwMCBuIAowMDAwMTM5OTExIDAwMDAwIG4g CjAwMDAxNDA2NTggMDAwMDAgbiAKMDAwMDE0MTE4NSAwMDAwMCBuIAowMDAwMTQxNDU3IDAwMDAw IG4gCjAwMDAxNDI0MDAgMDAwMDAgbiAKMDAwMDE0MzIzMiAwMDAwMCBuIAowMDAwMTc3OTkzIDAw MDAwIG4gCnRyYWlsZXIKPDwgL1NpemUgODQgL1Jvb3QgMSAwIFIgL0luZm8gMiAwIFIKL0lEIFs8 MTE3OTY0NTE0Q0FFQ0E5NDlBQURGQzdFRTY3NDJBQkU+PDExNzk2NDUxNENBRUNBOTQ5QUFERkM3 RUU2NzQyQUJFPl0KPj4Kc3RhcnR4cmVmCjE4MDE0NwolJUVPRgo= --4D_===================43971564==-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 19:00:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E13C167A for ; Sun, 18 Aug 2013 19:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A708F2646 for ; Sun, 18 Aug 2013 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7IJ00Om091113 for ; Sun, 18 Aug 2013 19:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7IJ00gQ091112; Sun, 18 Aug 2013 19:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 19:00:00 GMT Resent-Message-Id: <201308181900.r7IJ00gQ091112@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Derek Schrock Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 302C461D for ; Sun, 18 Aug 2013 18:51:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D7A32615 for ; Sun, 18 Aug 2013 18:51:45 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7IIpi8n095749 for ; Sun, 18 Aug 2013 18:51:44 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7IIpihV095745; Sun, 18 Aug 2013 18:51:44 GMT (envelope-from nobody) Message-Id: <201308181851.r7IIpihV095745@oldred.freebsd.org> Date: Sun, 18 Aug 2013 18:51:44 GMT From: Derek Schrock To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181384: /var/db/pkg/auditfile has a type for lcms2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 19:00:01 -0000 >Number: 181384 >Category: misc >Synopsis: /var/db/pkg/auditfile has a type for lcms2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 19:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Derek Schrock >Release: FreeBSD 9.1-RELEASE-p5 >Organization: >Environment: >Description: /var/db/pkg/auditfile has a typo for lcms2 $ grep ^lcms2 /var/db/pkg/auditfile lcms2>0|http://portaudit.FreeBSD.org/9a0a892e-05d8-11e3-ba09-000c29784fd1.html|lcms2 -- Null Pointer Dereference Denial of Service Vulnerability Unless I'm reading the bug incorrectly teh CVE was fixed in 2.5: https://bugs.mageia.org/show_bug.cgi?id=10816 graphics/lcms2 is lcms 2.5 >How-To-Repeat: Building from port fails: $ sudo make -C /usr/ports/graphics/lcms2/ ===> lcms2-2.5 has known vulnerabilities: lcms2-2.5 is vulnerable: lcms2 -- Null Pointer Dereference Denial of Service Vulnerability WWW: http://portaudit.FreeBSD.org/9a0a892e-05d8-11e3-ba09-000c29784fd1.html => Please update your ports tree and try again. *** [check-vulnerable] Error code 1 Stop in /usr/ports/graphics/lcms2. *** [build] Error code 1 Stop in /usr/ports/graphics/lcms2. >Fix: Change /var/db/pkg/auditfile lcms2 entry to <2.5: lcms2<2.5|http://portaudit.FreeBSD.org/9a0a892e-05d8-11e3-ba09-000c29784fd1.html|lcms2 -- Null Pointer Dereference Denial of Service Vulnerability >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 23:00:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D2B18DB3 for ; Sun, 18 Aug 2013 23:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 993D321E1 for ; Sun, 18 Aug 2013 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7IN0064037382 for ; Sun, 18 Aug 2013 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7IN00a5037381; Sun, 18 Aug 2013 23:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 23:00:00 GMT Resent-Message-Id: <201308182300.r7IN00a5037381@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joe Holden Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3C45CDAC for ; Sun, 18 Aug 2013 22:59:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29D0221DB for ; Sun, 18 Aug 2013 22:59:37 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7IMxZ4h090271 for ; Sun, 18 Aug 2013 22:59:35 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7IMxZYe090270; Sun, 18 Aug 2013 22:59:35 GMT (envelope-from nobody) Message-Id: <201308182259.r7IMxZYe090270@oldred.freebsd.org> Date: Sun, 18 Aug 2013 22:59:35 GMT From: Joe Holden To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181386: SMP & USB hangs >254024 for mips64/octeon X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 23:00:00 -0000 >Number: 181386 >Category: misc >Synopsis: SMP & USB hangs >254024 for mips64/octeon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 23:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Joe Holden >Release: HEAD >Organization: Pseudo Networks Limited >Environment: FreeBSD 10.0-CURRENT (OCTEON-ERL-RTR) #11 r254024: Sun Aug 18 23:44:11 BST 2013 >Description: Post 254024 the vmem changes cause both SMP and USB to hang during boot - thread here: http://lists.freebsd.org/pipermail/freebsd-mips/2013-August/002975.html In summary: * 254025 with SMP enabled (coremask=0x3) the kernel hangs after ULE setup * 254025 with SMP disabled the kernel hangs after beginning USB setup: usbus0: 480Mbps High Speed USB v2.0 (sometimes followed by another line/device eg lo0: bpf attached) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 18 23:20:03 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3A50F2A6 for ; Sun, 18 Aug 2013 23:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 008DA22EE for ; Sun, 18 Aug 2013 23:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7INK2lG042139 for ; Sun, 18 Aug 2013 23:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7INK2mm042138; Sun, 18 Aug 2013 23:20:02 GMT (envelope-from gnats) Resent-Date: Sun, 18 Aug 2013 23:20:02 GMT Resent-Message-Id: <201308182320.r7INK2mm042138@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Joe Holden Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 36C97172 for ; Sun, 18 Aug 2013 23:12:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0AA6C22CB for ; Sun, 18 Aug 2013 23:12:43 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7INCfMO099803 for ; Sun, 18 Aug 2013 23:12:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7INCf0c099802; Sun, 18 Aug 2013 23:12:41 GMT (envelope-from nobody) Message-Id: <201308182312.r7INCf0c099802@oldred.freebsd.org> Date: Sun, 18 Aug 2013 23:12:41 GMT From: Joe Holden To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181388: Routes not updated on mtu change X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 23:20:03 -0000 >Number: 181388 >Category: misc >Synopsis: Routes not updated on mtu change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 23:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Joe Holden >Release: HEAD >Organization: Pseudo Networks Limited >Environment: >Description: As per post to the list: http://lists.freebsd.org/pipermail/freebsd-net/2013-August/036376.html >How-To-Repeat: * Increase mtu on an interface * Try and send packets bigger than existing mtu * Receive message too large error * See that route get returns old mtu until the interface is set down and up >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 00:30:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A2EDC9CE for ; Mon, 19 Aug 2013 00:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83C57256F for ; Mon, 19 Aug 2013 00:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J0U0eE062589 for ; Mon, 19 Aug 2013 00:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J0U0Ma062588; Mon, 19 Aug 2013 00:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 19 Aug 2013 00:30:00 GMT Resent-Message-Id: <201308190030.r7J0U0Ma062588@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, 0PwBHPfXZ Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DDE9A928 for ; Mon, 19 Aug 2013 00:21:46 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B226C2543 for ; Mon, 19 Aug 2013 00:21:46 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7J0Lf3C063878 for ; Mon, 19 Aug 2013 00:21:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7J0LfAG063811; Mon, 19 Aug 2013 00:21:41 GMT (envelope-from nobody) Message-Id: <201308190021.r7J0LfAG063811@oldred.freebsd.org> Date: Mon, 19 Aug 2013 00:21:41 GMT From: 0PwBHPfXZ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: gnu/181389: bInqFf63538 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 00:30:00 -0000 >Number: 181389 >Category: gnu >Synopsis: bInqFf63538 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 19 00:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: 0PwBHPfXZ >Release: if5V1Unhv1 >Organization: lGlmGO6VX2 >Environment: Kudos! What a neat way of thnniikg about it. >Description: Kudos! What a neat way of thnniikg about it. >How-To-Repeat: Kudos! What a neat way of thnniikg about it. >Fix: Kudos! What a neat way of thnniikg about it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 00:59:59 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A6273C2A; Mon, 19 Aug 2013 00:59:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77AB02665; Mon, 19 Aug 2013 00:59:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J0xx4O067731; Mon, 19 Aug 2013 00:59:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J0xxNu067730; Mon, 19 Aug 2013 00:59:59 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 00:59:59 GMT Message-Id: <201308190059.r7J0xxNu067730@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181388: [route] Routes not updated on mtu change X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 00:59:59 -0000 Old Synopsis: Routes not updated on mtu change New Synopsis: [route] Routes not updated on mtu change Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 00:59:13 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=181388 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:01:47 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CB989D2E; Mon, 19 Aug 2013 01:01:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E4BB26AB; Mon, 19 Aug 2013 01:01:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J11leo069899; Mon, 19 Aug 2013 01:01:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J11lQn069898; Mon, 19 Aug 2013 01:01:47 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 01:01:47 GMT Message-Id: <201308190101.r7J11lQn069898@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, kib@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181386: SMP & USB hangs >254024 for mips64/octeon X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:01:47 -0000 Synopsis: SMP & USB hangs >254024 for mips64/octeon Responsible-Changed-From-To: freebsd-bugs->kib Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 01:00:09 UTC 2013 Responsible-Changed-Why: over to committer of 254024. http://www.freebsd.org/cgi/query-pr.cgi?pr=181386 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:03:43 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B2219D94; Mon, 19 Aug 2013 01:03:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 871FB26BE; Mon, 19 Aug 2013 01:03:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J13hbA069978; Mon, 19 Aug 2013 01:03:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J13h6n069977; Mon, 19 Aug 2013 01:03:43 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 01:03:43 GMT Message-Id: <201308190103.r7J13h6n069977@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, secteam@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/181384: security/vuxml: /var/db/pkg/auditfile has a typo for lcms2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:03:43 -0000 Old Synopsis: /var/db/pkg/auditfile has a type for lcms2 New Synopsis: security/vuxml: /var/db/pkg/auditfile has a typo for lcms2 Responsible-Changed-From-To: freebsd-bugs->secteam Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 01:01:59 UTC 2013 Responsible-Changed-Why: Make this a ports PR, fix Synopsis, and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=181384 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:09:57 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7B5F0F38; Mon, 19 Aug 2013 01:09:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5227626F0; Mon, 19 Aug 2013 01:09:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J19v0V070632; Mon, 19 Aug 2013 01:09:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J19u2r070631; Mon, 19 Aug 2013 01:09:56 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 01:09:56 GMT Message-Id: <201308190109.r7J19u2r070631@freefall.freebsd.org> To: lfk2023@163.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnats-admin@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: junk/181389: bInqFf63538 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:09:57 -0000 Synopsis: bInqFf63538 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Aug 19 01:09:30 UTC 2013 State-Changed-Why: spam Responsible-Changed-From-To: freebsd-bugs->gnats-admin Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 01:09:30 UTC 2013 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=181389 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:12:29 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1E810FA8; Mon, 19 Aug 2013 01:12:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E71602729; Mon, 19 Aug 2013 01:12:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J1CSs2072596; Mon, 19 Aug 2013 01:12:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J1CSNK072595; Mon, 19 Aug 2013 01:12:28 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 01:12:28 GMT Message-Id: <201308190112.r7J1CSNK072595@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181377: [zfs] zfs recv causes an inconsistant pool X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:12:29 -0000 Old Synopsis: zfs recv causes an inconsistant pool New Synopsis: [zfs] zfs recv causes an inconsistant pool Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 01:12:15 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=181377 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:15:43 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A538812C; Mon, 19 Aug 2013 01:15:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A05C275C; Mon, 19 Aug 2013 01:15:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J1Fhlf073717; Mon, 19 Aug 2013 01:15:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J1Fhx8073716; Mon, 19 Aug 2013 01:15:43 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 01:15:43 GMT Message-Id: <201308190115.r7J1Fhx8073716@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181375: [softupdates] disk free space blackhole magic X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:15:43 -0000 Old Synopsis: disk free space blackhole magic New Synopsis: [softupdates] disk free space blackhole magic Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 01:13:02 UTC 2013 Responsible-Changed-Why: Take a guess as the classification and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=181375 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 01:55:36 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 62A17A7A; Mon, 19 Aug 2013 01:55:36 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (gw.catspoiler.org [75.1.14.242]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4466C2976; Mon, 19 Aug 2013 01:55:35 +0000 (UTC) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id r7J1Rf0r017576; Sun, 18 Aug 2013 18:27:44 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <201308190127.r7J1Rf0r017576@gw.catspoiler.org> Date: Sun, 18 Aug 2013 18:27:41 -0700 (PDT) From: Don Lewis Subject: Re: kern/181375: [softupdates] disk free space blackhole magic To: linimon@FreeBSD.org In-Reply-To: <201308190115.r7J1Fhx8073716@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: freebsd-fs@FreeBSD.org, freebsd-bugs@FreeBSD.org X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 01:55:36 -0000 Sounds a lot like the bug that was fixed in head by this commit: Log Message: This bug fix is in a code path in rename taken when there is a collision between a rename and an open system call for the same target file. Here, rename releases its vnode references, waits for the open to finish, and then restarts by reacquiring its needed vnode locks. In this case, rename was unlocking but failing to release its reference to one of its held vnodes. The effect was that even after all the actual references to the vnode had gone, the vnode still showed active references. For files that had been removed, their space was not reclaimed until the filesystem was forcibly unmounted. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 03:12:40 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C47CE452; Mon, 19 Aug 2013 03:12:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BAA12D3F; Mon, 19 Aug 2013 03:12:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J3CeAO096985; Mon, 19 Aug 2013 03:12:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J3CeDo096984; Mon, 19 Aug 2013 03:12:40 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 03:12:40 GMT Message-Id: <201308190312.r7J3CeDo096984@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/170411: [ath] Uninitialized variables in if_ath.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 03:12:40 -0000 Old Synopsis: Uninitialized variables in if_ath.c New Synopsis: [ath] Uninitialized variables in if_ath.c Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 03:12:26 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=170411 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 04:00:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E12BBA06 for ; Mon, 19 Aug 2013 04:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8F2D2F0C for ; Mon, 19 Aug 2013 04:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J400LD005495 for ; Mon, 19 Aug 2013 04:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J400tl005493; Mon, 19 Aug 2013 04:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 19 Aug 2013 04:00:00 GMT Resent-Message-Id: <201308190400.r7J400tl005493@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Makoto Kishimoto Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 90B529DA for ; Mon, 19 Aug 2013 03:56:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64B2B2EF1 for ; Mon, 19 Aug 2013 03:56:26 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7J3uPeO071422 for ; Mon, 19 Aug 2013 03:56:25 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7J3uPh4071411; Mon, 19 Aug 2013 03:56:25 GMT (envelope-from nobody) Message-Id: <201308190356.r7J3uPh4071411@oldred.freebsd.org> Date: Mon, 19 Aug 2013 03:56:25 GMT From: Makoto Kishimoto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: bin/181390: seq first appeared in 8th UNIX X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 04:00:00 -0000 >Number: 181390 >Category: bin >Synopsis: seq first appeared in 8th UNIX >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 19 04:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Makoto Kishimoto >Release: 9.1-STABLE >Organization: private >Environment: >Description: In HISTORY section of manual page of seq(1), "seq command first appeared in Plan 9 from Bell Labs.", but there is seq manual page in 8th UNIX (see: http://man.cat-v.org/unix_8th/1/seq ). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 04:10:02 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 50CD0AB5 for ; Mon, 19 Aug 2013 04:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3BA082F6D for ; Mon, 19 Aug 2013 04:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J4A1sq007500 for ; Mon, 19 Aug 2013 04:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J4A1bH007499; Mon, 19 Aug 2013 04:10:01 GMT (envelope-from gnats) Date: Mon, 19 Aug 2013 04:10:01 GMT Message-Id: <201308190410.r7J4A1bH007499@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Henning Matyschok" Subject: Re: kern/179473: Source code contribution of implementation about virtual ethernet interface X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Henning Matyschok List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 04:10:02 -0000 The following reply was made to PR kern/179473; it has been noted by GNATS. From: "Henning Matyschok" To: bug-followup@freebsd.org, henning.matyschok@stud.fh-flensburg.de Cc: Subject: Re: kern/179473: Source code contribution of implementation about virtual ethernet interface Date: Mon, 19 Aug 2013 05:32:16 -0000 ------------5OCVZbrxpul0dnsDsZO7pQ Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit -- Using Opera's mail client: http://www.opera.com/mail/ ------------5OCVZbrxpul0dnsDsZO7pQ Content-Disposition: attachment; filename=if_vether.c Content-Type: application/octet-stream; name=if_vether.c Content-Transfer-Encoding: Base64 LyotCiAqIENvcHlyaWdodCAoYykgMjAxMyBIZW5uaW5nIE1hdHlzY2hvawogKiBB bGwgcmlnaHRzIHJlc2VydmVkLgogKgogKiBSZWRpc3RyaWJ1dGlvbiBhbmQgdXNl IGluIHNvdXJjZSBhbmQgYmluYXJ5IGZvcm1zLCB3aXRoIG9yIHdpdGhvdXQKICog bW9kaWZpY2F0aW9uLCBhcmUgcGVybWl0dGVkIHByb3ZpZGVkIHRoYXQgdGhlIGZv bGxvd2luZyBjb25kaXRpb25zCiAqIGFyZSBtZXQ6CiAqIDEuIFJlZGlzdHJpYnV0 aW9ucyBvZiBzb3VyY2UgY29kZSBtdXN0IHJldGFpbiB0aGUgYWJvdmUgY29weXJp Z2h0CiAqICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRo ZSBmb2xsb3dpbmcgZGlzY2xhaW1lci4KICogMi4gUmVkaXN0cmlidXRpb25zIGlu IGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHQK ICogICAgbm90aWNlLCB0aGlzIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZv bGxvd2luZyBkaXNjbGFpbWVyIGluIHRoZQogKiAgICBkb2N1bWVudGF0aW9uIGFu ZC9vciBvdGhlciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0 aW9uLgogKgogKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZIFRIRSBBVVRI T1IgQU5EIENPTlRSSUJVVE9SUyBgYEFTIElTJycgQU5ECiAqIEFOWSBFWFBSRVNT IE9SIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlU RUQgVE8sIFRIRQogKiBJTVBMSUVEIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklM SVRZIEFORCBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRQogKiBBUkUg RElTQ0xBSU1FRC4gIElOIE5PIEVWRU5UIFNIQUxMIFRIRSBBVVRIT1IgT1IgQ09O VFJJQlVUT1JTIEJFIExJQUJMRQogKiBGT1IgQU5ZIERJUkVDVCwgSU5ESVJFQ1Qs IElOQ0lERU5UQUwsIFNQRUNJQUwsIEVYRU1QTEFSWSwgT1IgQ09OU0VRVUVOVElB TAogKiBEQU1BR0VTIChJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBUTywgUFJP Q1VSRU1FTlQgT0YgU1VCU1RJVFVURSBHT09EUwogKiBPUiBTRVJWSUNFUzsgTE9T UyBPRiBVU0UsIERBVEEsIE9SIFBST0ZJVFM7IE9SIEJVU0lORVNTIElOVEVSUlVQ VElPTikKICogSE9XRVZFUiBDQVVTRUQgQU5EIE9OIEFOWSBUSEVPUlkgT0YgTElB QklMSVRZLCBXSEVUSEVSIElOIENPTlRSQUNULCBTVFJJQ1QKICogTElBQklMSVRZ LCBPUiBUT1JUIChJTkNMVURJTkcgTkVHTElHRU5DRSBPUiBPVEhFUldJU0UpIEFS SVNJTkcgSU4gQU5ZIFdBWQogKiBPVVQgT0YgVEhFIFVTRSBPRiBUSElTIFNPRlRX QVJFLCBFVkVOIElGIEFEVklTRUQgT0YgVEhFIFBPU1NJQklMSVRZIE9GCiAqIFNV Q0ggREFNQUdFLgogKgogKi8KLyoKICogQ29weXJpZ2h0IChjKSAyMDA5IFRoZW8g ZGUgUmFhZHQKICoKICogUGVybWlzc2lvbiB0byB1c2UsIGNvcHksIG1vZGlmeSwg YW5kIGRpc3RyaWJ1dGUgdGhpcyBzb2Z0d2FyZSBmb3IgYW55CiAqIHB1cnBvc2Ug d2l0aCBvciB3aXRob3V0IGZlZSBpcyBoZXJlYnkgZ3JhbnRlZCwgcHJvdmlkZWQg dGhhdCB0aGUgYWJvdmUKICogY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJt aXNzaW9uIG5vdGljZSBhcHBlYXIgaW4gYWxsIGNvcGllcy4KICoKICogVEhFIFNP RlRXQVJFIElTIFBST1ZJREVEICJBUyBJUyIgQU5EIFRIRSBBVVRIT1IgRElTQ0xB SU1TIEFMTCBXQVJSQU5USUVTCiAqIFdJVEggUkVHQVJEIFRPIFRISVMgU09GVFdB UkUgSU5DTFVESU5HIEFMTCBJTVBMSUVEIFdBUlJBTlRJRVMgT0YKICogTUVSQ0hB TlRBQklMSVRZIEFORCBGSVRORVNTLiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVU SE9SIEJFIExJQUJMRSBGT1IKICogQU5ZIFNQRUNJQUwsIERJUkVDVCwgSU5ESVJF Q1QsIE9SIENPTlNFUVVFTlRJQUwgREFNQUdFUyBPUiBBTlkgREFNQUdFUwogKiBX SEFUU09FVkVSIFJFU1VMVElORyBGUk9NIExPU1MgT0YgVVNFLCBEQVRBIE9SIFBS T0ZJVFMsIFdIRVRIRVIgSU4gQU4KICogQUNUSU9OIE9GIENPTlRSQUNULCBORUdM SUdFTkNFIE9SIE9USEVSIFRPUlRJT1VTIEFDVElPTiwgQVJJU0lORyBPVVQgT0YK ICogT1IgSU4gQ09OTkVDVElPTiBXSVRIIFRIRSBVU0UgT1IgUEVSRk9STUFOQ0Ug T0YgVEhJUyBTT0ZUV0FSRS4KICovCiNpbmNsdWRlIDxzeXMvcGFyYW0uaD4KI2lu Y2x1ZGUgPHN5cy9rZXJuZWwuaD4KI2luY2x1ZGUgPHN5cy9tb2R1bGUuaD4KI2lu Y2x1ZGUgPHN5cy9saWJrZXJuLmg+CiNpbmNsdWRlIDxzeXMvc29ja2V0Lmg+IAoj aW5jbHVkZSA8c3lzL3NvY2tpby5oPgogCiNpbmNsdWRlIDxuZXQvaWYuaD4KI2lu Y2x1ZGUgPG5ldC9pZl9jbG9uZS5oPgojaW5jbHVkZSA8bmV0L2lmX21lZGlhLmg+ CiNpbmNsdWRlIDxuZXQvaWZfdHlwZXMuaD4KCiNpbmNsdWRlIDxuZXQvZXRoZXJu ZXQuaD4KI2luY2x1ZGUgPG5ldC9pZl9icmlkZ2V2YXIuaD4KCiNkZWZpbmUgVkVU SEVSTkFNRQkidmV0aGVyIgogCnN0cnVjdCB2ZXRoZXJfc29mdGMgewoJc3RydWN0 IGlmbmV0CSpzY19pZnA7CS8qIE5ldHdvcmsgaW50ZXJmYWNlLiAqLwoJTElTVF9F TlRSWSh2ZXRoZXJfc29mdGMpIHZldGhlcl9saXN0OwoJc3RydWN0IG10eAlzY19t dHg7CQojZGVmaW5lCVZFVEhFUl9MT0NLX0lOSVQoc2MpCW10eF9pbml0KCYoc2Mp LT5zY19tdHgsICJ2ZXRoZXIgc29mdGMiLAlcCgkJCQkgICAgIE5VTEwsIE1UWF9E RUYpCiNkZWZpbmUJVkVUSEVSX0xPQ0tfREVTVFJPWShzYykJbXR4X2Rlc3Ryb3ko JihzYyktPnNjX210eCkKI2RlZmluZQlWRVRIRVJfTE9DSyhzYykJCW10eF9sb2Nr KCYoc2MpLT5zY19tdHgpCiNkZWZpbmUJVkVUSEVSX1VOTE9DSyhzYykJCW10eF91 bmxvY2soJihzYyktPnNjX210eCkKI2RlZmluZQlWRVRIRVJfTE9DS19BU1NFUlQo c2MpCW10eF9hc3NlcnQoJihzYyktPnNjX210eCwgTUFfT1dORUQpCQoJLyogRmFr ZSBpbmZvcm1hdGlvbiBhYm91dCB0cmFuc21pc3Npb24gbWVkaWEuICovCglzdHJ1 Y3QgaWZtZWRpYQlzY19pZm07CQoJaW50CXNjX3N0YXR1czsKfTsKCnN0YXRpYyBM SVNUX0hFQUQoLCB2ZXRoZXJfc29mdGMpIHZldGhlcl9saXN0OwogCnN0YXRpYyBz dHJ1Y3QgbXR4IHZldGhlcl9tdHg7CnN0YXRpYyBNQUxMT0NfREVGSU5FKE1fVkVU SEVSLCBWRVRIRVJOQU1FLCAiVmlydHVhbCBFdGhlcm5ldCBpbnRlcmZhY2UiKTsK IApzdGF0aWMgaW50CXZldGhlcl9jbG9uZV9jcmVhdGUoc3RydWN0IGlmX2Nsb25l ICosIGludCwgY2FkZHJfdCk7CnN0YXRpYyB2b2lkCXZldGhlcl9jbG9uZV9kZXN0 cm95KHN0cnVjdCBpZm5ldCAqKTsKIApJRkNfU0lNUExFX0RFQ0xBUkUodmV0aGVy LCAwKTsKCnN0YXRpYyB2b2lkCXZldGhlcl9pbml0KHZvaWQgKik7CnN0YXRpYyB2 b2lkCXZldGhlcl9zdG9wKHN0cnVjdCBpZm5ldCAqLCBpbnQpOwpzdGF0aWMgdm9p ZAl2ZXRoZXJfc3RhcnRfbG9ja2VkKHN0cnVjdCBpZm5ldCAqKTsKc3RhdGljIHZv aWQJdmV0aGVyX3N0YXJ0KHN0cnVjdCBpZm5ldCAqKTsKCnN0YXRpYyBpbnQJdmV0 aGVyX21lZGlhX2NoYW5nZShzdHJ1Y3QgaWZuZXQgKik7CnN0YXRpYyB2b2lkCXZl dGhlcl9tZWRpYV9zdGF0dXMoc3RydWN0IGlmbmV0ICosIHN0cnVjdCBpZm1lZGlh cmVxICopOwpzdGF0aWMgaW50CXZldGhlcl9pb2N0bChzdHJ1Y3QgaWZuZXQgKiwg dV9sb25nLCBjYWRkcl90KTsKCi8qCiAqIEluc3RhbnRpYXRlcyB2ZXRoZXIgaW50 ZXJmYWNlLgogKi8Kc3RhdGljIGludAp2ZXRoZXJfY2xvbmVfY3JlYXRlKHN0cnVj dCBpZl9jbG9uZSAqaWZjLCBpbnQgdW5pdCwgY2FkZHJfdCBkYXRhKQp7CglzdHJ1 Y3QgdmV0aGVyX3NvZnRjICpzYzsKCXN0cnVjdCBpZm5ldCAqaWZwOwoJdWludDMy X3QgcmFuZHZhbDsKCXVpbnQ4X3QJbGxhW0VUSEVSX0FERFJfTEVOXTsKIAoJc2Mg PSBtYWxsb2Moc2l6ZW9mKHN0cnVjdCB2ZXRoZXJfc29mdGMpLCBNX1ZFVEhFUiwg TV9XQUlUT0t8TV9aRVJPKTsKCWlmcCA9IHNjLT5zY19pZnAgPSBpZl9hbGxvYyhJ RlRfRVRIRVIpOwoJaWYgKGlmcCA9PSBOVUxMKSB7CgkJZnJlZShzYywgTV9WRVRI RVIpOwoJCXJldHVybihFTk9TUEMpOwoJfQogCglWRVRIRVJfTE9DS19JTklUKHNj KTsKCWlmcC0+aWZfc29mdGMgPSBzYzsKIAoJaWZfaW5pdG5hbWUoaWZwLCBpZmMt PmlmY19uYW1lLCB1bml0KTsKIAoJLyogR2VuZXJhdGVzIGxsYSB3aXRoIHJhbmRv bWl6ZWQgdmFsdWUuICovCglsbGFbMF0gPSAweDA7CglyYW5kdmFsID0gYXJjNHJh bmRvbSgpOwoJbWVtY3B5KCZsbGFbMV0sICZyYW5kdmFsLCBzaXplb2YodWludDMy X3QpKTsKCWxsYVs1XSA9ICh1aW50OF90KXVuaXQ7IC8qIEludGVyZmFjZSBtYWpv ciBudW1iZXIgKi8KIAoJZXRoZXJfaWZhdHRhY2goaWZwLCBsbGEpOwogCglpZnAt PmlmX2luaXQgPSB2ZXRoZXJfaW5pdDsKCWlmcC0+aWZfaW9jdGwgPSB2ZXRoZXJf aW9jdGw7CglpZnAtPmlmX3N0YXJ0ID0gdmV0aGVyX3N0YXJ0OwogCglpZnAtPmlm X2NhcGFiaWxpdGllcyA9IElGQ0FQX1ZMQU5fTVRVIHwgSUZDQVBfSlVNQk9fTVRV OwoJaWZwLT5pZl9jYXBlbmFibGUgPSBJRkNBUF9WTEFOX01UVSB8IElGQ0FQX0pV TUJPX01UVTsKCWlmcC0+aWZfZmxhZ3MgPSAoSUZGX1NJTVBMRVggfCBJRkZfQlJP QURDQVNUIHwgSUZGX01VTFRJQ0FTVCk7CglpZnAtPmlmX3NuZC5pZnFfbWF4bGVu ID0gaWZxbWF4bGVuOwogCglpZm1lZGlhX2luaXQoJnNjLT5zY19pZm0sIDAsIHZl dGhlcl9tZWRpYV9jaGFuZ2UsIHZldGhlcl9tZWRpYV9zdGF0dXMpOwoJaWZtZWRp YV9hZGQoJnNjLT5zY19pZm0sIElGTV9FVEhFUiB8IElGTV9BVVRPLCAwLCBOVUxM KTsKCWlmbWVkaWFfc2V0KCZzYy0+c2NfaWZtLCBJRk1fRVRIRVIgfCBJRk1fQVVU Tyk7CiAKCXNjLT5zY19zdGF0dXMgPSBJRk1fQVZBTElEOwoJaWZwLT5pZl9iYXVk cmF0ZSA9IDA7CiAKCW10eF9sb2NrKCZ2ZXRoZXJfbXR4KTsKCUxJU1RfSU5TRVJU X0hFQUQoJnZldGhlcl9saXN0LCBzYywgdmV0aGVyX2xpc3QpOwoJbXR4X3VubG9j aygmdmV0aGVyX210eCk7CglpZnAtPmlmX2Rydl9mbGFncyB8PSBJRkZfRFJWX1JV Tk5JTkc7CiAKCXJldHVybigwKTsKfQogCi8qCiAqIERlc3Ryb3lzIHZldGhlciBp bnRlcmZhY2UuCiAqLwpzdGF0aWMgdm9pZAp2ZXRoZXJfY2xvbmVfZGVzdHJveShz dHJ1Y3QgaWZuZXQgKmlmcCkKewoJc3RydWN0IHZldGhlcl9zb2Z0YyAqc2M7CQoJ c2MgPSBpZnAtPmlmX3NvZnRjOwkKIAoJbXR4X2xvY2soJnZldGhlcl9tdHgpOwoJ dmV0aGVyX3N0b3AoaWZwLCAxKTsKCWlmcC0+aWZfZmxhZ3MgJj0gfklGRl9VUDsJ CQkKCUxJU1RfUkVNT1ZFKHNjLCB2ZXRoZXJfbGlzdCk7CglldGhlcl9pZmRldGFj aChpZnApOwoJVkVUSEVSX0xPQ0tfREVTVFJPWShzYyk7CiAKCW10eF91bmxvY2so JnZldGhlcl9tdHgpOwoJZnJlZShzYywgTV9WRVRIRVIpOwp9CiAKLyoKICogSW5p dGlhbGl6ZXMgdmV0aGVyIGludGVyZmFjZS4KICovCnN0YXRpYyB2b2lkCnZldGhl cl9pbml0KHZvaWQgKnhzYykKewoJc3RydWN0IHZldGhlcl9zb2Z0YyAqc2M7Cglz dHJ1Y3QgaWZuZXQgKmlmcDsKIAogCXNjID0gKHN0cnVjdCB2ZXRoZXJfc29mdGMg Kil4c2M7CglWRVRIRVJfTE9DSyhzYyk7CglpZnAgPSBzYy0+c2NfaWZwOwoJaWZw LT5pZl9kcnZfZmxhZ3MgfD0gSUZGX0RSVl9SVU5OSU5HOwoJaWZwLT5pZl9kcnZf ZmxhZ3MgJj0gfklGRl9EUlZfT0FDVElWRTsKCVZFVEhFUl9VTkxPQ0soc2MpOwp9 CiAKLyoKICogU3RvcHMgdmV0aGVyIGludGVyZmFjZS4KICovCnN0YXRpYyB2b2lk CnZldGhlcl9zdG9wKHN0cnVjdCBpZm5ldCAqaWZwLCBpbnQgZGlzYWJsZSkKewoJ c3RydWN0IHZldGhlcl9zb2Z0YyAqc2M7CgkKCXNjID0gaWZwLT5pZl9zb2Z0YzsK CVZFVEhFUl9MT0NLX0FTU0VSVChzYyk7CglpZnAtPmlmX2Rydl9mbGFncyAmPSB+ SUZGX0RSVl9SVU5OSU5HOwp9CQogCi8qCiAqIFN0YXJ0cyB0cmFuc21pc3Npb24u CiAqLwpzdGF0aWMgdm9pZAp2ZXRoZXJfc3RhcnQoc3RydWN0IGlmbmV0ICppZnAp CnsKCXN0cnVjdCB2ZXRoZXJfc29mdGMJKnNjOwoKCXNjID0gaWZwLT5pZl9zb2Z0 YzsKCVZFVEhFUl9MT0NLKHNjKTsKCXZldGhlcl9zdGFydF9sb2NrZWQoaWZwKTsK CVZFVEhFUl9VTkxPQ0soc2MpOwp9CgpzdGF0aWMgdm9pZAp2ZXRoZXJfc3RhcnRf bG9ja2VkKHN0cnVjdCBpZm5ldCAqaWZwKQp7CglzdHJ1Y3QgdmV0aGVyX3NvZnRj CSpzYzsKCXN0cnVjdCBtYnVmICptOwoKCXNjID0gaWZwLT5pZl9zb2Z0YzsKCVZF VEhFUl9MT0NLX0FTU0VSVChzYyk7CgoJaWZwLT5pZl9kcnZfZmxhZ3MgfD0gSUZG X0RSVl9PQUNUSVZFOwoJCglmb3IgKDs7KSB7CgkJSUZRX0RFUVVFVUUoJmlmcC0+ aWZfc25kLCBtKTsKCQlpZiAobSA9PSBOVUxMKSAKCQkJYnJlYWs7CgkJCiAJCWlm IChpZnAtPmlmX2JyaWRnZSA9PSBOVUxMKSB7CgkJCW1fZnJlZW0obSk7CgkJCWNv bnRpbnVlOwoJCX0KCQoJCWlmIChtLT5tX2ZsYWdzICYgTV9QUk9UTzEpIHsKCQkJ bV9mcmVlbShtKTsKCQkJY29udGludWU7CQkgCQkKCQl9CgkJCgkJaWYgKG0tPm1f cGt0aGRyLnJjdmlmID09IE5VTEwpIHsKCQkJbS0+bV9mbGFncyB8PSBNX1BST1RP MTsKCQkJbS0+bV9mbGFncyAmPSB+TV9QUk9NSVNDOwoJCQltLT5tX3BrdGhkci5y Y3ZpZiA9IGlmcC0+aWZfYnJpZGdlOwoJCgkJCSh2b2lkKShicmlkZ2Vfb3V0cHV0 X3ApKGlmcCwgbSwgTlVMTCwgTlVMTCk7CQkKIAkJfSBlbHNlIAogCQkJbV9mcmVl bShtKTsKCX0KCQkJCQkKCWlmcC0+aWZfZHJ2X2ZsYWdzICY9IH5JRkZfRFJWX09B Q1RJVkU7Cn0KCi8qCiAqIE1lZGlhIHR5cGVzIGNhbid0IGNoYW5nZWQuCiAqLwpz dGF0aWMgaW50CnZldGhlcl9pb2N0bChzdHJ1Y3QgaWZuZXQgKmlmcCwgdV9sb25n IGNtZCwgY2FkZHJfdCBkYXRhKQp7CglzdHJ1Y3QgdmV0aGVyX3NvZnRjICpzYyA9 IGlmcC0+aWZfc29mdGM7CQoJc3RydWN0IGlmcmVxICppZnIgPSAoc3RydWN0IGlm cmVxICopZGF0YTsKCWludCBlcnJvciA9IDA7CiAKCVZFVEhFUl9MT0NLKHNjKTsK CXN3aXRjaCAoY21kKSB7CgljYXNlIFNJT0NTSUZNVFU6CgkJaWYgKGlmci0+aWZy X210dSA+IEVUSEVSX01BWF9MRU5fSlVNQk8pIAoJCQllcnJvciA9IEVJTlZBTDsK CQllbHNlIAoJCQlpZnAtPmlmX210dSA9IGlmci0+aWZyX210dTsJCgkJYnJlYWs7 CgljYXNlIFNJT0NTSUZNRURJQToKCWNhc2UgU0lPQ0dJRk1FRElBOgoJCWVycm9y ID0gaWZtZWRpYV9pb2N0bChpZnAsIGlmciwgJnNjLT5zY19pZm0sIGNtZCk7CgkJ YnJlYWs7CgljYXNlIFNJT0NTSUZGTEFHUzoKCWNhc2UgU0lPQ0FERE1VTFRJOgoJ Y2FzZSBTSU9DREVMTVVMVEk6CgkJYnJlYWs7CgljYXNlIFNJT0NTSUZQSFlTOgoJ CWVycm9yID0gRU9QTk9UU1VQUDsKCQlicmVhazsKCWRlZmF1bHQ6CgkJZXJyb3Ig PSBldGhlcl9pb2N0bChpZnAsIGNtZCwgZGF0YSk7CgkJYnJlYWs7Cgl9CglWRVRI RVJfVU5MT0NLKHNjKTsKCXJldHVybihlcnJvcik7Cn0gCgpzdGF0aWMgaW50CnZl dGhlcl9tZWRpYV9jaGFuZ2Uoc3RydWN0IGlmbmV0ICppZnApCnsKCXJldHVybigw KTsKfQogCnN0YXRpYyB2b2lkCnZldGhlcl9tZWRpYV9zdGF0dXMoc3RydWN0IGlm bmV0ICppZnAsIHN0cnVjdCBpZm1lZGlhcmVxICppZm1yKQp7CglpZm1yLT5pZm1f YWN0aXZlID0gSUZNX0VUSEVSIHwgSUZNX0FVVE87CglpZm1yLT5pZm1fc3RhdHVz ID0gSUZNX0FWQUxJRCB8IElGTV9BQ1RJVkU7Cn0KCnN0YXRpYyBpbnQKdmV0aGVy X21vZF9ldmVudChtb2R1bGVfdCBtb2QsIGludCBldmVudCwgdm9pZCAqZGF0YSkK ewoJaW50IGVycm9yID0gMDsKIAoJc3dpdGNoIChldmVudCkgewoJY2FzZSBNT0Rf TE9BRDoKCQltdHhfaW5pdCgmdmV0aGVyX210eCwgImlmX3ZldGhlciIsIE5VTEws IE1UWF9ERUYpOwoJCWlmX2Nsb25lX2F0dGFjaCgmdmV0aGVyX2Nsb25lcik7CQoJ CWJyZWFrOwoJY2FzZSBNT0RfVU5MT0FEOgkKCQlpZl9jbG9uZV9kZXRhY2goJnZl dGhlcl9jbG9uZXIpOwoJCW10eF9kZXN0cm95KCZ2ZXRoZXJfbXR4KTsKCQlicmVh azsKCWRlZmF1bHQ6CgkJZXJyb3IgPSBFT1BOT1RTVVBQOwoJfQogCglyZXR1cm4o ZXJyb3IpOwp9IAogCnN0YXRpYyBtb2R1bGVkYXRhX3QgdmV0aGVyX21vZCA9IHsK CSJpZl92ZXRoZXIiLAoJdmV0aGVyX21vZF9ldmVudCwKCTAKfTsKREVDTEFSRV9N T0RVTEUoaWZfdmV0aGVyLCB2ZXRoZXJfbW9kLCBTSV9TVUJfUFNFVURPLCBTSV9P UkRFUl9BTlkpOwo= ------------5OCVZbrxpul0dnsDsZO7pQ-- From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 04:25:19 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 484D2D10; Mon, 19 Aug 2013 04:25:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E69E201F; Mon, 19 Aug 2013 04:25:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J4PI76011810; Mon, 19 Aug 2013 04:25:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J4PIe3011809; Mon, 19 Aug 2013 04:25:18 GMT (envelope-from linimon) Date: Mon, 19 Aug 2013 04:25:18 GMT Message-Id: <201308190425.r7J4PIe3011809@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/181390: seq(1) first appeared in 8th UNIX X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 04:25:19 -0000 Old Synopsis: seq first appeared in 8th UNIX New Synopsis: seq(1) first appeared in 8th UNIX Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 19 04:25:01 UTC 2013 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=181390 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 11:08:17 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A6FA84F2 for ; Mon, 19 Aug 2013 11:08:17 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 917FA2654 for ; Mon, 19 Aug 2013 11:08:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JB8Hmm007939 for ; Mon, 19 Aug 2013 11:08:17 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7JB8GVw007935 for freebsd-bugs@FreeBSD.org; Mon, 19 Aug 2013 11:08:16 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 19 Aug 2013 11:08:16 GMT Message-Id: <201308191108.r7JB8GVw007935@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 11:08:17 -0000 (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/181385 [patch] x11-drivers/xf86-video-vmware: a fix from a VM o ports/181383 swills [PATCH] net/py-ec2-cli-tools: Fix RUN_DEPENDS o ports/181372 gnome [patch]x11-fonts/fontconfig fc-cache Segmentation faul f ports/181365 [PATCH] security/libgcrypt: fix build on armv6 o ports/181364 fjoe [PATCH] misc/mc: Update to 4.8.10 o ports/181360 nivit [PATCH] unbreak archivers/quazip o ports/181348 sperber [PATCH] multimedia/miro: update to 6.0 o bin/181341 [patch] daemon(8): ability to write pidfile for itself o ports/181340 lev [patch] devel/subversion: don't overwrite modified svn o ports/181335 kde [PATCH] devel/qmake4: Fix port test and Tinderbox, tri o ports/181329 fjoe [patch] x11-toolkits/wxgtk29: update to 2.9.5 f ports/181324 [patch] fix net/istgt with options VBOXVD (VirtualBox o ports/181320 jadawin [PATCH] irc/irssi-xmpp: update to 0.52 f ports/181319 swills [PATCH] mail/mutt: Add patch from upstream to allow di f ports/181302 mi [PATCH] Update graphics/libfpx to 1.3.1-2 f ports/181295 madpilot [PATCH] audio/icegenerator : Add MySQL and PostgreSQL f ports/181291 [PATCH] mail/postgrey: make postgrey work with perl 5. o ports/181271 portmgr [PATCH] let bsd.port.mk's makepatch support spaces in o ports/181270 johans [PATCH] graphics/webp: update to 0.3.1 f ports/181265 apache [patch] Updating www/mod_fcgid form 2.3.6 to 2.3.7 o ports/181254 crees [patch] [update] update net-p2p/transmission* & www/tr f ports/181248 [PATCH] print/cups-base Disable INSTALLS_ICONS for non o kern/181225 net [infiniband] [patch] unloading ipoib crashes the kerne o ports/181224 amdmi3 [PATCH] games/qnetwalk: update to 1.4 o ports/181216 lwhsu [PATCH] devel/py-pytz, TypeError: initial_value must b f ports/181215 miwi [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] o ports/181213 multimedia [patch] audio/twolame: add ftp/curl dependency o ports/181212 kde [patch] textproc/redland: add ftp/curl dependency o ports/181211 novel [patch] audio/easytag: Fix build with latest clang in o ports/181210 kde [patch] textproc/rasqal: add ftp/curl dependency o ports/181201 osa [patch] databases/redis - Allow you to set config path f ports/181196 swills [PATCH] net-im/pidgin-sipe: Fix on -CURRENNT o ports/181184 gnome [PATCH] x11-toolkits/gtk30: Remove simple patches, tri o ports/181180 vg [PATCH] audio/gvolwheel: trim USES, NLS, add docs, des o bin/181157 [patch] ftpd(8): New login.conf(5) capability "ftp-chd o kern/181155 [libc] [patch] *access*(2) does not handle invalid amo f ports/181145 edwin [PATCH] games/xrobots: fix build with clang o ports/181140 x11 [patch]x11/pixman fix typo & build issue on arm o kern/181135 net [netmap] [patch] sys/dev/netmap patch for Linux compat o ports/181133 [patch] x11-drivers/input-wacom: enabled support of wa o kern/181131 net [netmap] [patch] sys/dev/netmap memory allocation impr o kern/181127 [libc] [patch] set{domain,host}name doesn't permit NUL o ports/181126 office [patch] devel/boost-libs fails to build on ppc64 o ports/181123 [PATCH] mail/libpst: update to 0.6.61 f ports/181102 [PATCH] audio/mumble cannot find bundled libcelt o ports/181091 tobez [PATCH] devel/p5-Path-Tiny: update to 0.027 o ports/181077 [patch] ports-mgmt/pkg_replace support pkgng o ports/181052 osa [patch] make lang/lua not hang on thread creation f ports/181043 python [patch] databases/py-carbon: Enhance the init script f ports/181042 python [patch] www/py-graphite-web: Correct setup directions f ports/181040 [patch] sysutils/conky "diskio" memory leak fix o kern/181012 emulation [linux] [patch] Implemented linux system call fstatfs6 o kern/181006 net [run] [patch] mbuf leak in run(4) driver o kern/180979 fs [netsmb][patch]: Fix large files handling o bin/180961 [patch] top(1): Fix top command format when JID with 4 f ports/180959 [PATCH] x11/x3270: update to 3.3.12 p kern/180948 yongari [bge] [patch] Fix for BCM57780 LEDs in if_bge.c o ports/180945 sunpoet [PATCH] graphics/gdal: update to 1.10.0 s misc/180941 re [patch] .git files shouldn't be included when making a o misc/180918 [patch] [modules] stable/9 buildworld is broken with M o kern/180917 des [libfetch] [patch] Add to send HTTP Accept Header for o ports/180906 multimedia [PATCH] multimedia/gpac-* update to 0.5.0 o kern/180893 net [if_ethersubr] [patch] Packets received with own LLADD s ports/180880 obrien [patch] editors/vim remove BADPATCHES o ports/180877 bland [PATCH] converters/iconv: optional perl run depend o usb/180837 usb [scsi_da] [patch] Kingston DT 101 G2 usb stick quirk ( o bin/180818 [patch] rtadvd(8): rtadvd generates warnings when usin f ports/180799 vg [PATCH] mail/dovecot2 without-ssl make package error f ports/180780 miwi [PATCH] devel/pear-TheSeer_phpDox: update to 0.5.0 o ports/180772 miwi [PATCH] databases/pecl-mongo: update to 1.4.2 o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o ports/180760 rm [PATCH] net-im/gajim: Add missing Features, docs f ports/180753 [PATCH] devel/ocaml-opam: fix build error of util.ml f ports/180732 swills [PATCH] sysutils/rubygem-ohai: Add patch to fix issue o ports/180728 kwm [PATCH] devel/libgee: update to 0.10.2 o ports/180725 bdrewery [PATCH] bsd.port.mk: Allow builds to fail when package o kern/180719 [libc] [patch] Compatibility enhancement - sigsend() ( f ports/180712 swills [PATCH] devel/rubygem-rspec: update to 2.14.1 o conf/180682 [regdomain.xml] [patch] ifconfig wlan0 country JP is m o ports/180681 miwi [patch] textproc/urlview fix compiler warnings o ports/180680 mono [PATCH] devel/monodevelop: update to 4.0.9_1 o bin/180666 des [libfetch] [patch] fix libfetch incorrect location sen o ports/180660 gnome [patch] textproc/enchant: set location of hunspell dic o usb/180657 usb [PATCH] Filco Majestouch 2 keyboard recognized as keyb o threa/180652 threads [patch] compat32 problem in clock_getcpuclockid2 f ports/180642 [PATCH] astro/gpsman: update to 6.4.4.1 o ports/180639 osa [PATCH] www/nginx: [Fix for syslog support] o ports/180619 vd [patch] ftp/wget:: stealth dependency on misc/e2fsprog p ports/180615 kde [PATCH] devel/qtcreator: update to 2.8.0 o ports/180612 lev [patch] devel/subversion: let bindings ports load opti o ports/180611 [patch] update cad/feappv o ports/180596 gnome [patch] devel/libnotify: remove gtk20 and gettext depe o kern/180588 [cpufreq] [patch] cpufreq cannot be loaded as kernel m o ports/180585 naddy [patch] audio/opus: drop unnecessary processing by inc o conf/180572 [network.subr] [patch] SLAAC is enabled for ipv6_cpe_w o kern/180558 [syscons] [patch] Change syscons to support consoles a a ports/180548 ohauer [bsd.sites.mk] [patch] - Outdated Apache Master Sites f ports/180540 swills [PATCH] security/rubygem-metasploit_data_models: updat f ports/180533 sunpoet [PATCH] devel/rubygem-rspec: update to 2.14.1 o ports/180499 swills [PATCH] fix emulators/open-vm-tools after r248084 o ports/180464 python [patch] Update astro/py-pyfits to 3.1.2 o ports/180459 gnome Port devel/py-dbus ' wrong PORTDOCS logic and pkg-plis o ports/180458 apache [patch] www/apache2[24]: typo in pkg-message f ports/180447 skreuzer [PATCH] net-mgmt/nrpe2: Update to 2.14 o ports/180441 clsung [patch] updates to port for textproc/metaf2xml 1.52+ o kern/180438 fs [smbfs] [patch] mount_smbfs fails on arm because of wr o bin/180414 [patch] xlint should use $CC o misc/180413 [build] [patch] Compilation failure with _DONT_USE_CTY f ports/180389 [PATCH] net/rabbitmq: update to 3.1.3 o ports/180368 haskell [PATCH] devel/hs-git-annex does not build with WEBAPP o misc/180365 [bsd.cpu.mk] [patch] Not attach ${_CPUCFLAGS} to CXXFL o ports/180336 itetcu [PATCH] sysutils/apcupsd: support multiple instances o o ports/180324 hrs [PATCH] net-mgmt/ipv6mon modified rc.d script for mult o ports/180267 brd [patch] - update devel/librelp to version 1.1.4 o ports/180246 swills [patch] lang/ruby20: update to 2.0.0p247 o ports/180207 amdmi3 [PATCH] audio/dumb: Add ALLEGRO_DEVEL, trim ALLEGRO Op o ports/180195 [patch] upgrade games/minecraft-client to 1.6.1 o ports/180181 pgsql [PATCH] databases/postgresql92-server: Add pthread sup o ports/180165 python [PATCH] devel/py27-distribute: Fix install and deinsta o ports/180149 dhn [PATCH] net/rubygem-rubytter: update to 1.5.1 o ports/180148 dhn [PATCH] net-im/rubygem-termtter: update to 2.2.1 o ports/180139 brd [PATCH] sysutils/rsyslog7: Make UUID support optional o ports/180096 x11 [patch] x11/xorg-libraries: add missing dependency o conf/180078 re [PATCH] make /etc and /var writable on CD media o kern/180067 jail [jail] [patch] fix multicast support within jails o kern/180065 net [netinet6] [patch] Multicast loopback to own host brok f ports/180061 lippe [PATCH] devel/ChipmunkPhysics: Add docs, examples, dem o ports/180057 olivierd [PATCH] textproc/py27-sphinx: Fix for creation of manp o ports/180030 bapt [bsd.port.mk] [patch] add the OPTIONS{,_}FILE rename t o ports/180019 dhn [PATCH] devel/rubygem-lockfile: update to 2.1.0 o bin/180014 [patch] kldstat(8): add quiet option to filename mode o ports/180005 portmgr [bsd.port.mk] [patch] USE_DOS2UNIX doesn't print out t o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox o ports/179942 multimedia [patch] multimedia/dvdstyler: uses wrong ffmpeg when m o kern/179926 net [lacp] [patch] active aggregator selection bug o ports/179908 dhn [PATCH] sysutils/rubygem-teamocil: update to 0.4.4 o ports/179902 brd [patch] - update sysutils/rsyslog7-devel to version 7. p kern/179901 trociny [netinet] [patch] Multicast SO_REUSEADDR handled incor o ports/179900 brd [patch] - update sysutils/rsyslog7 to version 7.4.1 o kern/179847 wireless [ath] [patch] Update regdomain in ath drivers includin o bin/179833 [patch] contrib/bmake: port easter egg from pmake o conf/179828 rc [rc.d] [PATCH] rc.d/syslogd link socket to /dev/log fa o ports/179809 autotools [PATCH] devel/libtool: Add support for lang/clang33 o bin/179800 [patch] use svnlite on newvers.sh o ports/179795 jsa [PATCH] graphics/pngcrush: failed checksum again (less o ports/179766 mm [PATCH] sysutils/debootstrap fails on freebsd with --f o kern/179733 net [lagg] [patch] interface loses capabilities when proto o kern/179721 [libc] [patch] char<->wchar_t mismatch in glob(3), fnm o ports/179720 sylvio [PATCH] irc/bip: add patch which helps avoid flooding o ports/179705 dhn [PATCH] audio/ncmpcpp is missing a build time dependen o ports/179701 multimedia [PATCH] multimedia/gstreamer: Add NLS, trim pkg-plist o arm/179688 arm [patch] [rpi] serial console eats some characters at m o ports/179687 uqs [PATCH] games/bsdgames: add CONFLICTS for games/hangma f ports/179637 [patch] ports-mgmt/portupdate-scan: add the "-a [date] o bin/179619 des [libopenssh] [patch] 9-STABLE sshd negotiates unsuppor o conf/179570 [patch] New version of /etc/periodic/weekly/330.catman o misc/179562 [build] [patch] Add LOCAL_ITOOLS to ease site-specific o ports/179551 osa [patch] databases/redis: add profiles to redis.in o kern/179523 [cpuctl] [patch] Memory leak/corruption in cpuctl pseu o ports/179499 [patch] port sysutils/devcpu-data is unmaintained and o docs/179497 doc [patch] service.8 add csh completion example o kern/179482 wireless [ath] [patch] Fix AR9462 external LNA configuration o ports/179469 gnome [patch] sysutils/hal: remove disk duplicate entries o conf/179466 [PATCH] Quote LOCAL_MTREE so submakes don't interpret o ports/179450 kuriyama [PATCH] security/gnupg does not detect curl-config whe f ports/179412 beech [PATCH] x11-toolkits/pure-tk: New Uses pure, add licen f ports/179411 beech [PATCH] x11-toolkits/pure-gtk: New Uses pure, add lice f ports/179410 beech [PATCH] textproc/pure-xml: New Uses pure, add license f ports/179409 beech [PATCH] textproc/pure-csv: New Uses pure, add license f ports/179408 beech [PATCH] math/pure-rational: New Uses pure f ports/179407 beech [PATCH] net/pure-sockets: New Uses pure, add license f ports/179406 beech [PATCH] math/pure-mpfr: New Uses pure, add license f ports/179405 beech [PATCH] devel/pure-stlvec: New Uses pure, add license f ports/179404 beech [PATCH] graphics/pure-gl: New Uses pure, add license f ports/179403 beech [PATCH] devel/pure-stldict: New Uses pure, add license f ports/179402 beech [PATCH] devel/pure-readline: update to 0.2, New Uses p f ports/179401 beech [PATCH] /usr/ports/Mk/Uses/pure.mk: New Uses pure f ports/179400 gnome [PATCH] print/freetype2: Add Infinality patches f ports/179396 beech [PATCH] devel/pure-gen: New Uses pure:ffi, add license f ports/179395 beech [PATCH] devel/pure-ffi: update to 0.13, new Uses pure, f ports/179393 beech [PATCH] databases/pure-sql3: New Uses pure, add licens f ports/179391 beech [PATCH] audio/pure-audio: New Uses pure, add license f ports/179390 beech [PATCH] lang/pure: update to 0.57, remove bsd.pure.mk o ports/179348 gnome [PATCH] graphics/passepartout: Trim docs, add FAM opti p ports/179338 marcus [patch] ports-mgmt/portlint various improvements o ports/179337 grog [PATCH] graphics/enblend: Fix docs, mtree, add Options o ports/179336 beech [PATCH] graphics/diacanvas2: Add license, NLS, fix doc o ports/179330 obrien [patch] update mirror list for editors/vim o ports/179327 beech [PATCH] games/gtktetcolor: Update to 0.6.5pre3, fix po o ports/179287 beech [PATCH] games/euchre: Fix port, bad C++ code, add icon o ports/179286 beech [PATCH] games/gno3dtet: Fix typo, add dependencies, NL o bin/179285 [patch] ndiscvt(8): Remove dependency of ndiscvt on li o amd64/179282 amd64 [PATCH] Intel SMAP for FreeBSD-CURRENT f ports/179281 bapt [PATCH] mail/mutt14: optionsNG conversion; fix IMAP fo o ports/179278 sylvio [PATCH] devel/p5-Goo-Canvas: Fix port, add license, ad f ports/179268 [PATCH] www/trafficserver: Fix disk usage miscalculate o docs/179246 doc [patch] gnome porting updates o ports/179244 gahr [PATCH] devel/dparser: Fix docs, cleanup Makefile o ports/179243 beech [PATCH] deskutils/rubrica: update to 2.0.12, take main f ports/179242 beech [PATCH] comms/jerm: Trim REINPLACE_CMD, docs, fix term o ports/179238 sylvio [PATCH] audio/mp3info: Trim install for gmp3info, comp o ports/179235 beech [PATCH] audio/sphinx3: Trim pkg-plist, remove simple p o ports/179206 swills [patch] Please update archivers/ruby-zip to 0.9.9 o ports/179205 beech [PATCH] net-im/coccinella: Trim docs and pkg-plist, ad s ports/179204 gerald [patch] lang/gcc4[6789]: -Wcast-qual reports incorrec o ports/179201 beech [PATCH] net-im/cjc: Trim docs and pkg-plist o ports/179200 beech [PATCH] net/pathneck: Add license. trim docs and pkg-d o ports/179198 beech [PATCH] net/tcpstat: Trim comment, docs, add license o ports/179182 brd [PATCH] net-mgmt/rubygem-visage-app: Fix build o bin/179174 [patch] flex(1) generated files trigger an alarm from o ports/179154 beech [PATCH] multimedia/dv2jpg: Use files/makefile instead o ports/179149 beech [PATCH] multimedia/mkxvcd: Trim docs, add license o ports/179131 beech [PATCH] multimedia/subtools: update to 20081026, Conve o ports/179130 beech [PATCH] multimedia/vcdgear: Convert to OptionsNG, trim o ports/179124 gnome [PATCH] graphics/cairomm: Convert to OptionsNG, trim d o ports/179121 multimedia [PATCH] graphics/exiftags: Convert to OptionsNG o bin/179085 [tools] [patch] pthread patch for netblast o ports/179066 gnome [PATCH] devel/gvfs: Add FUSE to default Options, add p f ports/179010 [PATCH] devel/doxygen: update to 1.8.4_1 o kern/178997 [vfs] [patch] Heavy disk I/O may hang system o conf/178978 gjb [patch] Race in make release when make system/bootonly f ports/178973 [PATCH] net/scribe: Use USE_GITHUB framework to fetch s ports/178930 lua [patch] lang/lua52 to use Mk/bsd.lua.mk o kern/178881 hrs [patch] getifaddrs(3) does not report IPv6 addresses p o misc/178862 [tools] [patch] fix cross-compilation (amd64/i386) of o ports/178807 portmgr [patch] bsd.port.mk: let PORTDATA deal with empty dire o ports/178799 osa [Patch] Add 3rd party StatsD Module to www/nginx port o ports/178784 [patch] enable PowerPC support in devel/gdb o ports/178780 [patch] updated databases/libdbi-drivers to 0.9.0 o usb/178773 usb [usbdevs] [patch] Huawei E303 USB 3G modem support o usb/178771 usb [usbdevs] [patch] Western Digital My Passport HD o bin/178764 [PATCH] [bluetooth] synch __arraycount definition fix o ports/178762 bdrewery [patch] Mk/bsd.port.mk: Store options alphabetically o ports/178748 python [patch] lang/python27: dbm module fails to build o ports/178726 [PATCH] databases/mariadb55-server: multi-instances st o kern/178713 fs [nfs] [patch] Correct WebNFS support in NFS server and o bin/178692 [PATCH] pkill(1): use __dead2 over __attribute__((nore o kern/178689 [uart] [patch] Extend PCI devices in uart driver o kern/178667 [mac] [patch] mac_lomac policy ignores aux label when o docs/178642 hiren [patch] typo in man page for atol o ports/178533 osa [PATCH] www/nginx: nginx+3rd syslog support o kern/178507 [libradius] [patch] Comment bug in src/lib/libradius/r o kern/178472 net [ip6] [patch] make return code consistent with IPv4 co o bin/178463 [patch] Remove cpp usage from calendar(1) f ports/178452 swills [PATCH] sysutils/ldap-account-manager: [SUMMARIZE CHAN o ports/178436 sem [PATCH] devel/gsoap doesn't work with make reinstall o kern/178396 [kernel] [patch] Add jid to kernel log when a process o ports/178394 mva [patch] print/pslib conditionally use gettext o bin/178392 [patch] Add support for WebNFS mounts to mount_nfs(8) o kern/178388 fs [zfs] [patch] allow up to 8MB recordsize o kern/178387 fs [zfs] [patch] sparse files performance improvements o ports/178364 eadler [patch] Port dns/adns add option to apply patch o kern/178359 geom [geom] [patch] geom_eli: support external metadata o amd64/178357 amd64 [patch] export CPU physical and virtual address sizes o kern/178319 loos [patch] [arge] arge_stop() doesn't clean the tx ring p o kern/178318 loos [patch] [arge] if_arge/bootp race under some circunsta o ports/178301 python [patch] lang/python2[67]: SEM option is inconsistent o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o ports/178272 sem [PATCH] devel/gsoap: fix build with GNUTLS option enab o ports/178262 sem [patch] dns/unbound, dns/ldns: openssl port iff base v f ports/178251 [patch] converters/unix2dos implicit declaration of fu f ports/178245 [patch] mail/getlive: 3.0 has been released o ports/178244 amdmi3 [patch] Update games/minetest to 0.4.6 o conf/178215 [PATCH] remove mail/sendmail bits if MK_MAIL/MK_MAILWR o conf/178210 [PATCH] make bsdinstall optional o conf/178207 [PATCH] don't build mailwrapper if MK_MAILWRAPPER == n o ports/178189 nobutaka [PATCH] www/w3m: make slave ports work as are before m f ports/178187 [PATCH] games/freedink-dfarc: Fix build and plist a ports/178170 x11 [patch] x11-servers/xorg-server: xkb misbehaviour on k o kern/178103 fs [kernel] [nfs] [patch] Correct support of index files o docs/178077 doc [patch] Correct description of -webnfs in exports.5 o ports/178072 portmgr [PATCH] [bsd.port.mk] look for Makefile.local in ${POR o conf/178068 [PATCH] simplify _libraries by filtering out __L o conf/178065 [PATCH] _worldtmp can fail sometimes if WORLDTMP/LIB32 o ports/178063 kde [Patch] graphics/digikam-kde4 can't edit images o ports/178023 gnome [patch] graphics/cairo: add a fix for text redrawing i o usb/177897 usb [u3g][patch] add support for the Huawei E352 modem p kern/177889 delphij [ip] [patch] fix printf to generate coherent message, p kern/177888 delphij [netinet] [patch] Missing mutex unlock - deadlock mult o bin/177885 [patch] cp(1): regression on cp performance o kern/177878 embedded [rtl8366rb] [patch] Update rtl8366rb switch driver to o bin/177873 embedded [patch] etherswitchcfg(): Change the per port vlangrou o bin/177872 embedded [patch] etherswitchcfg(8) crashes if called with no ar o bin/177871 embedded [patch] etherswitchcfg(8): uninitialized variable whil o kern/177862 [ofed] [patch] Fix atomic bitstring operations in sys/ o ports/177861 glewis [patch] Use NetHack data librarian for games/nethack34 o kern/177832 mips [mips] [gpio] [patch] GPIO and RF LED do not function o kern/177808 pf [pf] [patch] route-to rule forwarding traffic inspite f ports/177797 [PATCH] mail/postfix-policyd-spf-python: update to 1.1 p ports/177746 rpaulo [PATCH] devel/subversion fbsd template 'Sponsored by:' p kern/177706 gnn [dtrace] [patch] DTrace sched:::off-cpu args[0] should o kern/177698 [libutil] [patch] sshd sets the user's MAC label at th o arm/177685 arm [kernel] [patch] Correct return type and usage of at91 o usb/177666 usb [usbdevs] [patch] Add support for Texas Instruments / o kern/177624 [libc] [patch] Swapcontext can get compiled incorrectl o ports/177598 dhn [PATCH] devel/nasm: update to 2.10.07 p kern/177495 andreast [patch] Fix a small typo in a comment o ports/177466 jadawin [patch] Update of irc/irssi-xmpp to 0.52 p kern/177456 glebius [tcp] [patch] An error of calculating TCP sequence num o ports/177403 portmgr [patch] Mk/bsd.port.mk: Incomplete evaluation of OSVER f ports/177397 [patch] security/heimdal: fix conflict between heimdal o ports/177365 bdrewery [patch] ports-mgmt/portupgrade-devel enhancements o ports/177364 [patch] math/scilab port build fails configuration ste f kern/177362 net [netinet] [patch] Wrong control used to return TOS o ports/177352 sylvio [PATCH] graphics/gnofract4d: update to 3.14.1, Convert o ports/177349 clsung [patch] sysutils/xosview new version available o ports/177345 dhn [PATCH] graphics/gocr: update to 0.50, Convert to Opti o ports/177333 acm [PATCH] games/ceferino: f ports/177322 beech [PATCH] graphics/imageindex: Convert to OptionsNG o kern/177319 [kernel] [patch] Add more x86 CPU feature flag definit o ports/177286 nivit [PATCH] graphics/l2p: Convert to OptionsNG, fix Master o ports/177268 osa [PATCH] graphics/libraw: Convert to OptionsNG o conf/177217 rc [patch] rc.d/ddb -- squelch warning when ddb_enable=ye o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o ports/177202 vbox [PATCH] emulators/virtualbox-ose option to skip buildi p ports/177201 thierry french/aster: [PATCH] doesn't build in poudriere, seve o kern/177184 hiren [bge] [patch] enable wake on lan o kern/177165 hiren [patch] Fixing clang warnings at /sys/geom o kern/177163 hiren [patch] Fixing clang warnings at /sys/dev/mps o kern/177156 [patch] Fixing clang warnings at /sys/dev/oce o kern/177155 hiren [patch] Fixing clang warnings at /sys/dev/safe o kern/177153 [patch] Fixing clang warnings at /sys/ufs/ufs o kern/177151 [patch] Fixing clang warnings at /sys/dev/vxge o ports/177145 mm [patch] multimedia/ffmpeg1 Update to 1.2 o bin/177047 [patch] Adding date to wall(1) output message can be u o ports/177016 delphij [PATCH] net/openldap24-server: Fix local-modified sche p usb/177013 hselasky [patch] Adding support for LOGITEC LAN-W300N/U2S on if o kern/177008 [kmod.mk] [patch] EXPORT_SYMS make variable is broken o ports/177006 perl [PATCH] lang/perl5.12, lang/perl5.14, lang/perl5.16: D o ports/176977 bf [patch] lang/expect update to 5.45 and drop lang/expec o ports/176931 dhn [PATCH] devel/synfig: OptionsNG, added license, Port i o ports/176930 dhn [PATCH] graphics/synfigstudio: OptionsNG, Port is now p stand/176916 jilles [patch] sh(1): implement multiple arguments to wait bu o ports/176900 sylvio [PATCH] mail/mpop: openssl library cannot be found. p bin/176886 jh [PATCH] tail(1): tail -F file1 file2 > file3 places fi f ports/176855 sunpoet [PATCH] databases/p5-KyotoCabinet: update to 1.20 f ports/176809 sunpoet [PATCH] science/hdf5-18: update to 1.8.10, take mainta o bin/176807 [libgssapi] [patch] libgssapi causes segfaults on i386 o ports/176773 zeising [PATCH] devel/libffi - install to standard path o ports/176767 [patch] net-im/ari-yahoo broken on freebsd-head o kern/176763 pf [pf] [patch] Removing pf Source entries locks kernel. f ports/176758 timur [patch] databases/tdb: samba talloc + tdb incorrect w/ o kern/176748 [libi386] [patch] BTX Loader i386 incorrectly probes E o kern/176744 geom [geom] [patch] BIO_FLUSH not recorded by devstats o bin/176740 des [patch] sshd(8) does not honour umask from ~/.login_co o ports/176716 [patch] devel/boehm-gc update to 7.2d combining previo o bin/176713 [patch] nc(1) closes network socket too soon p kern/176712 hiren [patch] Fixing clang warnings at different places f ports/176676 [patch] net/ss5: syslog option is noisy o conf/176668 [periodic] [patch] Only save pkgdb if it has changed o bin/176639 [patch] netstat(1) will display pcb table twice for an o kern/176636 [zfs] [patch] Periodical crashes with 9.1-R o kern/176628 [headers] [patch] use safer way of definint __WORDSIZE o kern/176603 [headers] [patch] Remove redundant and duplicate #incl o kern/176600 [PATCH] Truncate files, which had their contents dupli o kern/176597 [PATCH] watchdog: Correct typo in debug code. o kern/176579 hiren [kernel] [patch] add td_name to maxproc limit warning o kern/176484 net [ipsec] [enc] [patch] panic: IPsec + enc(4); device na o ports/176461 jhale [patch] security/libassuan update to 2.1.0 o kern/176446 net [netinet] [patch] Concurrency in ixgbe driving out-of- o kern/176420 net [kernel] [patch] incorrect errno for LOCAL_PEERCRED o kern/176419 net [kernel] [patch] socketpair support for LOCAL_PEERCRED o ports/176406 zeising [PATCH] devel/binutils: installs a file that conflict o ports/176378 [PATCH] Fix several typos in the ports tree o bin/176361 [PATCH] Add recursive option to ctags(1) o conf/176347 rc [rc.conf] [patch] Add support for firewall deny lists o ports/176282 portmgr [bsd.port.mk] [patch] add bsd.owfs.mk o kern/176281 jfv [ixgbe] [patch] Update ixgbe to 2.4.10 (latest officia o bin/176278 [patch] nc(1) incorrectly passes telnet option data th o kern/176268 pf [pf] [patch] synproxy not working with route-to o kern/176259 [openbsm][patch] praudit produces invalid XML (1.2-alp o bin/176250 [libc] [patch] euc locale input modifies data o kern/176238 wireless [ath] [patch] Correct buffer size calculation and simp p kern/176233 jilles [libc] [patch] New dup3() implementation for FreeBSD o kern/176201 wireless [net80211] [patch] 11n station includes unrelated ht p o ports/176196 danfe [PATCH] games/quake2-ctf: Set NO_WRKSUBDIR and BUILD_W o ports/176195 [PATCH] games/cre: Set NO_WRKSUBDIR and BUILD_WRKSRC i o kern/176169 [vfs] [patch] system unresponsive for 1min after mount p kern/176144 glebius [kernel] [patch] Bug in m_split() when splitting M_EXT a bin/176136 markj [patch] cp(1) fails to overwrite a symlink pointing to o conf/176098 [periodic] [patch] install 210.backup-aliases uncondit o kern/176097 net [lagg] [patch] lagg/lacp broken when aggregated interf o kern/176093 [libc] [patch] Fix resolver support for '_' character o kern/176054 [kernel] [patch] Correct several typos o kern/176053 xen [xen] [patch] i386: Correct wrong usage of vsnprintf() o kern/176052 [boot] [patch] libi386: Do not unnecessarily cast away o kern/176051 [kernel] [patch] uipc: Simplify and correct debug prin o conf/176049 [patch] 410.status-mfi: new periodic script to monitor o ports/176035 portmgr [PATCH] Improve and correct CRLF handling in ports o kern/176027 net [em] [patch] flow control systcl consistency for em dr o kern/176026 net [tcp] [patch] TCP wrappers caused quite a lot of warni o gnu/175985 [PATCH] Improve send-pr(1) f ports/175944 nemysis [PATCH] x11-wm/obmenu: OptionsNG, changed Makefile, De o bin/175943 smh [PATCH] Add trim capability to gpart(8) o ports/175929 pclin [PATCH] archivers/librtfcomp, archivers/py-librtfcomp: f ports/175888 pclin [PATCH] net/libtrace: update to 3.0.16 o kern/175852 net [amd64] [patch] in_cksum_hdr() behaves differently on f ports/175813 [patch] mail/dovecot2 doesn't detect libstemmer or ext o bin/175799 [patch] Adding more tools to be used by operator group o ports/175783 pgsql [PATCH] databases/postgresql92-server: Add ${PTHREAD_L p kern/175759 glebius [headers] [patch] Correct data types for fields of str o kern/175757 xen [xen] [patch] xen pvhvm looses keyboard input from VNC o ports/175747 portmgr [patch][bsd.options.mk]: activate DEBUG o kern/175674 [libc] [patch] sem_open() should use O_EXLOCK with ope o ports/175647 itetcu [PATCH] mail/dspam-devel: [SUMMARIZE CHANGES] o usb/175599 usb [usbdevs][patch]Liebert UPS PSI1000 being assigned uhi o ports/175561 bapt [patch] [bsd.pkgng.mk] Enhancement to avoid pkgng "/bi o bin/175556 [PATCH] moused(8) virtual scrolling on alternate butto p kern/175530 melifaro [ipfw] [patch] lost dynamic IPFW rule for TCP session o kern/175514 des [patch] Support PKI in libfetch for HTTP over SSL (htt o bin/175425 [patch] kbdcontrol(1) printout about kbdmux isn't info o ports/175411 vbox [PATCH] emulators/virtualbox-ose 4.2.6: popcnt bug o conf/175394 [termcap] [patch] Suggested addition to termcap databa f ports/175359 loader [PATCH] finance/openerp-server: bump up version to 6.0 f ports/175358 loader [PATCH] finance/openerp-web: update to 6.0.4 o ports/175344 sunpoet [PATCH] www/pecl-APC: update to 3.1.14 o conf/175311 rc [patch] add "dump" fs type support to rc.d/dumpon o bin/175293 [patch] mtree(1): mtree "-u" option doesn't return err o kern/175260 adrian [asmc] [patch] add support for Macbook 3.1 o bin/175213 markj [patch] bsdgrep(1) segfaults upon malicious input f ports/175087 haskell [PATCH] lang/ghc: build fails if dblatex is installed o conf/175079 rc [rc.subr] [patch] rc.subr poorly handles recursive run o bin/174974 [patch] bsnmpd(8): bsnmpd SNMPv3 engine discovery is b a docs/174966 eadler [patch] Bug in chflags(2) man page o kern/174959 net [net] [patch] rnh_walktree_from visits spurious nodes o kern/174958 net [net] [patch] rnh_walktree_from makes unreasonable ass o conf/174937 [termcap] [patch] vt520's termcap entry lacks sc capab o bin/174905 [patch] make cron(8) honor rfc821, rfc5321, rfc2076, r o kern/174851 net [bxe] [patch] UDP checksum offload is wrong in bxe dri o kern/174850 net [bxe] [patch] bxe driver does not receive multicasts o kern/174849 net [bxe] [patch] bxe driver can hang kernel when reset o kern/174848 [kernel] [patch] ps(1): ps -H option does not work wit p bin/174831 pjd [PATCH] geli(8) segfaults with the new locked memory l o bin/174816 [patch] nsupdate(1): nsupdate -l doesn't work when nam o usb/174814 usb [PATCH] support for MiFi 2200 o ports/174775 autotools [PATCH] devel/autoconf-wrapper: Fixed make reinstall f ports/174764 [patch] upgrade databases/postgis to 1.5.8 (fixes comp o bin/174715 [patch] calendar(1): define Content-Type / charset whe o kern/174684 [tws] [patch] 3dm2 (or smartctl) triggers a kernel pan o bin/174641 jasone [patch] jemalloc enhancement: allow MI request for min o ports/174624 sobomax [patch] Improving audio/flite o ports/174561 [patch] upgrade devel/avr-binutils from 2.20.1 to 2.22 o ports/174560 [patch] upgrade devel/avr-gcc from 4.5.1 to 4.6.2 o ports/174559 [patch] add vendor patchset to devel/avr-libc o ports/174513 philip [PATCH] www/py-recaptcha: update to 1.0.6 o arm/174461 arm [patch] Fix off-by-one in arm9/arm10 cache maintenance o kern/174441 [psm] [patch] Enable detection of Synaptics touchpad f o kern/174440 [patch][syscons] panic: mutex Giant not owned at kern/ o ports/174429 office [patch] add depends to editors/openoffice-3 o conf/174422 [newvers.sh] [patch] SYSDIR set to wrong directory o kern/174388 [patch] 9.1-RELEASE build world problem with yyparser. f ports/174303 [PATCH] Update devel/libgta to version 1.0.4 o ports/174290 swills [patch] emulators/open-vm-tools: fix compilation after o kern/174277 [ata] [patch] ata_attach() panic's on disabled disk o conf/174225 hrs [network.subr] [patch] add support for ipv6_addrs_IF s o bin/174214 [ofed] [patch] OFED userspace fails to build with clan o bin/174072 smh [patch] mptutil(8): capture cam related errors o conf/174071 [build] [patch] optimize SUBDIR_OVERRIDE in Makefile.i o conf/174070 re [build] [patch] Allow RELEASE_TARGETS to be user defin o ports/174069 nemysis [PATCH] misc/explosions: OptionsNG, added categories, o ports/174057 nemysis [PATCH] misc/cmatrix: OptionsNG, added license, mtx.pc o conf/174054 [periodic.subr] [patch] enhance periodic to work simil o conf/174052 [build] [patch] libssh should not depend upon gssapi l o conf/174051 [build] [patch] Make tcsh compilation optional at top- o conf/174050 [bsd.own.mk] [patch] move MK_CLANG_EXTRAS line further o kern/174048 [modules] [patch] Fix inconsistent ixgbe(4) KLD name p bin/174046 antoine [patch] bsdinstall(8): add missing DPADD definitions o kern/174033 hrs [patch] prune unused net.inet6 sysctls o kern/174032 hrs [patch] better document netinet6 sysctls and formattin o bin/174028 [patch] Fix some warnings with fsck_ffs(8) o ports/174022 nemysis [PATCH] games/gnurobots: Added OptionsNG, license, des o ports/174015 nemysis [PATCH] finance/venice: update to 0.751beta, take main o bin/173973 rpaulo [patch] 'not function' for user display for top(1) o kern/173932 [boot] [patch] Fix compilation errors when -Werror spe p bin/173924 jh [patch] nvi(1): import upstream nvi -Wshadow O_DIRECTO o kern/173898 wireless [iwn] [patch] iwn(4) DOES support 6235 chip. o ports/173880 nemysis [PATCH] games/pipenightdreams: Added Portdoss, Desktop o ports/173876 nemysis [PATCH] games/gtkballs: Added License, OptionsNG, Desk o ports/173875 nemysis [PATCH] games/cuyo: update to 2.0.0,1, Added License, o ports/173873 nemysis [PATCH] games/barrage: Added license, OptionsNG, Portd o ports/173773 sem [PATCH] dns/unbound: Security fix: avoid storing PID f o bin/173744 hrs [PATCH] rtsold usage message contains non-sensical -a o ports/173740 mm [PATCH] devel/libevent2: OPTIONSNG & trim Makefile hea o ports/173730 dhn [PATCH] Added rc.d script for net/vnstat port o bin/173728 [patch] add set baud rate support to telnet(1) o conf/173614 [patch] /etc/periodic/daily/404.status.zfs wrong f ports/173612 mi [patch] graphics/libfpx o bin/173589 [PATCH] usr.sbin/pkg_install/add o kern/173584 np [PATCH] [cxgbe] Add hw.cxgbe.force_firmware_install tu o ports/173542 nemysis [PATCH] graphics/fracplanet: take maintainership, Make o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY f ports/173489 [PATCH] databases/mysqltuner: [SUMMARIZE CHANGES] o kern/173478 andre [netinet] [patch] icmp forward bandwithlimit o kern/173477 [kernel] [patch] mpath bugfixes o conf/173471 [patch] can't set sysctls from /etc/sysctl.conf for OI o bin/173454 [patch] service(8) does not respect /etc/rc.conf.d/nam o docs/173448 keramida [patch] ftw.3 manual page example addition o kern/173444 andre [socket] [patch] IPV6_USE_MIN_MTU and TCP is broken o stand/173421 standards [libc] [patch] strptime() accepts formats that should o ports/173368 nemysis [PATCH] games/glmaze: OptionsNG, changed Makefile, add o ports/173352 nemysis [PATCH] games/gtkatlantic: OptionsNG, changed Makefile o ports/173351 nemysis [PATCH] games/4stattack: OptionsNG, Makefile simplifie o ports/173350 nemysis [PATCH] games/ppracer: OptionsNG, Makefile changed, ta o ports/173335 nemysis [PATCH] games/xarchon: OptionsNG, changed Makefile, pk p bin/173332 ian [patch] watchdogd wires over 10MB of memory after r239 o kern/173322 [patch] Inline atomic operations in modules o bin/173308 [patch] Support "make universe" with read-only src tre o bin/173301 sysinstall [patch] bsdinstall(8): default to SU instead of SU+J o kern/173234 smh [zfs] [patch] Allow filtering of properties on zfs rec o kern/173201 net [ixgbe] [patch] Missing / broken ixgbe sysctl's and tu o ports/173184 nemysis [PATCH] games/abe: Makefile changed, removed pkg-plist o bin/173153 rc [rc.d] [patch] $netwait_ip should be more parallel o bin/173118 smh [patch] Add EDNS Client Subnet support to BIND dig o bin/173114 smh [patch] truss(1): Add Linux socket call decoding to tr o ports/173097 cy [patch] editors/xmlcopyeditor XML parser option o bin/173041 [patch] mailx(1) can be fooled to join messages o ports/173038 swills [patch] emulators/open-vm-tools: fix signage bugs with o misc/173031 [build] [patch] pass through install as INSTALL when b p kern/173004 glebius [netinet] [patch] Incorrect IP checksums when forwardi o kern/173002 net [patch] data type size problem in if_spppsubr.c o kern/172977 [aic7xx] [patch] aic7xxx: Mark stop() function as nore o ports/172951 gavin [PATCH] irc/tircd: update to 0.21.2 o conf/172945 [mtree] [patch] de_AT.ISO_8859-15 missing from src/etc o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o bin/172888 pf [patch] authpf(8) feature enhancement o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o ports/172802 sunpoet [patch] sysutils/py-psutil: get_swap_mem() returns gar o kern/172675 net [netinet] [patch] sysctl_tcp_hc_list (net.inet.tcp.hos o ports/172660 wen [patch] science/libkml: Build error when swig is insta o kern/172632 [headers] [patch] Unused structure in netconfig.h o docs/172626 doc [PATCH] modify the community/* pages to look more plea o kern/172599 cy [ipfilter] [patch] Null function pointer in ipfilter o kern/172569 benl [openssl] [patch] Fix div-by-zero in openssl o bin/172534 [patch] FICL - correct handling of bare comment lines o conf/172532 rc [rc] [patch] service routing restart always fails p bin/172529 dteske [patch] Non-default boot_verbose=YES in loader.conf(5) o bin/172523 [patch] rpc.lockd(8): Check value of res->ai_family f ports/172482 edwin [PATCH] games/bomberclone: update to 0.11.9, Makefile o ports/172392 portmgr [patch] bsd.port.mk Use native unzip for zip archives f ports/172359 kde [PATCH] editors/calligra: Fix build with clang++ -stdl o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o kern/172301 [libstand] [patch] add CRC32 feature to FreeBSD's boot o kern/172279 [openbsm] [patch] OpenBSM-21/openbsm/libbsm/bsm_token. a ports/172275 portmgr [PATCH] [exp-run] devel/libtool: avoid use of -nostdli f ports/172141 nemysis [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, o kern/172113 net [panic] [e1000] [patch] 9.1-RC1/amd64 panices in igb(4 o ports/172110 pgsql databases/postgresql92-server change periodic script [ o ports/172108 swills [PATCH] graphics/ilmbase: libIlmThread is not linked w o ports/172083 doceng print/ghostscript9 configurable dependency for graphic o ports/172079 portmgr [patch] bsd.port.mk: allow using base readline on 10.0 o ports/171888 multimedia [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 f ports/171886 [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] o ports/171852 ale [PATCH] databases/mysql55-server: add support for mult o kern/171811 [patch] rctl(8) cputime is too high o ports/171801 [patch] www/sams: Problem with creating MySQL database o ports/171798 nemysis [PATCH] textproc/sablotron: MASTER_SITES, CFLAGS, Docu p bin/171779 [patch] passwd(1): make option NO_FSCHG incomplete o kern/171777 [ncurses] [patch] Enable assert()s in ncurses o kern/171746 [puc] [patch] Add support for MosChip MCS9901 based Qu o bin/171744 hiren [PATCH] Fix wake(8) command not sending proper WOL pac p usb/171721 hselasky [patch] usb_quirk(4), ums(4): add UQ_UMS_IGNORE quirk o ports/171621 portmgr [PATCH] bsd.port.mk; allow Real Names in MAINTAINER li o ports/171542 mm [PATCH] multimedia/x264: Remove PGO as default OPTION f ports/171539 [patch] net-mgmt/nrpe2 small fixes o bin/171514 [PATCH] Make man(1) default to use full screen if usin o kern/171410 [coretemp] [patch] add support for Atom E6xx and add t o ports/171372 osa [PATCH] databases/redis: rc script with multiple profi o kern/171360 gnn [patch][dtrace] the fasttrap fork handler recurses on o ports/171246 python [patch] lang/python27: make python curses module work o kern/171228 net [re] [patch] if_re - eeprom write issues p conf/171180 ak [patch] make 460.chkportsum also report missing files o bin/171173 [patch] etherswitchcfg vlangroup IOETHERSWITCHGETPORT o ports/171014 java [patch] Correct java/openjdk6 Dependency Declaration o kern/170949 [vga] [patch] Use DRIVER_MODULE_ORDERED and SI_ORDER_A f ports/170943 crees [PATCH] build mail/spamass-milter with sendmail-sasl o ports/170852 x11 [PATCH] x11-fonts/encodings: encodings.dir includes bo o kern/170834 [psm] [patch] synaptics middle and extended button sup o ports/170784 portmgr [bsd.port.mk] [patch] resolve symlinks in PREFIX on de o i386/170705 i386 [patch] AT realtime clock support routines fail on som o ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o ports/170508 hselasky [PATCH] multimedia/libv4l: Don't link to -lpthread o bin/170447 [patch] mountd(8): correct handling of -n, -h and -p c f bin/170415 mckay [patch] file(1) fails to detect troff (and other file o bin/170413 [patch] mountd(8): correct handling of -alldirs option o kern/170397 wireless [ath] [patch] Uninitialized variables in ah_eeprom_928 o bin/170373 [patch] pam_ssh(8): after FreeBSD-SA-11:09.pam_ssh pat o amd64/170351 amd64 [kernel] [patch] amd64: 64-bit process can't always ge o ports/170343 thierry [PATCH] games/monsterz Version 0.7.1_4 install in wron s docs/170341 gjb [patch] Minor grammatical errors in engine(3) o bin/170320 [PATCH] usr.sbin/adduser/rmuser.sh It remains without o bin/170295 [patch] mountd(8): correct credentials parsing in -map a ports/170289 danfe [patch] use one version for x11/nvidia-driver x11/nvid f bin/170278 eadler [patch] [request] Add --check option to md5(1) o bin/170206 numerics [msun] [patch] complex arcsinh, log, etc. o kern/170200 [crypto] [patch] AES-NI XTS mode performance lower tha o ports/170180 bapt [patch] Mk/bsd.options.mk allow make.conf and command a ports/170179 osa [PATCH] www/rubygem-passenger: Allow both nginx and ap o ports/170175 bf [PATCH] net/mpich2: fix packging with WITHOUT_X11 o kern/170076 [PATCH] lpt: check readiness with predefined macros o kern/170058 [cbb] [patch] cardbus slot is not functioning correctl o gnu/170025 [patch] Typo in libsupc++ Version.map o kern/169954 [umass] [patch] Western Digital My Passport : (da1:uma p kern/169947 jh [md] [patch] System crash via ioctl() on mdctl. o bin/169911 [PATCH] make it possible for yp_mkdb(8) to send YPPROC o gnu/169901 [libsupc++] [patch] Typo in gnu/lib/libsupc++/Version. o ports/169896 emulation [patch] audio/linux-f10-alsa-lib: use OSS plugin by de o kern/169849 [libc] [patch] rsh/rlogin do not use the correct IP ad o kern/169800 [libc] [libfetch] [patch] change a number of system li o usb/169789 usb [u3g] [patch] add support for huawei e3131 o bin/169779 [patch] powerd(8) doesn't honor the -n flag o bin/169773 jilles [patch] sh(1): Resizing causes /bin/sh to repeat edit o bin/169748 sysinstall [patch] bsdinstall(8): when distfile fetch is complete p bin/169723 jilles [patch] find(1) exits with non-zero return code if any o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169709 bcr [patch] porters-handbook de_DE apache section p ports/169693 gnn [PATCH] devel/zookeeper: unbreak build, use standards o misc/169645 [patch] Made OPIE support tunable at kernel level o kern/169630 pf [pf] [patch] pf fragment reassembly of padded (undersi o ports/169561 x11 [patch] x11-toolkits/libXmu: disable specs o ports/169560 x11 [patch] x11/libICE: disable specs o ports/169559 x11 [patch] x11-fonts/fontsproto: disable specs o kern/169539 geom [geom] [patch] fix ability to run gmirror on MSI MegaR o ports/169491 wen [PATCH] math/igraph: update to 0.6 o bin/169471 [patch] pw(8) deletes group "username" on userdel even o bin/169439 [patch] ntpd(8): Stock ntpd segfaults when used with G o kern/169379 gnn [dtrace] [patch] dtrace's timestamp variable is unreli o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o conf/169330 [syscons] [patch] New Syscons Font for Persian Languag p kern/169320 jilles [libc] [patch] Enhancement to allow fopen() to set O_C o ports/169305 brix [patch] Upgrade www/ikiwiki to version 3.20120516 o kern/169302 [libc] [patch] Applied MidnightBSD regex memory consum o ports/169300 bapt [PATCH] bsd.pkgng.mk Allow deinstall as user and make o docs/169158 doc [patch] iasl(8) man page is out of date o bin/169072 [patch] A little change to ifconfig(8) to display CIDR o docs/169056 trhodes [patch] sysctl*(3) cannot fail with EFAULT if name con o bin/169053 [PATCH] argument of pkg_create --prefix option always o conf/169047 rc [rc.subr] [patch] /etc/rc.subr not checking some scrip o bin/168862 [patch] tzname set incorrectly o bin/168844 ed [patch] last(1) doesn't show reboot times with struct o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o stand/168719 jasone [PATCH] It seems consensus is to track unpublished sta f ports/168676 marcus [PATCH] ports-mgmt/portlint: relax PORTVERSION check w o ports/168640 portmgr [PATCH]: prevent checksum mismatches for compiled pyth p bin/168544 rc [patch] [rc]: addswap-mounted swapfiles cause panic on p kern/168520 rodrigc [ng_ubt] [patch] "option VIMAGE" kernel with ng_ubt.ko o misc/168508 [build] [patch] turn off clang extras if WITHOUT_TOOLC o ports/168479 portmgr Mk/bsd.port.mk: [patch] portaudit reports vulnerabilit f ports/168446 edwin [PATCH] net/dhcprelay: Fix for broken init script o kern/168396 benl [build] [patch] src.conf tunables to enable zlib compr o misc/168341 [patch] improve OptionalObsoleteFiles.inc completeness o kern/168315 [libc] [patch] add dirname_r(3); document ENOMEM condi p kern/168294 net [ixgbe] [patch] ixgbe driver compiled in kernel has no o bin/168289 [patch] pkg_install(8): fix memory leaks and potential f ports/168258 sunpoet [PATCH] www/wordpress: russian/wordpress: fileowner ch o ports/168234 office [patch] editors/openoffice-3 fails to build on FreeBSD o ports/168222 bdrewery [bsd.port.mk] [patch] Allowing to specify per-file PAT o kern/168212 [kernel] [patch] some suggested additions for uma_core p kern/168077 davide [netsmb] [patch] SMBFS option causes panic-on-boot wit o kern/167947 net [setfib] [patch] arpresolve checks only the default FI o ports/167903 java [PATCH] java/openjdk6: Fix build failure in 8.3 jail r o docs/167832 [patch] swapon(2) (and elsewhere) refer to non-existen o gnu/167829 gcc(1): [patch] fix cross-building world with TARGET=i o conf/167822 ipfw [ipfw] [patch] start script doesn't load firewall_type f ports/167794 portmgr [patch] Mk/bsd.port.mk: fix .zip in PATCHFILES o bin/167744 [patch] /usr/sbin/adduser: enclose with double quotes: o ports/167601 itetcu [patch] ports-mgmt/tinderbox: Allow masking of PHP use o conf/167566 rc [rc.d] [patch] ipdivert module loading vs. ipfw rc.d o f ports/167530 python [patch] security/py-fail2ban will never ever start wit o docs/167478 hrs [PATCH] misc. updates to the relase notes in current o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre o kern/167325 net [netinet] [patch] sosend sometimes return EINVAL with o ports/167289 itetcu [PATCH] mail/dspam-devel: [SUMMARIZE CHANGES] o ports/167251 wen [PATCH] biology/libsbml: update to 4.3.1 f ports/167229 bland [patch] x11/nvidia-settings: install sample tools (opt o misc/167101 [boot] [patch] FreeBSD 9.0 i386 boot-only image loader o kern/167048 fs [nfs] [patch] RELEASE-9 crash when using ZFS+NULLFS+NF o kern/167018 hiren [hwpmc] [patch] hwpstate0: set freq failed with AMD FX o usb/167001 usb [USB] [PATCH] add support for Smart G2 64MB memory key o bin/166664 [patch] patch devd(8) to note /sbin/devd parses backwa p kern/166642 wireless [ieee80211] [patch] in 802.11n mode for FreeBSD AP, ha o kern/166641 wireless [ieee80211] [patch] mbuf/cluster leak in AP mode in 80 f ports/166608 portmgr [patch] bsd.port.mk: fix unneccessary dependency on ar a kern/166548 eadler [build] [patch] Mismatch in ifdefs can cause problems o ports/166511 wen [PATCH] graphics/mapserver add cairo support o conf/166484 rc [rc] [patch] rc.initdiskless patch for different major o ports/166381 portmgr [patch] bsd.port.mk: COPYTREE_* doesn't respect ${CHMO o kern/166372 cy [patch] [ipfilter] drops UDP packets with zero checksu o conf/166330 doc [rc] [patch] Thin server configuration revision reques o kern/166255 net [net] [patch] It should be possible to disable "promis o bin/166241 sysinstall [patch] Speedup and some improvements of sysinstall(8) o ports/166188 portmgr [PATCH] ports/Makefile use documented sort syntax o bin/166181 [patch] calendar(1): calendar -a does not work o bin/166159 [patch] Fix clang-only build for buildworld. o bin/166130 [patch] man(1): i can not read japanese manual on ja_J o kern/166086 wireless [Patch][ath] Reflect state of rfkill switch in a sysct o bin/166056 [patch][bin] find(1) fails with .: permission denied, o kern/165970 [libc] [patch] strtonum() optimization o ports/165913 ak [patch] x11-wm/vtwm: update to 5.5.0-rc7 o conf/165817 [periodic] [patch] /etc/periodic reports misconfigurat o usb/165815 usb [usbdevs] [patch] add k3772z 3g modem support o ports/165781 avilla [bsd.port.mk] [patch] update font ports management o ports/165720 [PATCH] www/suphp: [Add support for lighttpd] o kern/165710 [libc] [patch] RPC: getnetconfig() and other netconfig o kern/165700 [libstand] [patch] pxeboot discards network mask assig f ports/165673 linimon [patch] sysutils/xfsprogs undefined ref to posix_fadvi o bin/165654 hiren [patch] make pmcannotate(8) work on amd64 p kern/165630 [ndis][panic][patch] IRQL_NOT_GREATER_THAN o kern/165622 net [ndis][panic][patch] Unregistered use of FPU in kernel o kern/165559 [ufs] [patch] ufsmount.h uses the 'export' keyword as f ports/165545 python [patch]: net-mgmt/collectd5 doesn't compile against la o kern/165527 [libc] [patch] setgroupent() does not make file descrp o ports/165450 portmgr [patch] Mk/bsd.port.mk: COPYTREE_* macro enhancements o kern/165428 geom [glabel][patch] Add xfs support to glabel o ports/165419 portmgr [patch] Mk/bsd.port.mk: "make showconfig" to tell whet o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos p stand/165155 jilles [PATCH][bin][standards] xargs does not print diagnosti p kern/164951 adrian [ath] [patch] Problem build of if_ath driver with cert o ports/164855 rm [PATCH] textproc/py-chardet: adjust value of MASTER_SI o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build p kern/164724 gnn [dtrace] [patch] Signal bug in Dtrace o kern/164674 standards [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164618 lx [patch] textproc/scim: building with clang failed o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr o bin/164535 [patch] ps(1) truncates command to screen size even wh o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id f ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak o bin/164302 [patch] mail(1) expands aliases beyond # o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap f bin/164210 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at us f bin/164209 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at li o kern/164206 kientzle [build] [patch] buildworld WITHOUT_OPENSSL stops at li o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o stand/164049 [patch] getconf(1) returns bad value for ULLONG_MAX o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for f kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o kern/163724 wireless [mwl] [patch] NULL check before dereference o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf p kern/163268 jhb [acpi_hp] [patch] fix driver detach in absence of CMI o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS a bin/163219 [patch] man: fix 'zcat: standard input is a terminal - o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o misc/162866 [build] [patch] extract revision from hg in newvers.sh p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o docs/162765 doc [patch] lseek(2) may return successful although no see o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162347 stas [kernel] [patch] remove the extra variable in /sys/lib o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) p kern/161912 jh [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 smh [cam] [patch] cam / ata timeout limited to 2147 due to p kern/161897 ae [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o bin/161807 geom [patch] add option for explicitly specifying metadata o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o bin/161475 [patch] man(1), treat pipe & files w/o slash o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o bin/161401 [patch] have service(8) run scripts with the same reso o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa p ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/161028 [PATCH] service(8) -- Minor improvements o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o misc/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o bin/160834 [patch] grep(1): fixes for POSIX conformance o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o misc/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 melifaro [patch] syslogd(8) receiver buffer sizes set incorrect p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o bin/160295 hrs [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) o bin/160275 rstone [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap a ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159745 [libssh] [patch] Fix improperly specified dependency l a bin/159665 [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i p kern/159612 gnn [dtrace] [patch] walltimestamp and timestamp functions o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/159226 [libedit] [patch] libedit does not always restore its p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o bin/158500 [patch] Add -p to arp(8) to hide permanent entries p kern/158398 geom [headers] [patch] includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/157946 [patch] 'BSM conversion requested for unknown event' g o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 osa [patch] add src to create /usr/share/calendar/calendar o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157316 doc [patch] update devstat(9) man page o docs/157234 [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o kern/156770 melifaro [ipfw] [dummynet] [patch]: performance improvement and o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/156513 scottl [aic7xxx] [patch] missing check of scb. p kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 hiren [kernel] [patch] misleading "maxproc limit exceeded by o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o bin/155374 [patch] grdc(6) timing loop still broken f kern/155370 wxs [libpcap] [patch] description string is broken o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() p arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 geom [patch] gvinum(8) can't be built as part of the kernel o conf/154484 [patch] request for new functionality. jail zfs datase f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152847 koobs [patch] port/buildbot-slave could use a startup script o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o bin/151937 [patch] netstat(1) utility lack support of displaying o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151186 [patch] routed(8) turns RIP off if just one network ca o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o bin/150771 [patch] csup(1) GNUmakefile missing o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 cy [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o kern/149173 fs [patch] [zfs] make OpenSolaris installa o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o gnu/143254 [patch] groff(1) build in base system does not honor P p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o kern/141655 [sio] [patch] Serial Console failure on Dell servers o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o kern/140349 hiren [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/140185 [patch] expand_number(3) does not detect overflow in n o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o kern/139743 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o bin/139601 [patch] make(1): variable substitution for $@ in depen f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 [patch] Change top(1) to display thread IDs o bin/139346 net [patch] arp(8) add option to remove static entries lis a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/138926 cperciva [patch] freebsd-update(8): allow unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138421 fs [ufs] [patch] remove UFS label limitations p conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering f bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o bin/136994 hiren [patch] ifconfig(8) print carp mac address o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 hiren [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 melifaro [patch] ndp(8) ignores -f option o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o kern/135608 [patch] sysctl(8) should be able to handle byte values o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene o docs/135475 [patch] jot(1) manpage and behaviour differ o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 smh [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o arm/134368 arm [new driver] [patch] nslu2_led driver for the LEDs on p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names a kern/134225 [libexec] [patch] Reduce disk write load from save-ent p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] [patch] Adding usb quirk for Sony USB flash dr o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo p kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo p conf/132483 hrs rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o bin/132114 sysinstall [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 cy [ipfilter] [rc.d] [patch] No good way to set ipfilter a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes p bin/130159 brian [patch] ppp(8) fails to correctly set routes o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# p kern/129861 glebius [pf] [patch] Argument names reversed in pf_table.c:_co o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129169 smh [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 [patch] dhclient(8) - security issue o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o bin/127633 edwin [patch] Update top(1) to 3.8b1 o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped p bin/127276 markj [patch] ldd(1) invokes linux yes o bin/127265 [patch] ddb(4): Adding the ddb command set from module o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125922 net [patch] Deadlock in arp(8) o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc a kern/125613 trasz [ufs] [patch] ACL problems with special files o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/124881 [devfs] [patch] [request] Add possibility to check whi o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O f docs/123038 trhodes [patch] update to projects/c99/index.sgml o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw f kern/121660 adrian [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a p kern/121122 melifaro [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user p conf/121064 dteske [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o conf/120406 usb [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c a conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 peterj [dc] [patch] Collect various stats regarding dc(4) int o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 [patch] ndiscvt(8): sort a output format. o bin/118296 [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/118126 fs [nfs] [patch] Poor NFS server write performance o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 ak [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 [patch] camcontrol(8) should be able to leave device s o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS f conf/117935 rc [patch] ppp fails to start at boot because of missing o bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117733 [patch] [request] allow to tee(1) to sockets, descript p bin/117687 stefanf [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o bin/115431 [patch] [request] improvement to split(1): add -B swit o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach p bin/114465 brian [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff f conf/113915 rc [ndis] [patch] ndis wireless driver fails to associate o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o bin/113074 [patch] ppp(8): include for strcasecmp(3) o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112336 [patch] install(1): install -S (safe copy) with -C or o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o kern/110017 [libexec] [patch] serial port console output garbled a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip p kern/106722 melifaro [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does f conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p bin/104921 melifaro [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o kern/104738 net [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc f conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o bin/102793 edwin [patch] [request] top(1): display feature of current C o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap p kern/102471 melifaro [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 cy [ipfilter] [patch] ipfilter drops OOW packets under 6. o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/96346 [modules] [patch] disable build of modules that are al o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o kern/93872 [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID f conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 cy [ipfilter] [patch] wrong behaviour with skip rule insi o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o bin/91299 [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90311 [patch] add "eject" to mt(1) o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89326 [patch] Add pattern matching to login.access(5) a conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so o www/87119 hrs [patch] encode copyright and such symbolically o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o bin/77651 [patch] init(8) can lose shutdown related signals s kern/77195 cy [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/76972 [kernel] [patch] 64-bit integer overflow computing use o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o bin/76362 [patch] sys directory link points to wrong location o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o ports/75464 bapt [patch] bsd.port.mk install default configuration file o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 cy [ipfilter] [patch] Connect src/etc/periodic/security/6 o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [patch] add fam support to inetd.conf o conf/73677 rc [patch] add support for powernow states to power_profi o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o conf/72901 [patch]: dot.profile: prevent printing when doing an s o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s kern/69218 firewire [firewire] [patch] failure: 4.10-BETA and later do not o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( o kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE a bin/63197 [patch] tftp(1) Bus error, core dumped a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o i386/62003 [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s i386/61481 [patch] a mechanism to wire io-channel-check to userla o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60293 net [patch] FreeBSD arp poison patch o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in o kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 www [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken a conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57298 doc [patch] add using compact flash cards info to handbook s bin/57018 [patch] convert growfs(8) to use libufs(3) f conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia p bin/55539 stefanf [patch] Parse fstab(5) with spaces in path names o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o kern/52725 [patch] installincludes for kmods o ports/52706 bdrewery [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) s usb/51958 usb [urio] [patch] update for urio driver o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit o kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46758 [patch] moused(8) enhancements o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45529 [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o kern/44202 [rp] [patch] -stable rp driver does not work with mult o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl a bin/41947 [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login o bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu a bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/37844 [patch] [build] make knob to not install progs with su o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 sysinstall [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) o kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 [patch] tcpd.h lacks prototype for hosts_ctl o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs p bin/30542 mjg [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/26486 [libc] [patch] setnetgrent hangs when netgroup contain s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o kern/19756 [patch] Inability to use linux extended partition (typ s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15168 [patch] Adding tracklist support to fdformat(1) a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts a kern/11024 [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 sysinstall sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o o bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 dteske [patch] Extraneous warning from mv(1) 2035 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 11:12:09 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B29B888E for ; Mon, 19 Aug 2013 11:12:09 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C00626E7 for ; Mon, 19 Aug 2013 11:12:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JBC9Lo010515 for ; Mon, 19 Aug 2013 11:12:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7JB8Hf8007943 for freebsd-bugs@FreeBSD.org; Mon, 19 Aug 2013 11:08:17 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 19 Aug 2013 11:08:17 GMT Message-Id: <201308191108.r7JB8Hf8007943@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 11:12:09 -0000 (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/118912 fs [2tb] disk sizing/geometry problem with large array s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t 7 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148083 scsi [aac] Strange device reporting o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg 2 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/150628 [acd] [ata] burncd(1) can't write to optical drive 1 problem total. Problem reports for tag 'acl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180897 acpi [acpi] ACPI error with MB p8h67 v.1405 o kern/174766 acpi [acpi] Random acpi panic o kern/174504 acpi [ACPI] Suspend/resume broken on Lenovo x220 o kern/171305 acpi [acpi] acpi_tz0: _CRT value is absurd, ignored (256.0C o kern/169862 jkim [acpi] Prevent system sleep once shutdown has been ini o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/152438 hiren [acpi]: patch to acpi_asus(4) to add extra sysctls for o kern/152098 acpi [acpi] Lenovo T61p does not resume o i386/146715 acpi [acpi] Suspend works, resume not on a HP Probook 4510s o kern/145306 acpi [acpi]: Can't change brightness on HP ProBook 4510s o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A o kern/143420 acpi [acpi] ACPI issues with Toshiba o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/105537 hiren [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext 28 problems total. Problem reports for tag 'acpi_hp': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/163268 jhb [acpi_hp] [patch] fix driver detach in absence of CMI 1 problem total. Problem reports for tag 'acpi_ibm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181283 [acpi_ibm] acpi_ibm module is useless on ThinkPad W530 1 problem total. Problem reports for tag 'acpi_thermal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152792 [acpica] [patch] move temperature conversion macros to 1 problem total. Problem reports for tag 'ada': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 2 problems total. Problem reports for tag 'aha': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123674 scsi [ahc] ahc driver dumping s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 3 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/161768 [ahci] [panic] Panics after AHCI timeouts o kern/161248 [ahci] Time out, extremly slow response while copying o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o kern/155628 [ahci] ahci disables dvd device o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume 8 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l 3 problems total. Problem reports for tag 'aic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with 1 problem total. Problem reports for tag 'aic7xx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172977 [aic7xx] [patch] aic7xxx: Mark stop() function as nore 1 problem total. Problem reports for tag 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 1 problem total. Problem reports for tag 'alc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/171520 yongari [alc] alc network driver + tso + vlan does not work. o kern/169064 [alc] does not properly reinitialize when resuming f kern/166909 yongari [alc] NIC alc(4) does not support 1000baseTX 3 problems total. Problem reports for tag 'alq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178830 [alq] [panic] kldload alq then kldunload alq then init 1 problem total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 4 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175852 net [amd64] [patch] in_cksum_hdr() behaves differently on o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f 3 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153303 [amr] amr device driver dont detect logical drive amrd o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 5 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) s kern/75407 net [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 3 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup 1 problem total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in 1 problem total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 [ar] [panic] atacontrol status ar1 causes panic 8 problems total. Problem reports for tag 'ar913x': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165951 mips [ar913x] [ath] DDR flush isn't being done for the WMAC 1 problem total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181289 [arcmsr] "sys/dev/arcmsr" causes page fault o kern/166067 [arcmsr] Areca 1680 Problem When Upgrading from 8.2 to o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 4 problems total. Problem reports for tag 'arge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178319 loos [patch] [arge] arge_stop() doesn't clean the tx ring p o kern/178318 loos [patch] [arge] if_arge/bootp race under some circunsta o kern/177032 mips [arge] arge1 fails to attach on UBNT Routerstation o kern/172968 embedded [arge] probe/attach occasionally fails to find a PHY p kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip 5 problems total. Problem reports for tag 'arm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171096 arm [arm][xscale][ixp]Allow 16bit access on PCI bus 1 problem total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178947 net [arp] arp rejecting not working o kern/168245 net [arp] [regression] Permanent ARP entry not deleted on o kern/168244 net [arp] [regression] Unable to manually remove permanent o kern/166285 net [arp] FreeBSD v8.1 REL p8 arp: unknown hardware addres o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/145300 qingli [arp] ARP table mapping is not refreshed on a MAC addr o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e o conf/23063 net [arp] [patch] for static ARP tables in rc.network 13 problems total. Problem reports for tag 'asmc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175260 adrian [asmc] [patch] add support for Macbook 3.1 1 problem total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 2 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181148 [ata] sas expanders not available in 9.2-RC1 [regressi o kern/180919 [ata] PEXSAT34 4-port PCI Express SATA card not workin o kern/180044 [ata] SATA Controller will not negotiate SATA300 only o kern/179117 mav [ata] ata device fails without option ATA_CAM o kern/179113 mav [ata] ATA DMA does not fall back on systems that misre o kern/178183 [ata] ATAPI CDROM fails to attach correctly with ATA_C o kern/174277 [ata] [patch] ata_attach() panic's on disabled disk o kern/173468 mav [ata] lost WDC hard drive on ICH5 after upgrade [regre o kern/173251 mav [ata] ACHI/ATA_CAM doesn't find any SATA Disk on ICH7 o kern/170675 [ata] ata(4) hangs system, causing data loss o kern/168822 [ata] IDE/ATA 40 wire cable causes read errors after i o kern/165547 [ata] NVIDIA MCP67 AHCI SATA controller timeout o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo o kern/159326 [ata] [panic] kernel panics when accessing spindowned o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o kern/149201 [ata] DVD/CD Drive Error o kern/148675 [ata] [panic] kernel panics - reboots o kern/148361 [ata] [panic] Kernel Panic, With Faulty Drives o kern/147227 [ata] SSD preformance issues o kern/146661 [ata] damage files on ufs on ata pseudo raid when runn o kern/146270 [ata] Divide by zero in ata driver o kern/144930 [ata] SATA DVD Drive is not detected s kern/144770 [ata] hard drive spindown functionality broken? o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o kern/143126 [ata] Data loss on read timeout o kern/142802 [ata] [panic] on removing drive: recursed on non-recur o i386/142421 i386 [ata] optical drives not found o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141653 [ata] [panic] Panic in ata? o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o kern/138537 [ata] [panic] Memory modified after free o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/136356 [ata] SATA / ICH7 problems o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/132252 [ata] No CD/DVD devices found! o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130726 [ata] DMA errors accessing multiple SATA channels f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o kern/130171 [ata] UDMA CF cards do not work with FreeBSD o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/128035 [ata] unexpexted detach of external SATA drive s bin/127918 [ata] [request] [patch] ATA Security support for ataco o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/114213 [ata] optical drive not detected in the 6.x series of s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/104950 [ata] [request] no support for SATA controller Initio o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m s bin/81692 [patch] [ata] atacontrol(8) support for disk APM and a o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 107 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118161 [atapicam] failure message from ATAPI CDROM in the boo o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 6 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148748 [ataraid] Metadata Read Write Inconsistency o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 5 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179847 wireless [ath] [patch] Update regdomain in ath drivers includin o kern/179709 wireless [ath] Atheros 5212 does not work: stuck beacon; resett o kern/179547 wireless [ath] Add AR9485 custom board fixes (CUS198) o kern/179482 wireless [ath] [patch] Fix AR9462 external LNA configuration o kern/179269 wireless [ath] [AR9285] RX antenna diversity is not functioning o kern/179232 wireless [ath] panic in ath o kern/178986 wireless [ath] Change mac address of ath(4) is not reflected wh o kern/178492 wireless [ath] ath0 (AR9287) panic o kern/178491 wireless [ath] ath0 (AR9287) stuck beacon o kern/178477 wireless [ath] missed beacon / soft reset in STA mode results i o kern/178470 wireless [panic][ath] bss vap can and does change o kern/178379 wireless [net80211] [ath] WPA rekey on the STA side fails when o kern/178263 wireless [ath] review the use of ic_freq / ic_ieee / ic_flags / o kern/177847 wireless [ath] With TPC enabled, TX power values aren't clamped o kern/177846 wireless [ath] [net80211] net80211 TX power limit isn't correct o kern/177530 wireless [ath] ath driver isn't 32 bit int clean o kern/176238 wireless [ath] [patch] Correct buffer size calculation and simp o kern/175722 wireless [ath]lot of bad seriesx hwrate in kernel messages o kern/175446 wireless [ath] high volumes of PHY errors lead to BB/MAC hangs o kern/175227 wireless [ath] beacon timers aren't necessarily reprogrammed af o kern/174276 wireless [ath] if_ath memory modified after free o kern/173883 wireless [ath] ath0: unable to attach - pci issue? o kern/173711 wireless [ath] powerd kills ath on the Asus EeePC 1005HA o kern/173336 wireless [ath] Atheros card improper device poweroff handling o o kern/172955 wireless [ath] 11n does not work in adhoc mode o kern/172338 wireless [ath] [net80211] CCMP IV transmit counters are not cor o kern/171598 wireless [ath] TP-Link TL-WN951N W-LAN PCI Adapter 300 MBit stu o kern/171235 wireless [ath] ath loses connection, system freezes on netif re p kern/170904 adrian [ath] ath driver: configure related parameters when ra o kern/170889 wireless [ath] ath driver uses some uninitilized memory o kern/170620 wireless [ath] LOR and deadlock when multiple vaps are used o kern/170605 [ath] 081312 ath logs: ath0: ath_tx_aggr_comp_aggr: A o kern/170513 wireless [ath] ath logs: ath_tx_aggr_comp_aggr: AR5416 bug: o kern/170433 wireless [ath] TX hang after a stuck beacon message with active o kern/170411 wireless [ath] Uninitialized variables in if_ath.c o kern/170397 wireless [ath] [patch] Uninitialized variables in ah_eeprom_928 o kern/170302 wireless [ath] 802.11n frames are not being transmitted with mu o kern/170281 wireless [ath] 802.11n locks up on aggregation setup (ampdutx) o kern/170254 [ath] Atheros 9220 device timeouts. o kern/170098 wireless [ath] [net80211] VAPs (Virtual access points) with Ath o kern/169432 wireless [ath] BAR TX hang when aggregation session is reset du p kern/169362 wireless [ath] AR5416: radar pulse PHY errors sometimes include o kern/169336 wireless [ath] ANI isn't triggering in a busy/noisy environment o kern/169199 wireless [ath] Cannot set up static ip addresses for wireless w o kern/169084 wireless [ath] suspend/resume doesn't cause a rescan; the assoc o kern/168649 [ath] TX frames sometimes occur out of order o kern/168530 wireless [ath] Broken WEP probably p kern/167902 adrian [ath] TX block-ack window holes o kern/167870 wireless [ath] adhoc wifi client does not join an existing IBSS o kern/167834 wireless [ath] kickpcu; 'handled 0 packets' o kern/167491 wireless [ath] TID != hardware queue TID in ath_tx_aggr_comp_ag o kern/167113 wireless [ath] AR5210: "stuck" TX seems to be occuring, without o kern/167080 wireless [ath] channel switch on another VAP break channel setu o kern/166684 wireless [ath] [net80211] mgmtrate/mcastrate isn't updated base p kern/166357 wireless [ath] 802.11n TX stall when the first frame in the BAW o kern/166286 wireless [net80211] [ath] initial switch to HT40 isn't causing p kern/166190 wireless [ath] TX hangs and frames stuck in TX queue o kern/166086 wireless [Patch][ath] Reflect state of rfkill switch in a sysct o kern/165969 wireless [ath] Slower performance in adhoc mode vs Client/AP mo o kern/165966 wireless [ath] ath0: device timeout on SMP machines due to race o kern/165951 mips [ar913x] [ath] DDR flush isn't being done for the WMAC o kern/165895 wireless [ath] overly busy cabq can tie up all tx buffers o kern/165866 wireless [ath] TX hangs, requiring a "scan" to properly reset t o kern/165849 wireless [ath] [hang] network ath driver freeze o kern/165543 wireless [ath] ath0 endless scanning of channels without connec o kern/165475 wireless [ath] operational mode change doesn't poke the underly o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o kern/165212 wireless [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB6 o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c p kern/164951 adrian [ath] [patch] Problem build of if_ath driver with cert o kern/164721 wireless [ath] ath device timeouts o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163318 wireless [ath] ath(4) stops working o kern/163237 wireless [ath] AR5416 as HostAP. Delays among clients when a cl o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o kern/121061 wireless [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach f kern/105348 wireless [ath] ath device stopps TX 122 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 5 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack o usb/88408 usb [axe] axe0 read PHY failed 2 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171739 net [bce] [panic] bce related kernel panic f kern/168217 yongari [bce] Watchdog timeouts with bce(4) on BCM5716 o kern/168183 net [bce] bce driver hang system f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o kern/125389 [ipmi] [bce] IPMI problem with bce 5 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181257 net [bge] bge link status change p kern/180948 yongari [bge] [patch] Fix for BCM57780 LEDs in if_bge.c o kern/177184 hiren [bge] [patch] enable wake on lan o kern/171121 yongari [bge] bge driver not working with BCM5719 (HP Proliant o kern/169676 net [bge] [hang] system hangs, fully or partially after re o kern/169634 yongari [bge] Network unavailable when booting directly to Fre o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work 8 problems total. Problem reports for tag 'bgp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169664 net [bgp] Wrongful replacement of interface connected net 1 problem total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 18 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180722 net [bluetooth] bluetooth takes 30-50 attempts to pair to o bin/178764 [PATCH] [bluetooth] synch __arraycount definition fix 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163985 [boot0] Incorrect operand size in boot0 o kern/159222 [boot0] unusual behavior writing boot0 from single use 2 problems total. Problem reports for tag 'bootinst': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. 7 problems total. Problem reports for tag 'bridge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177618 net [bridge] Problem with bridge firewall with trunk ports 1 problem total. Problem reports for tag 'bsd.cmake.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/176901 kde [bsd.cmake.mk] disable rpath removal 1 problem total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/180365 [bsd.cpu.mk] [patch] Not attach ${_CPUCFLAGS} to CXXFL 1 problem total. Problem reports for tag 'bsd.database.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/174308 [bsd.database.mk] cyrus-sasl-2.1.25_2 will not compile 1 problem total. Problem reports for tag 'bsd.own.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/174050 [bsd.own.mk] [patch] move MK_CLANG_EXTRAS line further 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/180705 portmgr [bsd.port.mk] patching a file with both EXTRA_PATCHES o ports/180030 bapt [bsd.port.mk] [patch] add the OPTIONS{,_}FILE rename t o ports/180005 portmgr [bsd.port.mk] [patch] USE_DOS2UNIX doesn't print out t o ports/178072 portmgr [PATCH] [bsd.port.mk] look for Makefile.local in ${POR o ports/176282 portmgr [bsd.port.mk] [patch] add bsd.owfs.mk o ports/173731 portmgr [bsd.port.mk] Doesn't clean dependency directory if no o ports/173620 portmgr [bsd.port.mk] Recovery of the functionality of CONFLIC o ports/172964 portmgr [bsd.port.mk] USE_GITHUB feature not fully implemented o ports/172741 portmgr [bsd.port.mk] check-build-conflicts checks too early f o ports/170784 portmgr [bsd.port.mk] [patch] resolve symlinks in PREFIX on de o ports/168222 bdrewery [bsd.port.mk] [patch] Allowing to specify per-file PAT o ports/165781 avilla [bsd.port.mk] [patch] update font ports management o ports/165502 portmgr [bsd.port.mk] Proposal patch for fixing TARGET_ARCH us o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise f ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera f ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 swills [bsd.port.mk] [patch] Easier / automatic regression-te o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o ports/138228 bdrewery [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 32 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre 1 problem total. Problem reports for tag 'bsd.sites.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/180548 ohauer [bsd.sites.mk] [patch] - Outdated Apache Master Sites o ports/178447 portmgr [bsd.sites.mk] Fix MASTER_SITE_KERNEL_ORG 2 problems total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181100 wireless [bwi] Turning up bwi0 crashes / deadlocks the kernel o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 2 problems total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178225 [bwn] kernel panic during high network activity o kern/165870 wireless [bwn] bwn driver does not attach on HP Pavilion dv9420 o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 4 problems total. Problem reports for tag 'bxe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180775 net [bxe] if_bxe driver broken with Broadcom BCM57711 card o kern/174851 net [bxe] [patch] UDP checksum offload is wrong in bxe dri o kern/174850 net [bxe] [patch] bxe driver does not receive multicasts o kern/174849 net [bxe] [patch] bxe driver can hang kernel when reset o kern/165526 net [bxe] UDP packets checksum calculation whithin if_bxe 5 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/176417 usb [xhci][cam][umass] kernelpanic while removing plugged o kern/166621 [cam] "CAM status: Unconditionally Re-queue Request" n o kern/165740 scsi [cam] SCSI code must drain callbacks before free o kern/164909 [cam] devfs does not create entries when removable med o kern/161901 smh [cam] [patch] cam / ata timeout limited to 2147 due to o kern/158351 [cam] [patch] missing #includes in f kern/153514 usb [cam] [panic] CAM related panic a usb/143790 usb [boot] [cam] can not boot from usb hdd o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/93872 [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo 14 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad 6 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/153848 bz [carp] [ipv6] backup host can't connect to master host a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro p kern/126714 glebius [carp] CARP interface renaming makes system no longer p kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste p kern/117448 glebius [carp] 6.2 kernel crash [regression] p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o kern/98622 bz [carp] carp with IPv6 broken on 6.1 (regression) 13 problems total. Problem reports for tag 'cas': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/157932 gavin [cas] loading CAS4 at boot hangs system 1 problem total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170058 [cbb] [patch] cardbus slot is not functioning correctl o kern/114550 [cbb] Cardbus WiFi card activation problem 2 problems total. Problem reports for tag 'cd': S Tracker Resp. Description -------------------------------------------------------------------------------- s sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from 1 problem total. Problem reports for tag 'cd9660': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored 3 problems total. Problem reports for tag 'cdce': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op 1 problem total. Problem reports for tag 'chroot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174877 [chroot] mountd fails to work inside init_chroot [regr 1 problem total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179932 scsi [ciss] ciss i/o stall problem with HP Bl Gen8 (and HP 1 problem total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162944 fs [coda] Coda file system module looks broken in 9.0 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171410 [coretemp] [patch] add support for Atom E6xx and add t o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 2 problems total. Problem reports for tag 'cpuctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179523 [cpuctl] [patch] Memory leak/corruption in cpuctl pseu 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180588 [cpufreq] [patch] cpufreq cannot be loaded as kernel m o kern/165381 acpi [cpufreq] powerd(8) eats CPUs for breakfast o kern/146436 [cpufreq] [panic] Panic when changing profile to econo o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/93790 [cpufreq] cpufreq missing frequencies 9 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170200 [crypto] [patch] AES-NI XTS mode performance lower tha o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 [crypto] [patch] AES-192 and AES-256 support for HW-ac o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to 4 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag 'cxgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/173584 np [PATCH] [cxgbe] Add hw.cxgbe.force_firmware_install tu o kern/173516 [cxgbe] Doesn't detect link-up after driver is first l 2 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/166866 [build] [cy] cy(4) driver breaks kernel build in 8.3 o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 2 problems total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/179033 jhb [dc] dc ethernet driver seems to have issues with some o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o kern/119205 peterj [dc] [patch] Collect various stats regarding dc(4) int s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/82070 [dc] Not all dc(4) devices can be used: MII without an o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite 8 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133495 [de] interface not properly initialized on boot o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern 2 problems total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 usb [devd] [patch] Handle newly attached pcm devices (eg. 1 problem total. Problem reports for tag 'devd.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/157903 [devd.conf] [patch] automated kldload for USB class de 1 problem total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/122838 jh [devfs] devfs doesn't handle complex paths (like zvol/ 2 problems total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo o kern/83254 [digi] driver can't init Digiboard PC/4e o kern/82227 [digi] Xem: chained concentrators not recognised o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection 6 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i 1 problem total. Problem reports for tag 'dri': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/167468 [drm] drm locking Xorg in loop o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel 4 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/177706 gnn [dtrace] [patch] DTrace sched:::off-cpu args[0] should o kern/175705 [dtrace] "panic: process not held" when invoking userl o bin/173484 gnn [feature request] [dtrace] the current implementation p bin/171678 gnn [dtrace] dtrace -h doesn't work when io.d is installed o kern/171360 gnn [patch][dtrace] the fasttrap fork handler recurses on o kern/169657 gnn [dtrace] name clash between dtrace and geom.h o kern/169379 gnn [dtrace] [patch] dtrace's timestamp variable is unreli o kern/169350 gnn [dtrace] Extraneous output when tracing writes with ou o kern/169080 gnn [dtrace] DTrace broken for simple user land program f kern/166928 gnn [dtrace] fbt provider does not destroy probes when mod o kern/166927 gnn [dtrace] [modules] Kernel panics if you unload a kld m o kern/166926 gnn [dtrace] Individual probes cannot be destroyed, only p o kern/166925 gnn [dtrace] lockstat provider only works in files that #i o kern/166924 gnn [dtrace] deferred DTrace probes never match if executa f kern/166923 gnn [dtrace] kernel trap 12 with interrupts disabled (not o kern/166922 gnn [dtrace] Wildcarded dtrace probe names not always work o kern/166919 gnn [dtrace] If dtrace(1) crashes while attached to a proc o kern/166918 gnn [dtrace] USDT probes not cleaned up when process exits o kern/165479 rstone [dtrace] [lor] LOR in Userland Dtrace(fasttrap_provs.f p kern/164724 gnn [dtrace] [patch] Signal bug in Dtrace o kern/160307 [dtrace] dtrace -lv can not identify the args of the p kern/159612 gnn [dtrace] [patch] walltimestamp and timestamp functions p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong f kern/159013 gnn [dtrace] kldunload dtraceall crashing if userland dtra 24 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171711 net [dummynet] [panic] Kernel panic in dummynet o kern/162558 net [dummynet] [panic] seldom dummynet panics f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o kern/156770 melifaro [ipfw] [dummynet] [patch]: performance improvement and o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 13 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172113 net [panic] [e1000] [patch] 9.1-RC1/amd64 panices in igb(4 o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 2 problems total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 1 problem total. Problem reports for tag 'editline': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi 1 problem total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'ehci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/176913 usb [ehci] High interrupt load with ehci o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci 8 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181016 jfv [em] freebsd 9.2 beta 2 64 bit cannot detect e1000e ni o kern/176027 net [em] [patch] flow control systcl consistency for em dr o kern/173137 net [em] em(4) unable to run at gigabit with 9.1-RC2 o kern/168246 net [em] Multiple em(4) not working with qemu o kern/167500 net [em] [panic] Kernel panics in em driver o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/159294 net [em] em watchdog timeouts o kern/158635 net [em] TSO breaks BPF packet captures with em driver o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o kern/153308 net [em] em interface use 100% cpu o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o kern/150516 jfv [em] e1000 receive queue handling problem o kern/148004 jfv [em] Inconsistent networking with em driver on FreeBSD o kern/147989 jfv [em] em Receive errors / CRC Errors / Alignment Errors p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/143573 jfv [em] em(4) NIC crashes intermittently o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 f kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/140778 jfv [em] randomly panic in vlan/em o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122058 jfv [em] [panic] Panic on em1: taskq o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/115930 jfv [em] Dell nic enumeration problem o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/101226 jfv [em] Access to IPMI module is lost when the em driver 53 problems total. Problem reports for tag 'emu10kx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174796 multimedia [emu10kx]: Audigy ZS driver produce strange noises 1 problem total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 [endian] [patch] Patch for bswap64(9) operation on IA 1 problem total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151690 net [ep] network connectivity won't work until dhclient is 1 problem total. Problem reports for tag 'epair': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/176671 net [epair] MAC address for epair device not unique o kern/175236 net [epair] [gif] epair and gif Devices On Bridge s kern/171508 net [epair] [request] Add the ability to name epair device 3 problems total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165303 [est] CPU freq changing not supported on VIA VE-900 (N o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 2 problems total. Problem reports for tag 'eventtimers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169663 [eventtimers] HP DL365 G5 hangs on boot o kern/166549 [eventtimers] Clock stops ticking in some cases with n 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 1 problem total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/181035 portmgr [exp-run] Update libusb-1.0.pc to claim to be libusb 1 o ports/180727 bapt [exp-run] Testing pkgconfig files for base system libu o ports/180010 girgen [exp-run] databases/postgresql92 as default o ports/178096 portmgr [exp-run] LEGAL variable to capture generic issues o ports/172608 portmgr [exp-run] conditional including of bsd.perl.mk inside s ports/172332 portmgr [exp-run] Expanding stdio's internal file descriptors a ports/172275 portmgr [PATCH] [exp-run] devel/libtool: avoid use of -nostdli o ports/171672 bdrewery [bsd.port.mk / bsd.pkgng.mk][exp-run] Make 'do-package o ports/170219 portmgr [exp-run] lang/perl5.14: get rid of USE_PERL s ports/168671 portmgr [exp-run] Make devel/cmake and devel/cmake-gui not use o ports/168292 portmgr [exp-run] test a change to system opensslv.h header o ports/165609 portmgr [exp-run] DISTNAME= PORTNAME-PORTVERSION is not needed o ports/165605 pgollucci [exp-run]: remove ports broken with < perl 5.12, clean f ports/165594 pgollucci [exp-run], then [repo-copy], then [NEW PORT] lang/perl a ports/164896 portmgr [exp-run] add support for testing perl modules o ports/162948 bapt [exp-run] 10.0 exp-run without libreadline in base sys o ports/138228 bdrewery [bsd.port.mk] [exp-run] New opt-in knob to compile por o ports/130677 portmgr [exp-run] bsd.port.mk: Centralize handling of CPPFLAGS 18 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems 3 problems total. Problem reports for tag 'faq': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox 1 problem total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/174711 [fdc] Floppy drive 5.25" 360Kb bug. o kern/119618 [fdc] Double Density Disks do not work correctly o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/79944 [fdc] virtual floppy controller of Virtual PC does not s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o kern/74827 [fdc] Problem writing data to floppies o kern/73961 [fdc] floppy disk drive performance problem [new in 5. 10 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165950 fs [ffs] SU+J and fsck problem o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 7 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170203 [fifo] piped dd's don't behave sanely when dealing wit o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/176596 ae [firewire] [ip6] Crash with IPv6 and Firewire o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause o kern/129261 firewire [firewire] Kernel crash on boot with disconnected fire p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t o kern/113785 firewire [firewire] dropouts when playing DV on firewire o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w s kern/69218 firewire [firewire] [patch] failure: 4.10-BETA and later do not 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/148018 net [flowtable] flowtable crashes on ia64 f kern/146792 net [flowtable] flowcleaner 100% cpu's core load f kern/144917 net [flowtable] [panic] flowtable crashes system [regressi 3 problems total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151629 fs [fs] [patch] Skip empty directory entries during name o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, 2 problems total. Problem reports for tag 'fuse': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181082 fs [fuse] [ntfs] Write to mounted NTFS filesystem using F 1 problem total. Problem reports for tag 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/167688 fs [fusefs] Incorrect signal handling with direct_io o kern/167362 gnn [fusefs] Reproduceble Page Fault when running rsync ov o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 3 problems total. Problem reports for tag 'fusefs-ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r 1 problem total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir 1 problem total. Problem reports for tag 'fwohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/73171 imp [fwohci] fwohci driver stating cardbus firewire card h 2 problems total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170081 net [fxp] pf/nat/jails not working if checksum offloading o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC 3 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo o kern/66162 [gbde] gbde destroy error 3 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179889 geom [geli] geli stopped work after updating RELEASE 9.* so f kern/167562 pjd [geli] geli cannot use gpt labels in loader.conf a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o kern/162010 geom [geli] panic: Provider's error should be set (error=0) f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160409 geom [geli] failed to attach provider o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter o arm/154227 arm [geli] using GELI leads to panic on ARM p kern/152609 pjd [geli] geli onetime on gzero panics o kern/146429 pjd [geli][panic][patch] kernel panic if geli autodetach i o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120066 [geli] geli boot password input fail when using serial o kern/117188 [geli] System crashes/reboots on access to file on GEL o kern/115856 geom [geli] ZFS thought it was degraded when it should have o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE 19 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178359 geom [geom] [patch] geom_eli: support external metadata o kern/176744 geom [geom] [patch] BIO_FLUSH not recorded by devstats o docs/175123 doc [geom] gpart list/status isn't documented in usage sec o kern/170038 geom [geom] geom_mirror always starts degraded after reboot o kern/169539 geom [geom] [patch] fix ability to run gmirror on MSI MegaR f kern/165745 geom [geom] geom_multipath page fault on removed drive o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o kern/162690 geom [geom] gpart label changes only take effect after a re o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s o kern/161752 geom [geom] glabel(8) doesn't get gpt label change f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/158197 geom [geom] geom_cache with size>1000 leads to panics o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o kern/154226 geom [geom] GEOM label does not change when you modify them o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/145818 geom [geom] geom_stat_open showing cached information for n o kern/145042 geom [geom] System stops booting after printing message "GE o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o kern/140352 geom [geom] gjournal + glabel not working f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o kern/131353 geom [geom] gjournal(8) kernel lock f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/129674 geom [geom] gjournal root did not mount on boot o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/113837 geom [geom] unable to access 1024 sector size storage o kern/113419 geom [geom] geom fox multipathing not failing back o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( 50 problems total. Problem reports for tag 'geom_part': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa 5 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175236 net [epair] [gif] epair and gif Devices On Bridge o kern/174602 net [gif] [ipsec] traceroute issue on gif tunnel with ipse o kern/173871 net [gif] process of 'ifconfig gif0 create hangs' when if_ o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o kern/121274 cy [ipfilter] [gif] Panic in ether_input() with different f kern/108197 net [panic] [gif] [ip6] if_delmulti reference counting pan o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/95532 [gif] if_gif has artificial limitations 16 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass 6 problems total. Problem reports for tag 'glabel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165428 geom [glabel][patch] Add xfs support to glabel 1 problem total. Problem reports for tag 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/166508 [glxsb] AES 256 encryption does not work with glxsb dr o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 2 problems total. Problem reports for tag 'gmirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147667 geom [gmirror] Booting with one component of a gmirror, the o kern/134922 ae [gmirror] [panic] kernel panic when use fdisk on disk o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir 3 problems total. Problem reports for tag 'gnats': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca 3 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177832 mips [mips] [gpio] [patch] GPIO and RF LED do not function o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 2 problems total. Problem reports for tag 'gpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/175086 [gpt] 9.1 does not boot from GPT partition that can ha o kern/170945 fs [gpt] disk layout not portable between direct connect 2 problems total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/166462 net [gre] gre(4) when using a tunnel source address from c o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o conf/111557 [gre] link1 flag doesn't work as intended when specifi 7 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/181353 wblock [handbook] Remove KDE3 o docs/181142 doc [handbook] bad links for xfce4 desktop environment o docs/180658 doc [handbook] add detail to pkgng part of the handbook o docs/180493 doc [handbook] Single-user mode console confusion o docs/179560 doc [handbook] brazilian portuguese translation to "DTrace o docs/179552 doc [handbook] brazilian portuguese translation to "Instal o docs/179541 doc [handbook] brazilian portuguese translation to "Obtain f docs/178049 crees [handbook] PKGNG information misleading o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o docs/176127 doc [handbook] add information about all missing mailing l o docs/176015 doc [handbook] wrong order in docs for major upgrade o docs/174712 issyl0 [handbook] Some cvsup servers for Ukraine seems inacce o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/163879 doc [handbook] handbook does not say about how to force to o docs/162433 gavin [handbook] QEMU instructions for FreeBSD guests o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 o docs/160460 doc [handbook] Network setup guide suggestion o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/157908 doc [handbook] Description of post-install should include f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o docs/148984 doc [handbook] Mistake in section 16.15.4 of the handbook o docs/146521 doc [handbook] Update IPv6 system handbook section to ment o docs/145631 blackend [handbook] References to ttyd0 serial devices in handb o docs/144515 doc [handbook] Expand handbook Table of contents o docs/143416 doc [handbook] IPFW handbook page issues a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev o docs/140082 bland [handbook] handbook/jails: russian translation is miss o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o docs/136666 doc [handbook] Configure serial port for remote kernel deb o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/121585 doc [handbook] Wrong multicast specification o docs/59240 blackend [patch] [handbook] update: linux MATLAB 35 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180876 fs [zfs] [hast] ZFS with trim,bio_flush or bio_delete loc o kern/177445 fs [hast] HAST panic o kern/158098 pjd [hast] problem with copying data on hast-device 3 problems total. Problem reports for tag 'hdac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/152500 multimedia [hdac] play interrupt timeout, channel dead 2 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180628 [headers] Make 32-bit i386 compilation work properly o o kern/177902 [headers] [request] atomic.h - vital functions missing o kern/176628 [headers] [patch] use safer way of definint __WORDSIZE o kern/176603 [headers] [patch] Remove redundant and duplicate #incl o kern/176300 [headers] __CTASSERT() missing from p kern/175759 glebius [headers] [patch] Correct data types for fields of str o kern/172632 [headers] [patch] Unused structure in netconfig.h o kern/172390 [headers] __res_state_ext missing from system headers o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o kern/162952 [headers] Problems including netinet/tcp_var.h o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c p kern/158398 geom [headers] [patch] includes o kern/156637 [headers] [patch] sys/types.h can't be included when _ o kern/155429 [headers] including malloc.h should not abort compile. o kern/149960 [headers] syntax error /usr/include/machine/endian.h a kern/149012 gavin [headers] [patch] please replace '#include -interfac s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti f kern/108197 net [panic] [gif] [ip6] if_delmulti reference counting pan o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o kern/83778 [ip6] [patch] JPv6 cannot use Jumbo Frames o kern/77341 net [ip6] problems with IPV6 implementation 42 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if 1 problem total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178116 cy [ipfilter] [panic] Kernel panic: general protection fa o kern/176992 cy [ipfilter] panic from ipfilter/ipnat when VIMAGE optio o kern/172599 cy [ipfilter] [patch] Null function pointer in ipfilter o kern/166940 cy [ipfilter] [panic] Double fault in kern 8.2 o kern/166372 cy [patch] [ipfilter] drops UDP packets with zero checksu o kern/165963 cy [panic] [ipfilter] ipfilter/nat NULL pointer deference o kern/162926 cy [ipfilter] Infinite loop in ipfilter with fragmented I o kern/149937 cy [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 cy [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 cy [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 cy [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/132554 cy [ipfilter] There is no ippool start script/ipfilter ma o kern/131601 cy [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o conf/130555 cy [ipfilter] [rc.d] [patch] No good way to set ipfilter o kern/127233 cy [ipfilter]: ipnat + ipfilter source routing not handli o kern/123796 cy [ipfilter] FreeBSD 6.1+VPN+ipnat+ipf: port mapping doe o kern/121274 cy [ipfilter] [gif] Panic in ether_input() with different o kern/101948 cy [ipfilter] [panic] Kernel Panic Trap No 12 Page Fault o kern/98978 cy [ipfilter] [patch] ipfilter drops OOW packets under 6. o kern/91908 cy [ipfilter] loading ipl.ko to the kernel compiled with s kern/91777 cy [ipfilter] [patch] wrong behaviour with skip rule insi o kern/87521 cy [ipfilter] [panic] using ipfilter "auth" keyword leads o kern/86103 cy [ipfilter] Illegal NAT Traversal in IPFilter o kern/85809 cy [ipfilter] panic: mutex "ipf state entry" already init s kern/82806 cy [ipfilter] ipnat doesn't handle out of order fragments o kern/79988 cy [ipfilter] [panic] page faults while in kernel mode s kern/77195 cy [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o conf/74213 cy [ipfilter] [patch] Connect src/etc/periodic/security/6 o kern/72210 cy [ipfilter] ipnat problem with IP Fastforward enabled o kern/70904 cy [ipfilter] ipfilter ipnat problem with h323 proxy supp o kern/48741 cy [ipfilter] ipnat corrupts packets on gre interface wit s conf/46913 cy [ipfilter] denied packets of security run output conta o kern/34665 cy [ipfilter] [hang] ipfilter rcmd proxy "hangs". o kern/27474 cy [ipfilter] [ppp] Interactive use of user PPP and ipfil s kern/17109 cy [ipfilter] fastroute crashes for lo0 udp 35 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180731 ipfw [ipfw] problem with displaying 255.255.255.255 address o kern/180729 ipfw [ipfw] ipfw nat show empty output o kern/178482 ipfw [ipfw] logging problem from vnet jail o kern/178480 ipfw [ipfw] dynamically loaded ipfw with a vimage kernel do o kern/178317 ipfw [ipfw] ipfw options need to specifed in specific order o kern/177948 ipfw [ipfw] ipfw fails to parse port ranges (p1-p2) for udp o kern/176503 ipfw [ipfw] ipfw layer2 problem p kern/175909 melifaro [ipfw] FreeBSD 9.1 ipfw lookup dst-port regression [re p kern/175530 melifaro [ipfw] [patch] lost dynamic IPFW rule for TCP session o kern/170604 [ipfw] ipv6 reass broken o kern/169206 ipfw [ipfw] ipfw does not flush entries in table o conf/167822 ipfw [ipfw] [patch] start script doesn't load firewall_type o kern/166406 ipfw [ipfw] ipfw does not set ALTQ identifier for ipv6 traf o kern/165939 ipfw [ipfw] bug: incomplete firewall rules loaded if tables o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 melifaro [ipfw] [dummynet] [patch]: performance improvement and o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153161 ipfw [ipfw] does not support specifying rules with ICMP cod o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/148928 hrs [ipfw] Problem with loading of ipfw NAT rules during s o kern/148827 ipfw [ipfw] divert broken with in-kernel ipfw o kern/148689 ae [ipfw] antispoof wrongly triggers on link local IPv6 a o kern/148430 ipfw [ipfw] IPFW schedule delete broken. o conf/148137 hrs [ipfw] call order of natd and ipfw startup scripts o kern/148091 ipfw [ipfw] ipfw ipv6 handling broken. f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw f kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o kern/137232 ipfw [ipfw] parser troubles o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o kern/130109 net [ipfw] Can not set fib for packets originated from loc o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't f kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip p kern/121122 melifaro [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table p kern/102471 melifaro [ipfw] [patch] add tos and dscp support o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o bin/83046 ipfw [ipfw] ipfw2 error: "setup" is allowed for icmp, but s o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou p bin/65961 melifaro [ipfw] ipfw2 memory corruption inside add() o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau 61 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121534 net [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 1 problem total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171524 net [ipmi] ipmi driver crashes kernel by reboot or shutdow o kern/169475 [ipmi] IPMI MAX_TIMEOUT is too short o kern/166552 [ipmi] [build] ipmi module doesn't create ipmi device o kern/147855 [ipmi] [patch] kernel panic when IPMI enabled on some o kern/125389 [ipmi] [bce] IPMI problem with bce a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 9 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat 1 problem total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may 1 problem total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/176484 net [ipsec] [enc] [patch] panic: IPsec + enc(4); device na o kern/176167 net [ipsec][lagg] using lagg and ipsec causes immediate pa o kern/174602 net [gif] [ipsec] traceroute issue on gif tunnel with ipse o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o kern/169438 net [ipsec] ipv4-in-ipv6 tunnel mode IPsec does not work o kern/169065 [ipsec] [regression] "netstat -p ipsec -s" is broken o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o kern/147894 net [ipsec] IPv6-in-IPv4 does not work inside an ESP-only o kern/146190 vanhu [ipsec][patch] NAT traversal does not work in transpor o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143208 net [ipsec] [gif] IPSec over gif interface not working o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/129517 net [ipsec] [panic] double fault / stack overflow s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs 31 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165595 wireless [ipw] ipw(4): Can't load firmare for ipw2200bg f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/84861 thompsa [ipw] [patch] still can't get working ipw(4) with adho a kern/82926 thompsa [ipw] ipw(4) doesn't seem to do WPA, also leaves entri 6 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 7 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175670 [iscsi] smartctl fails on SAS disk connected to an Int o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 2 problems total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/159414 geom [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 mjacob [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170573 wireless [iwi] Intel 2200BG iwi NIC hangs with need multicast c o kern/164365 wireless [iwi] iwi0: UP/DOWN in o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/123559 net [iwi] iwi periodically disassociates/associates [regre a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/116185 net [iwi] if_iwi driver leads system to reboot 8 problems total. Problem reports for tag 'iwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180816 wireless [iwl] Intel Centrino Wireless-N 2200 not supported 1 problem total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181132 wireless [iwn] stream calculation is wrong for the Intel 4965 o kern/180094 hiren [iwn] Incorrect id for Intel Centrino Wireless-N 130 o kern/177465 wireless [iwn] 20%-100% packet loss with iwn driver o kern/176104 wireless [iwn] iwn0: iwn_intr: fatal firmware error o kern/175183 wireless [iwn] iwn(4) becomes unresponsive during initial confi o kern/175053 wireless [iwn] iwn firmware error on 9-stable with Ultimate-N 6 o kern/173917 wireless [iwn] wpa-supplicant issues on iwn o kern/173898 wireless [iwn] [patch] iwn(4) DOES support 6235 chip. o kern/169433 bschmidt [iwn] iwn(4) doesn't support 6235 chip. o kern/167828 wireless [iwn] iwn(4) doesn't recover automatically after firmw o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o kern/161293 wireless [iwn] hang at startup when starting network 12 problems total. Problem reports for tag 'ix': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) 1 problem total. Problem reports for tag 'ixgb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172895 net [ixgb] [ixgbe] do not properly determine link-state o kern/132001 [patch] [ixgb] driver update 2 problems total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179824 net [ixgbe] System (9.1-p4) hangs on heavy ixgbe network t o kern/178782 net [ixgbe] 82599EB SFP does not work with passthrough und o kern/177571 jfv [ixgbe] Cannot select media type. o kern/176281 jfv [ixgbe] [patch] Update ixgbe to 2.4.10 (latest officia o kern/173201 net [ixgbe] [patch] Missing / broken ixgbe sysctl's and tu o kern/172895 net [ixgb] [ixgbe] do not properly determine link-state o kern/170267 net [ixgbe] IXGBE_LE32_TO_CPUS is probably an unintentiona p kern/168294 net [ixgbe] [patch] ixgbe driver compiled in kernel has no o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 18 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180916 jail [jail] [regression] jail startup is broken for 8.4 wit o kern/180067 jail [jail] [patch] fix multicast support within jails o kern/176112 jail [jail] [panic] kernel panic when starting jails o kern/176092 jail [jail] [panic] Starting a jail on my releng/9.1 kernel o kern/174902 jail [jail] jail should provide validator for jail names o kern/174104 emaste [jail] security.jail.param does not reflect actual jai o bin/173469 jail [jail] regression: security.jail.sysvipc_allowed=1 no o kern/169751 jail [jail] reading routing information does not work in ja o kern/168678 bz [jail] raw sockets incorrectly choose source address w o kern/159918 jail [jail] inter-jail communication failure o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156111 jail [jail] procstat -b not supported in jail o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules a conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o kern/133265 jail [jail] is there a solution how to run nfs client in ja o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o bin/78763 pjd [patch] [jail] Added jail support to ps(1) o kern/48471 pjd [jail] [patch] [request] private IPC for every jail s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 23 problems total. Problem reports for tag 'jme': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177400 net [jme] JMC25x 1000baseT establishment issues 1 problem total. Problem reports for tag 'joy': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/64588 [joy] [request] Extend joystick driver architecture to 1 problem total. Problem reports for tag 'kbdmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/146793 gavin [kbdmap] [patch] Danish kbdmap for MacBook o conf/72465 [kbdmap] [patch] United States International keyboard 2 problems total. Problem reports for tag 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153459 [kbdmux][patch] add option to specify built-in keymap p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 2 problems total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/151444 [kerberos] Kerberos5 is broken in the base system from o bin/147175 [kerberos] [patch] libhx509.so containes references to o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o bin/4116 [patch] [kerberos] Kerberized login as .root fai 8 problems total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178396 [kernel] [patch] Add jid to kernel log when a process o kern/178252 [kernel] syncer infinite loop [regression] o kern/178103 fs [kernel] [nfs] [patch] Correct support of index files o arm/177685 arm [kernel] [patch] Correct return type and usage of at91 o kern/177319 [kernel] [patch] Add more x86 CPU feature flag definit o kern/176579 hiren [kernel] [patch] add td_name to maxproc limit warning o kern/176420 net [kernel] [patch] incorrect errno for LOCAL_PEERCRED o kern/176419 net [kernel] [patch] socketpair support for LOCAL_PEERCRED o kern/176280 [kernel] On net/if_var.h we can't return a value in a p kern/176144 glebius [kernel] [patch] Bug in m_split() when splitting M_EXT o kern/176054 [kernel] [patch] Correct several typos o kern/176051 [kernel] [patch] uipc: Simplify and correct debug prin o kern/174848 [kernel] [patch] ps(1): ps -H option does not work wit o kern/173724 [kernel] SYSV semaphore adjustment incorrect for SETVA o kern/173477 [kernel] [patch] mpath bugfixes o amd64/170351 amd64 [kernel] [patch] amd64: 64-bit process can't always ge o kern/169838 [kernel] spin lock held too long o kern/168213 [kernel] why is the type of ub_cnt signed in uma_int.h o kern/168212 [kernel] [patch] some suggested additions for uma_core o amd64/167543 amd64 [kernel] Install FreeBSD can show error message with c o kern/167204 [kernel] terrible "netstat -rn" performance due to slo o kern/165893 [kernel] [request] processor topology should be export o kern/165382 wireless [kernel] taskqueue_unblock doesn't unblock currently q o kern/162347 stas [kernel] [patch] remove the extra variable in /sys/lib o kern/161949 [kernel] 64-bit structures are used even with 32-bit c p kern/161912 jh [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove p kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 hiren [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/146588 [kernel] [patch] sys/kern/kern_uuid.c has a le16dec be o kern/145590 [kernel] [patch] SIG_ATOMIC_{MIN,MAX} does not match s o kern/145434 [kernel] [patch] Kernel messages about processes don't o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o kern/129164 [kernel] Wrong priority value for normal processes o kern/121073 [kernel] [patch] run chroot as an unprivileged user o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/85651 [kernel] [patch] debugging code to show entries in eve o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o kern/81588 [kernel] [patch] Devices with SI_CHEAPCLONE flag don't s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/76972 [kernel] [patch] 64-bit integer overflow computing use s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX s kern/50827 [kernel] [patch] [request] add sane record locking o kern/50526 [kernel] [patch] update to #! line termination o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/37555 [kernel] [patch] vnode flags appear to be changed in n 71 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177804 [keyboard] atkbdc_setup() integer divide fault under Q o usb/169935 usb [keyboard] Unable use USB keyboard while panic o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o conf/160227 [keyboard] Please include new keyboard mapping: French o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER f kern/144938 usb [keyboard] [boot] Boot Failure with Apple (MB869LL/A) o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o kern/135164 [keyboard] UK currency key inactive o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/118021 sysinstall [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o kern/115253 [keyboard] Wireless keyboard not working at boot o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 25 problems total. Problem reports for tag 'kmod.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177008 [kmod.mk] [patch] EXPORT_SYMS make variable is broken 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180385 [kqueue] Conflict between EVFILT_PROC NOTE_CHILD and N o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/137246 [kqueue] kevents not generated for file writes through o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i 10 problems total. Problem reports for tag 'kthread': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend 1 problem total. Problem reports for tag 'ktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot 1 problem total. Problem reports for tag 'kvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177743 emulation [kvm] [panic] kernel panic during `portsnap update` on o kern/176694 [kvm] KVM Guest Crash at Boot - kernel trap 12 with in 2 problems total. Problem reports for tag 'lacp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179926 net [lacp] [patch] active aggregator selection bug 1 problem total. Problem reports for tag 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179733 net [lagg] [patch] interface loses capabilities when proto o kern/176167 net [ipsec][lagg] using lagg and ipsec causes immediate pa o kern/176097 net [lagg] [patch] lagg/lacp broken when aggregated interf o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/157182 net [lagg] lagg interface not working together with epair p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/145728 net [lagg] Stops working lagg between two servers. f kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 14 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 [libalias] libalias doesn't free memory o kern/105579 [libalias] dcc resume over natd in 6.x o kern/74450 [libalias] [patch] enable libalias/natd to create skip o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/41307 [libalias] [patch] logging of links lifecycle (add/del 6 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 4 problems total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181352 [libc] setproctitle(3) doesn't work with Capsicum o kern/181155 [libc] [patch] *access*(2) does not handle invalid amo o kern/181154 [libc] snprintf(3) with out of bounds positional argum o kern/181152 [libc] %i fails with negative hex numbers with sscanf( o kern/181130 [libc] HN_DECIMAL failures with humanize_number o kern/181127 [libc] [patch] set{domain,host}name doesn't permit NUL o kern/181092 [libc] Invoking the function sendmsg(2) hangs with ipv o kern/180719 [libc] [patch] Compatibility enhancement - sigsend() ( o kern/179721 [libc] [patch] char<->wchar_t mismatch in glob(3), fnm o kern/177705 [libc] wrong IPv6 link local address reported by getif o kern/177636 [libc] getdtablesize() is sometime return illegal valu o kern/177624 [libc] [patch] Swapcontext can get compiled incorrectl o kern/176322 [libc] MSG_TRUNC does not return real length of the pa o bin/176250 [libc] [patch] euc locale input modifies data p kern/176233 jilles [libc] [patch] New dup3() implementation for FreeBSD o kern/176093 [libc] [patch] Fix resolver support for '_' character o kern/175674 [libc] [patch] sem_open() should use O_EXLOCK with ope o kern/175001 [libc] The current strnstr() function should be named o kern/174272 [libc] Segmentation Fault calling stat() from an appli o stand/173421 standards [libc] [patch] strptime() accepts formats that should o kern/170125 [libc] tcsetpgrp(fd) should fail when fd is a pipe o kern/169849 [libc] [patch] rsh/rlogin do not use the correct IP ad o kern/169800 [libc] [libfetch] [patch] change a number of system li p kern/169320 jilles [libc] [patch] Enhancement to allow fopen() to set O_C o kern/169302 [libc] [patch] Applied MidnightBSD regex memory consum o kern/169282 [libc] utimes(2) does not update st_mtim.tv_nsec when o kern/168473 [libc] nsswitch (nss_method_lookup) fails after upgrad o kern/168315 [libc] [patch] add dirname_r(3); document ENOMEM condi o kern/167107 [libc] [panic] no kernel malloc size argument check ca a kern/166458 [libc] bind(2) incorrectly interprets SO_REUSEADDR opt o kern/165970 [libc] [patch] strtonum() optimization o kern/165710 [libc] [patch] RPC: getnetconfig() and other netconfig o kern/165527 [libc] [patch] setgroupent() does not make file descrp o kern/164674 standards [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o kern/156684 [libc] getaddrinfo(3) returns improper error o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/149323 [libc] Applications with large memory footprint failin o kern/148581 [libc] fopen(3) fails with EMFILE if there are more th o kern/148179 [libc] Possible Memory Leak in getaddrinfo(3) o kern/147839 [libc] [patch] syscall(2) with wrong argument causing o kern/147756 [libc] open_socket_in: Protocol not supported - after o kern/147647 [libc] select(2) wakes after 24 hours even if timeout o kern/147226 [libc] read(fd, buffer, len) returns -1 immediately, o kern/146889 [libc] [patch] Not having NET_RT_IFLIST #defined cause o kern/146845 net [libc] close(2) returns error 54 (connection reset by o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o kern/136669 [libc] [patch] setmode(3) should always set errno on e o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o bin/130504 [libc] Serious bug in regular expression library (rege o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/124160 net [libc] connect(2) function loops indefinitely o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware s kern/114578 [libc] wide character printing using swprintf(dst, n, o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o bin/108118 [libc] files should not cache their EOF status o kern/100709 net [libc] getaddrinfo(3) should return TTL info a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o kern/82980 [libc] realpath(3) treats regular files as directories o kern/78787 [libc] [patch] sysconf(_SC_CLK_TCK) may return incorre o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc o kern/70511 [libc] When fread(3)ing with buffering turned off, man o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/68690 [libc] write(2) returns wrong value when EFAULT s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( o kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI s kern/56720 [libc] [request] UNICODE support in Resolver o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31647 net [libc] socket calls can return undocumented EINVAL o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o bin/26486 [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 103 problems total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 2 problems total. Problem reports for tag 'libcrypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179996 [libcrypto] lib32/libcrypto.so.6 causes apache SSL to o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 2 problems total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- p gnu/148609 imp [libdialog] [patch] printing to a checklist window on 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o kern/148881 [libdisk] [patch] libdisk emits errors w/ disks that c o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o kern/36916 sysinstall [libdisk] [patch] DOS active partition flag lost in li o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159226 [libedit] [patch] libedit does not always restore its p bin/145528 gavin [libedit] ftp(1) crashes in libedit when cancelling a o kern/117348 [libedit] Loading history file sometimes fails in libe 3 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/110017 [libexec] [patch] serial port console output garbled o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o kern/45729 [libexec] [patch] make rbootd transfer the default fil 5 problems total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180917 des [libfetch] [patch] Add to send HTTP Accept Header for o bin/180666 des [libfetch] [patch] fix libfetch incorrect location sen o kern/169800 [libc] [libfetch] [patch] change a number of system li o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 8 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 2 problems total. Problem reports for tag 'libgeom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157879 geom [libgeom] [regression] ABI change without version bump 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/176807 [libgssapi] [patch] libgssapi causes segfaults on i386 o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 3 problems total. Problem reports for tag 'libi386': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/176748 [libi386] [patch] BTX Loader i386 incorrectly probes E 1 problem total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163926 [libkvm] libkvm.so.5 exports private symbols o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 4 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() 1 problem total. Problem reports for tag 'libmagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149936 [libmagic] [patch] wrong handling of decompression uti 1 problem total. Problem reports for tag 'libmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78646 [libmap] [patch] libmap should canonicalize pathnames 1 problem total. Problem reports for tag 'libmd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file 1 problem total. Problem reports for tag 'libopenssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/179619 des [libopenssh] [patch] 9-STABLE sshd negotiates unsuppor 1 problem total. Problem reports for tag 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161456 [libpam] on a system bound to an LDAP server, top trie o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o bin/141016 [libpam] PAM checks in sshd too few? o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/115946 des [libpam] [patch] not thread-safe o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc s kern/20333 des [libpam] ftp login fails on unix password when s/key a 12 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/155370 wxs [libpcap] [patch] description string is broken o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g o bin/146592 [libpcap] [patch] libpcap 1.0.0 doesn't have error mes o kern/144325 [libpcap] tcpdump compiles complex expression to incor o kern/140349 hiren [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'libpmc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165984 [libpmc] pmc(3) causes kernel panic when sampling curr 1 problem total. Problem reports for tag 'libradius': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178507 [libradius] [patch] Comment bug in src/lib/libradius/r 1 problem total. Problem reports for tag 'librpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172576 [librpc] librpc segfaults when out of memory 1 problem total. Problem reports for tag 'libssh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159745 [libssh] [patch] Fix improperly specified dependency l 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172301 [libstand] [patch] add CRC32 feature to FreeBSD's boot o kern/165700 [libstand] [patch] pxeboot discards network mask assig o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/83424 [libstand] [patch] improper handling of malloc failure 5 problems total. Problem reports for tag 'libstdc++': Problem reports for tag 'libsupc++': Problem reports for tag 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libteken': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144743 [libteken] mouse positioning partialy working o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod 3 problems total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 2 problems total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83451 [libusbhid] [patch] improper handling of malloc failur 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177698 [libutil] [patch] sshd sets the user's MAC label at th o kern/171192 [libutil] [request] pidfile_read should be made a publ o kern/84797 [libutil] [patch] State engine in the libutils propert s kern/38347 [libutil] [patch] [request] new library function abs2r o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f 5 problems total. Problem reports for tag 'libvgl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83426 [libvgl] [patch] improper handling of malloc failures 1 problem total. Problem reports for tag 'libwrap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all 1 problem total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/154073 delphij [libz] libz causes perl to exit on signal 11 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs 2 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181012 emulation [linux] [patch] Implemented linux system call fstatfs6 o kern/174933 emulation [linux] if_nameindex fail in linuxulator enviroment o kern/169814 emulation [linux] ptrace is broken in Linux emulation o kern/169805 emulation [linux] utime() syscall does not work in linuxulator o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp p kern/148076 dchagin [linux] linux_sys_futex: unknown op 265 o kern/146237 emulation [linux] Linux binaries not reading directories mounted o kern/140156 emulation [linux] cdparanoia fails to read drive data o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 smh [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/21463 [linux] Linux compatability mode should not allow setu 21 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o 3 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/176606 [loader] loader doesn't get value of "comconsole_speed o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/155441 [loader] [patch] Firewire support in loader is broken f i386/138211 gavin [loader] Boot fails on Intel X5550 o kern/110995 [loader] [patch] loader wastes space worth symtab size f kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 [loader] [patch] make /boot/loader "reboot" code same 8 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 2 problems total. Problem reports for tag 'login.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/155480 [login.conf] maxproc does not work when command runnin 1 problem total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178667 [mac] [patch] mac_lomac policy ignores aux label when o kern/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 3 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/168342 [mbuf] mbuf exhaustion hangs all daemons in keglimit s o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 3 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146590 [mca] [panic] MCA panics 7.3 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/169947 jh [md] [patch] System crash via ioctl() on mdctl. p kern/169683 jh [md] [panic] System crash via ioctl() on mdctl. o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o kern/162502 [md] mount -t mfs on vnode-based md device destroy him p kern/154228 fs [md] md getting stuck in wdrain state 5 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177219 [mfi] mfi driver does not load 8888elp during boot, bu f kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if 2 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118713 fs [minidump] [patch] Display media size required for a k 1 problem total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177876 mips [mips] kernel stack overflow panic on mips64, EdgeRout o kern/177832 mips [mips] [gpio] [patch] GPIO and RF LED do not function p kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 4 problems total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o i386/55603 [mly] unable to reboot when system runs from Mylex A35 2 problems total. Problem reports for tag 'mmc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/141756 gavin [mmc] MMC card attached to blocks keybo 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/180918 [patch] [modules] stable/9 buildworld is broken with M o misc/179536 [modules] File mps.ko.symbols is unconditionally insta o kern/174236 [modules] "kldunload ipdivert" corrupts kernel o kern/174048 [modules] [patch] Fix inconsistent ixgbe(4) KLD name o kern/172535 [modules] kldload+kldunload if_carp makes kldstat not o kern/166927 gnn [dtrace] [modules] Kernel panics if you unload a kld m o kern/164536 [modules] [request] disable building kernel modules th o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al s kern/83738 [modules] kldload hwpmc.ko fails with 'link_elf: symbo o kern/74809 [modules] [panic] smbfs panic if multiply mounted f kern/48976 gavin [modules] nwfs.ko oddity 13 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165830 [mouse] In 9.0 RELEASE amd64 PS/2 mouse doesn't appear s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 6 problems total. Problem reports for tag 'mpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162267 qingli [mpd] mpd kernel panic 1 problem total. Problem reports for tag 'mps': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178795 scsi [mps] MSI for mps driver doesn't work under vmware 1 problem total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165982 scsi [mpt] mpt instability, drive resets, and losses on Fre o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA f kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/142351 scsi [mpt] LSILogic driver performance problems o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/128282 gavin [mpt] system failure on removing two drives o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/117688 [mpt] mpt disk timeout and hang 12 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181281 fs [msdosfs] stack trace after successfull 'umount /mnt' o kern/167260 fs [msdosfs] msdosfs disk was mounted the second time whe o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US p kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o kern/123939 fs [msdosfs] corrupts new files o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f kern/87368 bde [msdosfs] fat32 is very slow o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o kern/79441 trhodes [msdosfs] problem writing on mounted msdos-fs at /mnt o kern/67326 fs [msdosfs] crash after attempt to mount write protected o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c 21 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/166727 yongari [msk] msk driver keeps erroring p kern/164569 yongari [msk] [hang] msk network driver cause freeze in FreeBS o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 3 problems total. Problem reports for tag 'msun': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/170206 numerics [msun] [patch] complex arcsinh, log, etc. 1 problem total. Problem reports for tag 'mtree': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/172945 [mtree] [patch] de_AT.ISO_8859-15 missing from src/etc 1 problem total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast p kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/149086 net [multicast] Generic multicast join failure in 8.1 3 problems total. Problem reports for tag 'mvs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177108 [mvs] mvs driver with MV88SX6081 have timeout waiting 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 wireless [mwl] 802.11n rates not possible on mwl o kern/146425 wireless [mwl] mwl dropping all packets during and after high u 4 problems total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o misc/157533 imp [nanobsd][patch] save_cfg improvements p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o misc/145962 imp [nanobsd] [patch] improved cfg save script p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re 12 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/121534 net [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171777 [ncurses] [patch] Enable assert()s in ncurses o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o kern/154609 ed [ncurses] END key under screen not sending correct cod o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 4 problems total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171532 net [ndis] ndis(4) driver includes 'pccard'-specific code, o kern/171531 net [ndis] undocumented dependency for ndis(4) p kern/165630 [ndis][panic][patch] IRQL_NOT_GREATER_THAN o kern/165622 net [ndis][panic][patch] Unregistered use of FPU in kernel o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/131781 net [ndis] ndis keeps dropping the link f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile f conf/113915 rc [ndis] [patch] ndis wireless driver fails to associate o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 13 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174959 net [net] [patch] rnh_walktree_from visits spurious nodes o kern/174958 net [net] [patch] rnh_walktree_from makes unreasonable ass o kern/166255 net [net] [patch] It should be possible to disable "promis o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP p kern/106722 melifaro [net] [patch] ifconfig may not connect an interface to o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s kern/81147 jfv [net] [patch] em0 reinitialization while adding aliase s kern/12071 fanf [net] [patch] new function: large scale IP aliasing 9 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178379 wireless [net80211] [ath] WPA rekey on the STA side fails when o kern/178378 wireless [net80211] crypto state isn't reset during a reassocia o kern/177846 wireless [ath] [net80211] net80211 TX power limit isn't correct o kern/176201 wireless [net80211] [patch] 11n station includes unrelated ht p o kern/174283 wireless [net80211] panics in ieee80211_ff_age() and ieee80211_ o kern/174273 wireless [net80211] taking down a net80211 node with active fas o kern/172338 wireless [ath] [net80211] CCMP IV transmit counters are not cor o kern/170098 wireless [ath] [net80211] VAPs (Virtual access points) with Ath o kern/168170 wireless [net80211] ieee80211_send_bar() doesn't complete corre o kern/166684 wireless [ath] [net80211] mgmtrate/mcastrate isn't updated base o kern/166286 wireless [net80211] [ath] initial switch to HT40 isn't causing o kern/165517 wireless [net80211] bgscan isn't triggered when invalid beacons o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o kern/163574 wireless [net80211] overly-frequent HT occupancy changes 15 problems total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177194 net [netgraph] Unnamed netgraph nodes for vlan interfaces o kern/176401 net [netgraph] page fault in netgraph o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o kern/153497 net [netgraph] netgraph panic due to race conditions o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 net [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 24 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/179901 trociny [netinet] [patch] Multicast SO_REUSEADDR handled incor p kern/177888 delphij [netinet] [patch] Missing mutex unlock - deadlock mult f kern/177362 net [netinet] [patch] Wrong control used to return TOS o kern/176446 net [netinet] [patch] Concurrency in ixgbe driving out-of- o kern/173478 andre [netinet] [patch] icmp forward bandwithlimit p kern/173004 glebius [netinet] [patch] Incorrect IP checksums when forwardi o kern/172675 net [netinet] [patch] sysctl_tcp_hc_list (net.inet.tcp.hos o kern/167325 net [netinet] [patch] sosend sometimes return EINVAL with o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re p kern/146250 bz [netinet] [patch] Races on interface alias removal o kern/145737 bz [netinet] [patch] Wrong UDP checksum not ignored as ex o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat 21 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180065 net [netinet6] [patch] Multicast loopback to own host brok 1 problem total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165536 [netisr] netisr bad distribution between CPUs o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164130 rwatson [netisr] broken netisr initialization o kern/100519 net [netisr] suggestion to fix suboptimal network polling 4 problems total. Problem reports for tag 'netmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181135 net [netmap] [patch] sys/dev/netmap patch for Linux compat o kern/181131 net [netmap] [patch] sys/dev/netmap memory allocation impr 2 problems total. Problem reports for tag 'netsmb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180979 fs [netsmb][patch]: Fix large files handling p kern/168077 davide [netsmb] [patch] SMBFS option causes panic-on-boot wit 2 problems total. Problem reports for tag 'netware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169680 [netware] NLM and security flavors 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/180572 [network.subr] [patch] SLAAC is enabled for ipv6_cpe_w o conf/174225 hrs [network.subr] [patch] add support for ipv6_addrs_IF s o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/147681 [network.subr][patch] Add inet6 keyword if it wasn't s 4 problems total. Problem reports for tag 'newvers.sh': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180442 [newvers.sh] newvers.sh picked up wrong compiler infor o conf/174422 [newvers.sh] [patch] SYSDIR set to wrong directory 2 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/165569 yongari [nfe] nfe0 freezs/hangs FreeBSD 9 system after lan cab s kern/147684 yongari [nfe] nVidia MCP55 driver blocks IPMI LAN on load f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki 3 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180678 fs [NFS] succesfully exported filesystems being reported o kern/178713 fs [nfs] [patch] Correct WebNFS support in NFS server and f kern/178231 fs [nfs] 8.3 nfsv4 client reports "nfsv4 client/server pr o kern/178103 fs [kernel] [nfs] [patch] Correct support of index files o kern/177971 fs [nfs] FreeBSD 9.1 nfs client dirlist problem w/ nfsv3, f kern/173657 fs [nfs] strange UID map with nfsuserd o kern/170680 fs [nfs] Multiple NFS Client bug in the FreeBSD 7.4-RELEA o kern/168947 fs [nfs] [zfs] .zfs/snapshot directory is messed up when o kern/168942 fs [nfs] [hang] nfsd hangs after being restarted (not -HU o kern/167105 fs [nfs] mount_nfs can not handle source exports wiht mor o kern/167048 fs [nfs] [patch] RELEASE-9 crash when using ZFS+NULLFS+NF o kern/166477 fs [nfs] NFS data corruption. f kern/164462 rmacklem [nfs] NFSv4 mounting fails to mount; asks for stronger o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() f kern/157929 fs [nfs] NFS slow read o kern/154255 net [nfs] NFS not responding o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/146502 fs [nfs] FreeBSD 8 NFS Client Connection to Server o kern/145189 fs [nfs] nfsd performs abysmally under load o kern/143825 fs [nfs] [panic] Kernel panic on NFS client o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o kern/137327 dfr [nfs] nfs nlm memery leak o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o kern/118318 fs [nfs] NFS server hangs under special circumstances o kern/118126 fs [nfs] [patch] Poor NFS server write performance o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111162 [nfs] nfs_getpages does not restart interrupted system o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/105241 [nfs] problem with Linux NFS server up/down combined w o kern/97329 [nfs] [patch] code simplification o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o kern/79336 [nfs] NFS client doesn't detect file updates on Novell s kern/78884 [nfs] [patch] nfs client cache negative lookups o kern/78673 [nfs] [patch] nfs client open resets attrstamp ever if o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/35669 imp [nfs] NFSROOT breaks without a gateway o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o kern/9619 fs [nfs] Restarting mountd kills existing mounts 78 problems total. Problem reports for tag 'ng': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169620 net [ng] [pf] ng_l2tp incoming packet bypass pf firewall 1 problem total. Problem reports for tag 'ng_l2tp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146082 net [ng_l2tp] a false invaliant check was performed in ng_ 1 problem total. Problem reports for tag 'ng_nat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125704 [ng_nat] kernel libalias: repeatable panic 1 problem total. Problem reports for tag 'ng_ubt': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/168520 rodrigc [ng_ubt] [patch] "option VIMAGE" kernel with ng_ubt.ko 1 problem total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o bin/40215 [nis] NIS host search not terminate o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/24461 [nis] Being able to increase the YP timeout without re o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom o bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 20 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/156945 [nsswitch.conf] Name service Switch does not work as d o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on 4 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181082 fs [fuse] [ntfs] Write to mounted NTFS filesystem using F o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem 11 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink 1 problem total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/180236 fs [zfs] [nullfs] Leakage free space using ZFS with nullf o kern/178238 fs [nullfs] nullfs don't release i-nodes on unlink. o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o kern/130210 fs [nullfs] Error by check nullfs o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) 12 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177862 [ofed] [patch] Fix atomic bitstring operations in sys/ o bin/174214 [ofed] [patch] OFED userspace fails to build with clan 2 problems total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 2 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180555 [openbsm] invalid trail name when host: specified in a o kern/176259 [openbsm][patch] praudit produces invalid XML (1.2-alp o kern/172283 [openbsm] OpenBSM-21/openbsm/libbsm/bsm_token.c incorr o kern/172279 [openbsm] [patch] OpenBSM-21/openbsm/libbsm/bsm_token. o kern/172277 [openbsm] OpenBSM-21/openbsm/libbsm/bsm_token.c au_to_ 5 problems total. Problem reports for tag 'openpam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin 1 problem total. Problem reports for tag 'openssl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/176722 benl [openssl] OpenSSL 1.0.1e fails to fallback to TLS1 if o kern/172569 benl [openssl] [patch] Fix div-by-zero in openssl 2 problems total. Problem reports for tag 'oss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r 1 problem total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/169670 [pam] template_user is broken in pam_radius o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o bin/113230 des [pam] [patch] const-ify PAM-headers o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password 9 problems total. Problem reports for tag 'parallels': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec f kern/138944 emulation [parallels] [regression] Parallels no longer works in 2 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o kern/147127 hselasky [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't 3 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 imp [pccbb] [patch] add support for powering down and up C o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF 4 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/158391 gavin [pci] Resource allocation issues with hda/ath o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m 5 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171937 multimedia [pcm] Notebook Toshiba Satellite C850-B1K and problem o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/152622 multimedia [pcm] uaudio recording problem o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi 7 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/176668 [periodic] [patch] Only save pkgdb if it has changed o conf/176098 [periodic] [patch] install 210.backup-aliases uncondit o conf/165817 [periodic] [patch] /etc/periodic reports misconfigurat o conf/163572 [periodic] not full output in daily run output is ambi o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o conf/152807 [periodic] security 900.tcpwrap does not report any re o kern/135502 net [periodic] Warning message raised by rtfree function i o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 11 problems total. Problem reports for tag 'periodic.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/174054 [periodic.subr] [patch] enhance periodic to work simil 1 problem total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179392 pf [pf] [ip6] Incorrect TCP checksums in rdr return packe a kern/179264 net [vimage] [pf] Core dump with Packet filter and VIMAGE o kern/177810 pf [pf] traffic dropped by accepting rules is not counted o kern/177808 pf [pf] [patch] route-to rule forwarding traffic inspite o kern/177402 net [igb] [pf] problem with ethernet driver igb + pf / alt o kern/176763 pf [pf] [patch] Removing pf Source entries locks kernel. o kern/176268 pf [pf] [patch] synproxy not working with route-to o kern/175267 net [pf] [tap] pf + tap keep state problem o kern/173659 pf [pf] PF fatal trap on 9.1 (taskq fatal trap on pf_test o kern/172648 pf [pf] [ip6]: 'scrub reassemble tcp' breaks IPv6 packet o kern/171733 pf [pf] PF problem with modulate state in [regression] o kern/169630 pf [pf] [patch] pf fragment reassembly of padded (undersi o kern/169620 net [ng] [pf] ng_l2tp incoming packet bypass pf firewall o kern/168952 pf [pf] direction scrub rules don't work o kern/168190 pf [pf] panic when using pf and route-to (maybe: bad frag a kern/166501 andre [pf] FreeBSD 9.0 generates incorrect SEC/ACK numbers u o kern/166336 pf [pf] kern.securelevel 3 +pf reload o kern/165315 pf [pf] States never cleared in PF with DEVICE_POLLING o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o kern/163208 pf [pf] PF state key linking mismatch o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o kern/153307 pf [pf] Bug with PF firewall o kern/148290 pf [pf] "sticky-address" option of Packet Filter (PF) blo o kern/148260 pf [pf] [patch] pf rdr incompatible with dummynet o kern/148155 virtualization[vimage] [pf] Kernel panic with PF + VIMAGE kernel opt o kern/147789 pf [pf] Firewall PF no longer drops connections by sendin o kern/146832 bz [pf] "(self)" not always matching all local IPv6 addre o kern/146719 net [pf] [panic] PF or dumynet kernel panic o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin s kern/143808 virtualization[pf] pf does not work inside jail o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o conf/142961 pf [pf] No way to adjust pidfile in pflogd o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/137982 pf [pf] when pf can hit state limits, random IP failures o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/133732 pf [pf] max-src-conn issue o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st p kern/129861 glebius [pf] [patch] Argument names reversed in pf_table.c:_co o kern/127920 pf [pf] ipv6 and synproxy don't play well together o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w p kern/127439 glebius [pf] deadlock in pf o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/125467 pf [pf] pf keep state bug while handling sessions between s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o kern/93825 pf [pf] pf reply-to doesn't work o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/87074 pf [pf] pf does not log dropped packets when max-* statef a kern/86752 pf [pf] pf does not use default timeouts when reloading c o kern/82271 pf [pf] cbq scheduler cause bad latency 67 problems total. Problem reports for tag 'pf.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/145727 [pf.conf] pf rules not applied on boot if using inet6 1 problem total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall 3 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 3 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt 3 problems total. Problem reports for tag 'pkgng': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/178887 portmgr [pkgng] [request] Desired pkgng metadata o ports/175249 portmgr [pkgng] ports-mgmt/pkg: regression: registering packag 2 problems total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/167612 fs [portalfs] The portal file system gets stuck inside po o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 2 problems total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I 1 problem total. Problem reports for tag 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170701 net [ppp] killl ppp or reboot with active ppp connection c o kern/169459 net [ppp] umodem/ppp/3g stopped working after update from o kern/165488 net [ppp] [panic] Fatal trap 12 jails and ppp , kernel wit o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o conf/119550 [ppp] ppp not starting during bootup. o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p f conf/105689 rc [ppp] [request] syslogd starts too late at boot f conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92270 net [ppp]: ppp does not work on renamed network interfaces s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/27474 cy [ipfilter] [ppp] Interactive use of user PPP and ipfil 18 problems total. Problem reports for tag 'pppd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 3 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/96999 [procfs] [patch] procfs reports incorrect information s kern/19535 [procfs] [patch] procfs_rlimit tidyup 4 problems total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174441 [psm] [patch] Enable detection of Synaptics touchpad f o kern/170834 [psm] [patch] synaptics middle and extended button sup a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o kern/137228 [psm] synaptics support delays 'mouse up' events when o kern/129125 [psm] psm0: failed to reset the aux device. f kern/128308 gavin [psm] psm0 cause page fault o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 o kern/109161 philip [psm] synaptic touchpad doesn't work o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 17 problems total. Problem reports for tag 'ptrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177442 [puc] StarTech 1 Port PCIe parallel Adapter card not r o kern/176407 [puc] SIIG Cyber S2P1 has speed problems with puc driv o kern/171746 [puc] [patch] Add support for MosChip MCS9901 based Qu o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 6 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau f i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin 5 problems total. Problem reports for tag 'qemu': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174238 emulation [qemu] FreeBSD 9.0 doesn't boot under QEMU due to ACPI 1 problem total. Problem reports for tag 'quota': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/164734 [quota] 9.0 quota not working [regression] 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o 1 problem total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178411 wireless [ral] [panic] FreeBSD kernel crash in rt2860 o kern/170066 wireless [ral] ral(4) rt61pci Linksys freezes the machine as so o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o kern/137372 net [ral] FreeBSD doesn't support wireless interface from o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o kern/132238 [ral] ral driver does not support RT2860 o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o kern/119696 [irq] [ral] ral device causes massive interrupt storm o kern/111457 net [ral] ral(4) freeze o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP f kern/82456 gavin [ral] WITNESS warning/backtrace in if_ral 20 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/172532 rc [rc] [patch] service routing restart always fails o conf/170847 hrs [rc] static IPv6 addresses+vlans don't work ala rc(5) p bin/168544 rc [patch] [rc]: addswap-mounted swapfiles cause panic on o conf/166484 rc [rc] [patch] rc.initdiskless patch for different major o conf/166330 doc [rc] [patch] Thin server configuration revision reques o conf/165769 rc [rc][jai][ipv6] IPv6 Initialization on external iface p bin/165477 hrs [rc] dhclient is run twice o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser 10 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/178113 [rc.conf] tmpmfs rc.conf setting ignored o conf/176347 rc [rc.conf] [patch] Add support for firewall deny lists o conf/172787 rc [rc.conf] FreeBSD 9.x broken alias syntax on vlan inte o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 5 problems total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/180183 rc [rc.d] rc.d allows scripts without rcvar set to start o conf/179828 rc [rc.d] [PATCH] rc.d/syslogd link socket to /dev/log fa o bin/173153 rc [rc.d] [patch] $netwait_ip should be more parallel o conf/167566 rc [rc.d] [patch] ipdivert module loading vs. ipfw rc.d o o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/145440 hrs [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people p conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a p conf/137629 crees [rc.d] background_dhclient rc.conf option causing doub o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 cy [ipfilter] [rc.d] [patch] No good way to set ipfilter o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a 21 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/176181 rc [rc.subr] rc.subr emitting warnings for non-defined xx o conf/175079 rc [rc.subr] [patch] rc.subr poorly handles recursive run o conf/169047 rc [rc.subr] [patch] /etc/rc.subr not checking some scrip o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands 4 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180844 net [panic] [re] Intermittent panic (re driver?) o kern/176884 net [re] re0 flapping up/down o kern/175864 net [re] Intel MB D510MO, onboard ethernet not working aft o kern/171228 net [re] [patch] if_re - eeprom write issues f kern/169826 yongari [re] if_re no longer working in 9.x [regression] f kern/168268 yongari [re] if_re doesn't work if you set MAC address f kern/167827 yongari [re] RTL8111/8168B Issues (stalling/only 100Mb) f kern/166724 yongari [re] if_re watchdog timeout f kern/162509 yongari [re] [panic] Kernel panic may be related to if_re.c (r f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. f kern/157429 yongari [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 12 problems total. Problem reports for tag 'regdomain.xml': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/180682 [regdomain.xml] [patch] ifconfig wlan0 country JP is m 1 problem total. Problem reports for tag 'release': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/145580 [release] /usr/src/release/Makefile does not honor HTT 1 problem total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136013 [resolver] Resolver wrong diagnostics 1 problem total. Problem reports for tag 'restore': No matches to your query Problem reports for tag 'port': No matches to your query Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/166894 yongari [rl] Realtek RTL8100 keeps droping link f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 2 problems total. Problem reports for tag 'rm_rlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180098 [rm_rlock][mac_portacl][panic] recursed on non-recursi 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181388 net [route] Routes not updated on mtu change o kern/174897 net [route] Interface routes are broken o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 o kern/134531 net [route] [panic] kernel crash related to routes/zebra a kern/71474 net [route] route lookup does not skip interfaces marked d 6 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44202 [rp] [patch] -stable rp driver does not work with mult s i386/28975 [rp] RocketPort problems 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o kern/150036 hrs [rpc] Sun RPC license has less restrictions now. o kern/117711 [rpc] rpcbind binds to all interfaces on random ports o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests 6 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtl8366rb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177878 embedded [rtl8366rb] [patch] Update rtl8366rb switch driver to 1 problem total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/84199 [rtld] dlinfo does not handle RTLD_DI_SERINFOSIZE prop 4 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149643 net [rum] device not sending proper beacon frames in ap mo p usb/146693 thompsa [rum] Edimax EW‐7318USG not found in usbdevs or o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o usb/133296 usb [rum] driver not working properly in hostap mode o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel 12 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181006 net [run] [patch] mbuf leak in run(4) driver o kern/178612 net [run] kernel panic due the problems with run driver o ports/174893 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau f kern/169991 rodrigc [run] [vimage] panic after device plugged in o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 6 problems total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/110662 [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/119572 firewire [sbp] PowerBook not accessable when in target mode 2 problems total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/166568 [sched_ule] intr stuck in WAIT state o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/117420 jeff [sched_ule] round off in sched_balance_pair() s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch 6 problems total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. 2 problems total. Problem reports for tag 'scsi_da': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/180837 usb [scsi_da] [patch] Kingston DT 101 G2 usb stick quirk ( 1 problem total. Problem reports for tag 'sctp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180873 tuexen [sctp] SCTP connection hangs on COOKIE_ECHOED 1 problem total. Problem reports for tag 'sdhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/167197 [sdhci] Use of SD card will increase the load of CPU. o kern/145026 [panic] [sdhci] Fatal trap 12 with sdhci and without a 2 problems total. Problem reports for tag 'ses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi 1 problem total. Problem reports for tag 'setfib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/167947 net [setfib] [patch] arpresolve checks only the default FI 1 problem total. Problem reports for tag 'shutdown': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169968 [shutdown] SCROLL LOCK case server never shutdown 1 problem total. Problem reports for tag 'siis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145714 [siis] removed SATA device on port multiplier resets e 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o kern/128036 [sio] [patch] serial console mostly ignores typein to a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/51982 [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 10 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 1 problem total. Problem reports for tag 'smb': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180438 fs [smbfs] [patch] mount_smbfs fails on arm because of wr o kern/178412 fs [smbfs] Coredump when smbfs mounted o kern/175557 [smbfs] [panic] kernel panic in smbfs.ko while accessi o kern/172942 fs [smbfs] Unmounting a smb mount when the server became o kern/167977 fs [smbfs] mount_smbfs results are differ when utf-8 or U o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/159048 fs [smbfs] smb mount corrupts large files o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/94733 fs [smbfs] smbfs may cause double unlock o kern/91134 fs [smbfs] [patch] Preserve access and modification time a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o kern/87859 fs [smbfs] System reboot while umount smbfs. o kern/80088 fs [smbfs] Incorrect file time setting on NTFS mounted vi o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o kern/61503 fs [smbfs] mount_smbfs does not work as non-root o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/36566 fs [smbfs] System reboot with dead smb mount and umount 30 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/67830 [smp] [patch] CPU affinity problem with forked child p 3 problems total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system 7 problems total. Problem reports for tag 'snd_envy24': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180966 multimedia [snd_envy24] recording broken 1 problem total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178671 multimedia [snd_hda] snd_hda stops working as soon as X starts o kern/175306 multimedia [snd_hda] snd_hda does not produce 7.1 sound on ALC892 o kern/174573 multimedia [snd_hda] headphones on front panel not working anymor o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/150284 multimedia [snd_hda] No gain with Audio o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att 12 problems total. Problem reports for tag 'snd_uadio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi 1 problem total. Problem reports for tag 'snd_uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/156726 usb [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant 4 problems total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/173444 andre [socket] [patch] IPV6_USE_MIN_MTU and TCP is broken p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi p kern/127360 net [socket] TOE socket options missing from sosetopt() o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec a kern/97921 rwatson [socket] close() socket deadlocks blocked threads f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/21998 net [socket] [patch] ident only for outgoing connections o kern/5877 net [socket] sb_cc counts control data as well as data dat 11 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175220 multimedia [sound] sound stopping: play interrupt timeout, channe o kern/174828 multimedia [sound] [snd_emu10kx]: "Creative SB PCI512 [CT4790]" i o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o power/133503 ppc [sound] Sound stutter after switching ttys o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla f usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 51 problems total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154214 net [stf] [panic] Panic when creating stf interface o conf/148017 hrs [stf] [patch] rc script for stf does not honour create s kern/143673 net [stf] [request] there should be a way to support multi o kern/136618 net [pf][stf] panic on cloning interface without unit numb o kern/123858 net [stf] [patch] stf not usable behind a NAT 5 problems total. Problem reports for tag 'swap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/162382 [swap] Orphaned swap references not garbage collected; 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 2 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180558 [syscons] [patch] Change syscons to support consoles a o kern/179530 [syscons] tty gets unresponsive when in scrolling mode o kern/174440 [patch][syscons] panic: mutex Giant not owned at kern/ s kern/172386 [syscons] [request] syscons(4) support for mouse scrol o conf/169330 [syscons] [patch] New Syscons Font for Persian Languag o kern/166262 [syscons] syscons issue on DN2800MT o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o kern/152162 [syscons] On syscons, pressing delete key results in p o kern/148367 [syscons] [patch] Add loader tunable to override SC_HI o kern/148130 [syscons] Inappropriate ioctl for device f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 [syscons] [patch] curses ACS line graphics support for o kern/83109 [syscons] syscons does not always display colors corre o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/46973 [syscons] [patch] [request] syscons virtual terminals o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/31890 [syscons] [patch] new syscons font s kern/15436 [syscons] syscons extension: "propellers" 21 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/166780 [sysctl] [request] add sysctl for swap space used o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o docs/148680 doc [sysctl][patch] Document some sys/kern sysctls p kern/148580 gavin [sysctl][patch] Document some sys/kern sysctls o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o kern/54439 [sysctl] [patch] Protecting sysctls variables by given 8 problems total. Problem reports for tag 'syslog': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/171657 gjb [syslog] syslog.conf(5) BUGS section needs clarificati 1 problem total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/179429 net [tap] STP enabled tap bridge o kern/175267 net [pf] [tap] pf + tap keep state problem p kern/172075 emaste [tap] [panic] panic if an in-use tap interface is dest o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o kern/123892 net [tap] [patch] No buffer space available 5 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178079 net [tcp] Switching TCP CC algorithm panics on sparc64 wit p kern/177456 glebius [tcp] [patch] An error of calculating TCP sequence num o kern/176026 net [tcp] [patch] TCP wrappers caused quite a lot of warni o kern/175153 net [tcp] will there miss a FIN when do TSO? o kern/174822 net [tcp] Page fault in tcp_discardcb under high traffic o kern/174535 net [tcp] TCP fast retransmit feature works strange o kern/174087 andre [tcp] Problems with ephemeral port selection o kern/173309 andre [tcp] TCP connections often prematurely closed by the o kern/168842 andre [tcp] FreeBSD hosts are sending TCP packets with FIN f o kern/165879 andre [tcp] Syncache syncache.count overflow o kern/159795 andre [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 andre [tcp] breaking connection when client downloading file o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s 28 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/180569 [termcap] cannot change termcap o conf/175394 [termcap] [patch] Suggested addition to termcap databa o conf/174937 [termcap] [patch] vt520's termcap entry lacks sc capab p conf/147992 gavin [termcap] [patch] xterm-256color is a 8 colors termina o conf/136336 [termcap] [patch] missing entry for "center of keypad" s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 6 problems total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/140965 [terminfo] Cannot create terminfo database because ncu 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20529 [ti] gigabit cards fail to link 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 1 problem total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171626 fs [tmpfs] tmpfs should be noisier when the requested siz p kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug 3 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/179085 [tools] [patch] pthread patch for netblast o misc/178862 [tools] [patch] fix cross-compilation (amd64/i386) of o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o misc/147463 [tools] [patch] Patch for tools/regression/lib/libc/st o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 5 problems total. Problem reports for tag 'trm': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 1 problem total. Problem reports for tag 'tty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/171726 [tty] conscontrol mute [on/off] doesn't work post-boot o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 2 problems total. Problem reports for tag 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/173475 net [tun] tun(4) stays opened by PID after process is term o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o bin/146377 net [ppp] [tun] Interface doesn't clear addresses when PPP p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 7 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138948 i386 [twa] [regression] da0: Fi o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid 2 problems total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72906 [twe] twe0 idefinite wait buffer a kern/66185 [twe] twe driver generates gratuitous warning on shutd 2 problems total. Problem reports for tag 'tws': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174684 [tws] [patch] 3dm2 (or smartctl) triggers a kernel pan 1 problem total. Problem reports for tag 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/177897 usb [u3g][patch] add support for the Huawei E352 modem o usb/169789 usb [u3g] [patch] add support for huawei e3131 p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 3 problems total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/179115 i386 [uart] Writing to uart1 causes host to hang o kern/178689 [uart] [patch] Extend PCI devices in uart driver o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/147082 ed [uart] Serial ports unusable [regression] s kern/146647 [uart] Some PCIe serial/parallel boards with ID 9901 9 o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 10 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun 4 problems total. Problem reports for tag 'ubt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172672 wireless [ubt] Bluetooth device recognised but not working 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 10 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ 1 problem total. Problem reports for tag 'udbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 1 problem total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158376 [udf] [patch] The UDF file system under counts the num o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada 3 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/133736 net [udp] ip_id not protected ... o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181226 fs [ufs] Writes to almost full FS eat 100% CPU and speed o kern/178854 fs [ufs] FreeBSD kernel crash in UFS o kern/177658 fs [ufs] FreeBSD panics after get full filesystem with uf o kern/175071 fs [ufs] [panic] softdep_deallocate_dependencies: unrecov o kern/174279 fs [ufs] UFS2-SU+J journal and filesystem corruption o kern/167979 fs [ufs] DIOCGDINFO ioctl does not work on 8.2 file syste o kern/166912 fs [ufs] [panic] Panic after converting Softupdates to jo o kern/165559 [ufs] [patch] ufsmount.h uses the 'export' keyword as o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 f kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o kern/159930 fs [ufs] [panic] kernel core p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes o kern/152991 [ufs] false disk full with a too slow flash module o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/147420 fs [ufs] [panic] ufs_dirbad, nullfs, jail panic (corrupt o kern/146708 fs [ufs] [panic] Kernel panic in softdep_disk_write_compl o kern/145246 fs [ufs] dirhash in 7.3 gratuitously frees hashes when it o kern/144929 fs [ufs] [lor] vfs_bio.c + ufs_dirhash.c o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132331 fs [ufs] [lor] LOR ufs and syncer o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 trasz [ufs] [patch] ACL problems with special files o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po 43 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/67301 usb [uftdi] [panic] RTS and system panic 6 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/169461 usb [ugen] USB2 high-speed device detected as full speed o usb/169428 usb [ugen] ugen not detecting all endpoints on device [reg o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n 7 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory 1 problem total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 1 problem total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178061 [ukbd] panic at reboot when hitting scroll-lock; race o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o usb/102066 n_hibma [ukbd] usb keyboard and multimedia keys don't work 8 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 8 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85971 jeff [uma] [patch] minor optimization to uma 1 problem total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/176841 usb [umass] Sony DSC-H2 USB connection fails o usb/176417 usb [xhci][cam][umass] kernelpanic while removing plugged o usb/171354 usb [umass] Medium not present error on flash drive [regre o usb/170123 usb [umass] HP v210w USB stick not supported o kern/169954 [umass] [patch] Western Digital My Passport : (da1:uma p usb/168743 mav [umass] [panic] double fault caused by umass o usb/168551 usb [umass] Issues with embedded card reader (Laptop ASUS o usb/168132 usb [umass] MATSHITA memory card size reported wrong, moun o usb/164058 usb [umass] Lexar 8GB USB flash drive doesn't work by defa o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o usb/153149 usb [umass] USB stick quirk regression [regression] o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o usb/134085 usb [umass] [patch] Adding usb quirk for Sony USB flash dr o usb/131583 usb [umass] Failure when detaching umass Device o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/121169 usb [umass] Issues with usb mp3 player o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o usb/114682 usb [umass] generic USB media-card reader unusable o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/40948 usb [umass] [request] USB HP CDW8200 does not work 56 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters 1 problem total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/128485 usb [umodem] [patch] Nokia N80 modem support o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 3 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/170358 usb [ums] Wrong (duplicate) button numbers o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work s kern/103578 [ums] ums does not recognize mouse buttons s usb/96120 usb [ums] [request] USB mouse not always detected o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 14 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175449 fs [unionfs] unionfs and devfs misbehaviour o kern/173136 fs [unionfs] mounting above the NFS read-only share panic o kern/172348 fs [unionfs] umount -f of filesystem in use with readonly o kern/172334 fs [unionfs] unionfs permits recursive union mounts; caus o kern/165087 fs [unionfs] lock violation in unionfs o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 fs [unionfs] [hang] unionfs locks the machine o kern/141950 fs [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 fs [unionfs] [lor] LOR nfs/ufs/nfs o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/126973 fs [unionfs] [hang] System hang with unionfs and init chr o kern/126553 fs [unionfs] unionfs move directory problem 2 (files appe o bin/123574 fs [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 fs [unionfs] unionfs cross mount -> kernel panic o bin/19772 [unionfs] df(1) output wrong for union-mounts 16 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco 1 problem total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/167847 usb [ural] dlink dwl-122g e crashes(?) when trying wap2 cr o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode 5 problems total. Problem reports for tag 'urio': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/51958 usb [urio] [patch] update for urio driver 1 problem total. Problem reports for tag 'urtw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b 4 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/179107 usb [usb] After detach USB Flash a keyboard does not work. o usb/178267 usb [usb] USB causing interrupt storm on irq16 o usb/167001 usb [USB] [PATCH] add support for Smart G2 64MB memory key f usb/163328 usb [usb] Support for Atheros USB abgn devices o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync f usb/87224 usb [usb] Cannot mount USB Zip750 o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 20 problems total. Problem reports for tag 'usb8': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146367 thompsa [usb8] [patch] Revision 205728: broken bluetooth mouse o usb/146153 usb [axe] [usb8] Hosts in network doesn't receive any pack f usb/146054 usb [urtw] [usb8] urtw driver potentially out of date f usb/145513 usb [usb8] New USB stack: no new devices after forced usb p usb/145455 usb [usb8] [patch] USB debug support cannot be disabled o usb/145415 usb [umass] [usb8] USB card reader does not create slices o usb/145165 usb [keyboard] [usb8] ukbd_set_leds_callback: error=USB_ER o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o kern/138292 usb [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/137377 usb [usb8] request support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [usb8] DVD drive detects as 'da' device 49 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/178773 usb [usbdevs] [patch] Huawei E303 USB 3G modem support o usb/178771 usb [usbdevs] [patch] Western Digital My Passport HD o usb/177666 usb [usbdevs] [patch] Add support for Texas Instruments / o usb/175599 usb [usbdevs][patch]Liebert UPS PSI1000 being assigned uhi o usb/170688 usb patch][usbdevs][wlan] Patch for ASUS Black Diamond USB o usb/165815 usb [usbdevs] [patch] add k3772z 3g modem support o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 12 problems total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/137822 [vesa] [hang] System crashes leaving X when running ve o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod 3 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/178997 [vfs] [patch] Heavy disk I/O may hang system o kern/176169 [vfs] [patch] system unresponsive for 1min after mount o kern/174918 [vfs] Unknown mount filesystem error messages are conf o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal o kern/139127 [vfs] False negative vfs cache entry p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D 10 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170949 [vga] [patch] Use DRIVER_MODULE_ORDERED and SI_ORDER_A o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 3 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/179264 net [vimage] [pf] Core dump with Packet filter and VIMAGE o kern/170096 rodrigc [vimage] Dynamically-attached network interface will c f kern/169991 rodrigc [run] [vimage] panic after device plugged in o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o kern/148155 virtualization[vimage] [pf] Kernel panic with PF + VIMAGE kernel opt a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 9 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/79035 geom [vinum] gvinum unable to create a striped set of mirro o conf/47566 [vinum] [patch] add vinum status verification to perio 2 problems total. Problem reports for tag 'virtualpc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying 1 problem total. Problem reports for tag 'vlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o kern/155420 net [vlan] adding vlan break existent vlan o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out f kern/146394 net [vlan] IP source address for outgoing connections o kern/146358 net [vlan] wrong destination MAC address p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron f kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/117423 net [vlan] Duplicate IP on different interfaces 13 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/168411 [vm] [panic] uma_find_refcnt(): zone possibly not UMA_ o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/147459 [vm] [panic] Kernel panic: vm_page / vdrop / vm_page_c o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/37554 [vm] [patch] make ELF shared libraries immutable once o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s bin/2137 [vm] systat(1) total vm statistics are bad 13 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174908 emulation [vmware] "unsupportable block size 0" after upgrading o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind 5 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/131776 net [wi] driver fails to init f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/107944 net [wi] [patch] Forget to unlock mutex-locks 9 problems total. Problem reports for tag 'wl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181161 wireless [wl] config a old compaq wl-110 wireless card make ker 1 problem total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/174722 wireless [wlan] can't use channel 12 and 13 (14) with my wifi i o kern/174661 wireless [wlan] lost alias on wlan interface o usb/170688 usb patch][usbdevs][wlan] Patch for ASUS Black Diamond USB o kern/153594 wireless [wlan] netif/devd race o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/146165 net [wlan] [panic] Setting bssid in adhoc mode causes pani o kern/144755 wireless [wlan] netif/devd race o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti 9 problems total. Problem reports for tag 'wlan_xauth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/172706 wireless [wpi] wpi0 fails to load firmware when using country o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 5 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 1 problem total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/180788 xen [xen] [panic] XEN PV kernel 9.2-BETA1 panics on boot o kern/180403 xen [xen] Problems with GENERIC and XENHVM kernels with Xe o kern/180402 xen [xen] XEN kernel does not load in XenClient 4.5.5 o kern/179814 xen [xen] mountroot fails with error=19 under Xen on 9-STA o kern/176471 xen [xen] xn driver crash on detach o kern/176053 xen [xen] [patch] i386: Correct wrong usage of vsnprintf() o kern/175954 xen [xen] XENHVM xn network driver extreme packet loss dur o kern/175822 xen [xen] FreeBSD 9.1 does not work with Xen 4.0 o kern/175757 xen [xen] [patch] xen pvhvm looses keyboard input from VNC o kern/171873 xen [xen] xn network device floods warning in dmesg o kern/171118 xen [xen] FreeBSD XENHVM guest doesn't shutdown cleanly o kern/166174 xen [xen] Problems ROOT MOUNT ERROR o kern/165418 xen [xen] Problems mounting root filesystem from XENHVM o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 38 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/170497 fs [xfs][panic] kernel will panic whenever I ls a mounted o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/176417 usb [xhci][cam][umass] kernelpanic while removing plugged o usb/173722 usb [xhci] xhci driver bug after suspend to RAM (ACPI S3 m o usb/172199 usb [xhci] high interrupts load xhci 3 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177905 net [xl] [panic] ifmedia_set when pluging CardBus LAN card f kern/168152 yongari [xl] Periodically, the network card xl0 stops working o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 4 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise 1 problem total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/181377 fs [zfs] zfs recv causes an inconsistant pool o kern/181235 smh [zfs] zfs block devices not appearing after zfs recv o kern/180876 fs [zfs] [hast] ZFS with trim,bio_flush or bio_delete loc p kern/180236 fs [zfs] [nullfs] Leakage free space using ZFS with nullf o kern/180060 zfs-devel [zfs] [panic] ZFS kernel panic, solaris assert on dsl_ o kern/180001 zfs-devel [zfs] [panic] Solaris(panic): zfs: allocating allocate o kern/178999 smh [zfs] dev entries for cloned zvol don't show up until s kern/178467 fs [zfs] [request] Optimized Checksum Code for ZFS o kern/178388 fs [zfs] [patch] allow up to 8MB recordsize o kern/178387 fs [zfs] [patch] sparse files performance improvements o kern/178349 fs [zfs] zfs scrub on deduped data could be much less see o kern/178329 fs [zfs] extended attributes leak o kern/177985 fs [zfs] disk usage problem when copying from one zfs dat o kern/177966 fs [zfs] resilver completes but subsequent scrub reports o kern/177536 fs [zfs] zfs livelock (deadlock) with high write-to-disk o kern/177240 fs [zfs] zpool import failed with state UNAVAIL but all d o kern/176978 fs [zfs] [panic] zfs send -D causes "panic: System call i o kern/176636 [zfs] [patch] Periodical crashes with 9.1-R o kern/176141 fs [zfs] sharesmb=on makes errors for sharenfs, and still o kern/175950 fs [zfs] Possible deadlock in zfs after long uptime o kern/175897 fs [zfs] operations on readonly zpool hang o kern/175179 fs [zfs] ZFS may attach wrong device on move o kern/174372 fs [zfs] Pagefault appears to be related to ZFS o kern/174315 fs [zfs] chflags uchg not supported o kern/174310 fs [zfs] root point mounting broken on CURRENT with multi o kern/173830 fs [zfs] Brain-dead simple change to ZFS error descriptio o kern/173718 fs [zfs] phantom directory in zraid2 pool o kern/173363 fs [zfs] [panic] Panic on 'zpool replace' on readonly poo o kern/173234 smh [zfs] [patch] Allow filtering of properties on zfs rec o kern/171415 fs [zfs] zfs recv fails with "cannot receive incremental o bin/170778 fs [zfs] [panic] FreeBSD panics randomly o kern/169945 fs [zfs] [panic] Kernel panic while importing zpool (afte o kern/169480 fs [zfs] ZFS stalls on heavy I/O o kern/169398 fs [zfs] Can't remove file with permanent error o kern/169319 fs [zfs] zfs resilver can't complete o kern/168947 fs [nfs] [zfs] .zfs/snapshot directory is messed up when o kern/168158 fs [zfs] incorrect parsing of sharenfs options in zfs (fs o kern/167685 fs [zfs] ZFS on USB drive prevents shutdown / reboot o kern/167272 fs [zfs] ZFS Disks reordering causes ZFS to pick the wron o kern/167109 fs [zfs] [panic] zfs diff kernel panic Fatal trap 9: gene o kern/167067 fs [zfs] [panic] ZFS panics the server o kern/167065 fs [zfs] boot fails when a spare is the boot disk o kern/166851 fs [zfs] [hang] Copying directory from the mounted UFS di o kern/165521 fs [zfs] [hang] livelock on 1 Gig of RAM with zfs when 31 o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo p kern/161897 ae [zfs] [patch] zfs partition probing causing long delay o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161280 fs [zfs] Stack overflow in gptzfsboot o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159045 fs [zfs] [hang] ZFS scrub freezes system o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155587 fs [zfs] [panic] kernel panic with zfs o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o kern/153351 fs [zfs] locking directories/files in ZFS o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o bin/153142 fs [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o kern/151648 fs [zfs] disk wait bug o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151226 fs [zfs] can't delete zfs snapshot o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/149173 fs [patch] [zfs] make OpenSolaris installa o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro o kern/148504 fs [zfs] ZFS' zpool does not allow replacing drives to be o kern/148490 fs [zfs]: zpool attach - resilver bidirectionally, and re o kern/148368 fs [zfs] ZFS hanging forever on 8.1-PRERELEASE o kern/148138 fs [zfs] zfs raidz pool commands freeze o kern/147903 fs [zfs] [panic] Kernel panics on faulty zfs device o kern/147881 fs [zfs] [patch] ZFS "sharenfs" doesn't allow different " p kern/147560 ae [zfs] [boot] Booting 8.1-PRERELEASE raidz system take o kern/146941 fs [zfs] [panic] Kernel Double Fault - Happens constantly o kern/146786 fs [zfs] zpool import hangs with checksum errors o kern/146528 fs [zfs] Severe memory leak in ZFS on i386 o kern/146410 pjd [zfs] [patch] bad file copy performance from UFS to ZF f kern/145802 pjd [zfs] page fault under load s kern/145712 fs [zfs] cannot offline two drives in a raidz2 configurat f kern/145339 pjd [zfs] deadlock after detaching block device from raidz o kern/145272 fs [zfs] [panic] Panic during boot when accessing zfs on o kern/145238 fs [zfs] [panic] kernel panic on zpool clear tank o kern/145229 fs [zfs] Vast differences in ZFS ARC behavior between 8.0 p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o kern/143184 fs [zfs] [lor] zfs/bufwait LOR o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140640 fs [zfs] snapshot crash o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134491 fs [zfs] Hot spares are rather cold... f kern/128633 pjd [zfs] [lor] lock order reversal in zfs f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad f kern/127492 pjd [zfs] System hang on ZFS input-output s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un 148 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 2 problems total. Problem reports for tag 'zyd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o usb/150892 usb [zyd] Whenever network contacted in any shape, way or o kern/138292 usb [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/128745 usb [zyd] zyd theoretically supported usb device makes ker f usb/117150 usb [zyd] usb zyd device under moderate load panics system 6 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 18:20:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AB7E884C for ; Mon, 19 Aug 2013 18:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 985C12FC7 for ; Mon, 19 Aug 2013 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JIK1Da094004 for ; Mon, 19 Aug 2013 18:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7JIK1Pq094003; Mon, 19 Aug 2013 18:20:01 GMT (envelope-from gnats) Date: Mon, 19 Aug 2013 18:20:01 GMT Message-Id: <201308191820.r7JIK1Pq094003@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: DEV Nexen Subject: bin/181272 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: DEV Nexen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 18:20:01 -0000 The following reply was made to PR bin/181272; it has been noted by GNATS. From: DEV Nexen To: bug-followup@freebsd.org, Matthias Andree Cc: Subject: bin/181272 Date: Mon, 19 Aug 2013 19:17:44 +0100 --047d7b472460204ed304e450f6ea Content-Type: multipart/alternative; boundary=047d7b472460204ed004e450f6e8 --047d7b472460204ed004e450f6e8 Content-Type: text/plain; charset=ISO-8859-1 Replacement patch.txt thanks to Matthias to point me my small error. --047d7b472460204ed004e450f6e8 Content-Type: text/html; charset=ISO-8859-1
Replacement patch.txt thanks to Matthias to point me my small error.
--047d7b472460204ed004e450f6e8-- --047d7b472460204ed304e450f6ea Content-Type: text/plain; charset=US-ASCII; name="patch.txt" Content-Disposition: attachment; filename="patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hkk09z0m0 LS0tIHV0aWwuYy5vcmlnCTIwMTMtMDgtMTcgMTQ6NTQ6NDQuMDAwMDAwMDAwICswMTAwCisrKyB1 dGlsLmMJMjAxMy0wOC0xOCAwNzoxMzozOS4wMDAwMDAwMDAgKzAxMDAKQEAgLTQwMiwxMiArNDAy LDE2IEBACiAJbmFtZSA9IGZ1bGxuYW1lID0gdCA9IHNhdmVzdHIoYXQpOwogCiAJLyogU3RyaXAg b2ZmIHVwIHRvIGBzbGVhZGluZycgbGVhZGluZyBzbGFzaGVzIGFuZCBudWxsIHRlcm1pbmF0ZS4g Ki8KLQlmb3IgKDsgKnQgJiYgIWlzc3BhY2UoKHVuc2lnbmVkIGNoYXIpKnQpOyB0KyspCisJZm9y ICg7ICp0ICYmICp0IT0nXHQnICYmICp0IT0nXG4nOyB0KyspCisJCWlmIChpc3NwYWNlKCh1bnNp Z25lZCBjaGFyKSAqdCkpCisJCQlpZiAoKih0KzEpICYmICgqKHQrMSkgPT0gJ1x0JykpCisJCQkJ YnJlYWs7CiAJCWlmICgqdCA9PSAnLycpCiAJCQlpZiAoLS1zbGVhZGluZyA+PSAwKQogCQkJCW5h bWUgPSB0ICsgMTsKIAkqdCA9ICdcMCc7Ci0KIAkvKgogCSAqIElmIG5vIC1wIG9wdGlvbiB3YXMg Z2l2ZW4gKDk1NyBpcyB0aGUgZGVmYXVsdCB2YWx1ZSEpLAogCSAqIHdlIHdlcmUgZ2l2ZW4gYSBy ZWxhdGl2ZSBwYXRobmFtZSwK --047d7b472460204ed304e450f6ea-- From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 19 11:06:03 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5175FAF2 for ; Mon, 19 Aug 2013 11:06:03 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 393892490 for ; Mon, 19 Aug 2013 11:06:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JB63B7005131 for ; Mon, 19 Aug 2013 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7JB61MJ005129 for freebsd-bugs@FreeBSD.org; Mon, 19 Aug 2013 11:06:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 19 Aug 2013 11:06:01 GMT Message-Id: <201308191106.r7JB61MJ005129@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports X-Mailman-Approved-At: Tue, 20 Aug 2013 01:59:54 +0000 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 11:06:03 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/181396 makc sysutils/krename-kde4 does not build o ports/181395 portmaster python27-2.7.5_1 to python27-2.7.5_2 delete o java/181394 java eclipse-devel-4.2.0 could not install or update EMF SD o ports/181393 gecko www/xpi-quick-locale-switcher 1.7.8.5 does not works w f ports/181391 lang/itcl o docs/181390 doc seq(1) first appeared in 8th UNIX o kern/181388 net [route] Routes not updated on mtu change o ports/181387 danfe x11/nvidia-driver: CURRENT crashes with nvidia GPU BLO o kern/181386 kib SMP & USB hangs >254024 for mips64/octeon o ports/181385 [patch] x11-drivers/xf86-video-vmware: a fix from a VM o ports/181384 sunpoet security/vuxml: /var/db/pkg/auditfile has a typo for l o ports/181383 swills [PATCH] net/py-ec2-cli-tools: Fix RUN_DEPENDS o ports/181382 Maintainer update: sysutils/desktop-installer f ports/181381 astro/qlandkartegt : upgrade to 1.7.3 o ports/181379 [maintainer update] of dns/zkt 1.1.2 o kern/181377 fs [zfs] zfs recv causes an inconsistant pool o docs/181376 doc CLOCK_THREAD_CPUTIME_ID is not documented in clock_get o kern/181375 fs [softupdates] disk free space blackhole magic o ports/181373 swills net-p2p/litecoin fails to compile o ports/181372 gnome [patch]x11-fonts/fontconfig fc-cache Segmentation faul o bin/181369 incompatibility between bsdpatch and gnupatch dealing o ports/181366 swills [MAINTAINER] www/node: update to 0.10.16 f ports/181365 [PATCH] security/libgcrypt: fix build on armv6 o ports/181364 fjoe [PATCH] misc/mc: Update to 4.8.10 o ports/181362 cs devel/bzr-grep conflicts with bzr o ports/181361 mono Update lang/fsharp to 3.0.27 o ports/181360 nivit [PATCH] unbreak archivers/quazip o ports/181359 marcus ports-mgmt/portlint: add support for USES=gmake, warn o amd64/181358 amd64 Suspend to RAM not working correctly on Lenovo X121e ( o amd64/181357 amd64 LCD Brightness Control not working on Lenovo X121e (AC o ports/181356 miwi [MAINTAINER] chinese/ydict: update to 1.3.1 o ports/181354 az High CPU load caused by net-p2p/libtorrent-devel o docs/181353 wblock [handbook] Remove KDE3 o kern/181352 [libc] setproctitle(3) doesn't work with Capsicum f ports/181350 science/minc2: error, given license is unknown o ports/181349 gnome cairo.h missing in graphics/librsvg o ports/181348 sperber [PATCH] multimedia/miro: update to 6.0 o kern/181346 [hwpmc] Sandy Bridge Xeon - workaround required for so f ports/181345 net/tigervnc o bin/181344 Buildworld fail at xinstall when upgrading from 9.1-ST o bin/181341 [patch] daemon(8): ability to write pidfile for itself o ports/181340 lev [patch] devel/subversion: don't overwrite modified svn o ports/181337 sunpoet [REPOCOPY] www/trafficserver -> www/trafficserver-deve o ports/181336 miwi I have updated www/drupal7 to version 7.23 o ports/181335 kde [PATCH] devel/qmake4: Fix port test and Tinderbox, tri o ports/181334 [New Port] lang/yap-devel o ports/181332 Update databases/jasperreports to version 5.1.2 o ports/181329 fjoe [patch] x11-toolkits/wxgtk29: update to 2.9.5 o gnu/181328 GCC 4.2.1 20070831 may delay initialization of automat o ports/181327 miwi [UPDATE] shells/mksh to R48 f ports/181324 [patch] fix net/istgt with options VBOXVD (VirtualBox o kern/181323 [hang] reboot hang on 9.1-release, 9-stable o ports/181321 tj devel/opengrok: "urlPrefix" doesn't match its deploy p o ports/181320 jadawin [PATCH] irc/irssi-xmpp: update to 0.52 f ports/181319 swills [PATCH] mail/mutt: Add patch from upstream to allow di o ports/181318 x11 x11-servers/xorg-server does not compile or ARM o ports/181312 ashish Invalid Usernames assigned to mail/opensmtpd package o bin/181309 gzip(1) can leave corrupt files lingering around a fil f ports/181308 Update textproc/jakarta-poi to version 3.9 f ports/181302 mi [PATCH] Update graphics/libfpx to 1.3.1-2 o ports/181301 New port: net/kamailio - A very fast and configurable o ports/181298 mail/mailman: Implement "status" for rc.d script f ports/181295 madpilot [PATCH] audio/icegenerator : Add MySQL and PostgreSQL f ports/181294 Missing dependency for www/glpi o ports/181292 hrs print/dvipdfmx cannot long font name f ports/181291 [PATCH] mail/postgrey: make postgrey work with perl 5. o kern/181289 [arcmsr] "sys/dev/arcmsr" causes page fault o ports/181288 [maintainer update] dns/rbldnsd - update to 0.997a o ports/181286 Update security/libscrypt libscrypt-1.13 and fixed i38 o amd64/181285 amd64 x11/xorg does not start if Nvidia Optimus is enabled o o kern/181283 [acpi_ibm] acpi_ibm module is useless on ThinkPad W530 o amd64/181282 amd64 3h of work on battery on FreeBSD while 10h on Windows o kern/181281 fs [msdosfs] stack trace after successfull 'umount /mnt' o docs/181280 doc suggestion: split zfs man page in a zfs- way o ports/181278 gnome deskutils/notification-daemon: Notification Daemon dum o ports/181276 sylvio [UPDATE] mail/mpop: update to 1.0.28 o ports/181274 bapt pkg(1) manual page and usage message synopses incorrec o bin/181272 patch(1) can't deal with blanks in filenames, GNU patc o ports/181271 portmgr [PATCH] let bsd.port.mk's makepatch support spaces in o ports/181270 johans [PATCH] graphics/webp: update to 0.3.1 o docs/181269 wblock Network Servers - NFS Content Rewrite/Update o ports/181266 gnome cannot update net-im/telepathy-glib-0.18.2 to 0.20.2 f ports/181265 apache [patch] Updating www/mod_fcgid form 2.3.6 to 2.3.7 o ports/181264 glewis math/gnuplot, math/py-gnuplot install files in the sam o bin/181263 grep(1) crashes at memchr/__sfvwrite when using colors o ports/181262 ruby lang/ruby19|20 and devel/py-yaml problem install o kern/181257 net [bge] bge link status change o ports/181254 crees [patch] [update] update net-p2p/transmission* & www/tr f ports/181251 net-mgmt/mrtg: rateup constantly segfaulted because of f ports/181248 [PATCH] print/cups-base Disable INSTALLS_ICONS for non o ports/181246 ruby devel/ruby-build: Update to 20130806 o ports/181245 New port: devel/vera++ Tool for verification of C++ s o ports/181244 New port: devel/ocl-icd OpenCL Installable Client Dri o ports/181243 New port: devel/opencl-icd Khronos OpenCL Installable o ports/181242 beech mail/p5-Mail-SpamAssassin 3.3.2 crashes with Perl 5.14 p stand/181240 jilles /bin/sh choking on a certain construct f ports/181237 wg [patch update] mail/imapsync 1.536 -> 1.558 o kern/181236 net [igb] igb driver unstable work o kern/181235 smh [zfs] zfs block devices not appearing after zfs recv f ports/181230 security/dirmngr fails to build after ld(1) update o ports/181228 pgsql databases/postgresql91-server rc.d script fails to sta o ports/181227 bf math/mumps: upgrade to 4.10.0 o kern/181226 fs [ufs] Writes to almost full FS eat 100% CPU and speed o kern/181225 net [infiniband] [patch] unloading ipoib crashes the kerne o ports/181224 amdmi3 [PATCH] games/qnetwalk: update to 1.4 o www/181223 www Outdated emulator/hercules port information on the Fre o kern/181222 [panic] 8.4p2 panics during boot on Campaq M700 P3-650 o arm/181220 arm make xdev for arm installation fails o ports/181219 nivit [UPDATE] devel/py-Jinja2 to 2.7.1 o ports/181218 wen [UPDATE] devel/py-babel to 1.3 o ports/181217 vg [maintainer update] x11-fm/doublecmd: update to versio o ports/181216 lwhsu [PATCH] devel/py-pytz, TypeError: initial_value must b f ports/181215 miwi [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] o ports/181213 multimedia [patch] audio/twolame: add ftp/curl dependency o ports/181212 kde [patch] textproc/redland: add ftp/curl dependency o ports/181211 novel [patch] audio/easytag: Fix build with latest clang in o ports/181210 kde [patch] textproc/rasqal: add ftp/curl dependency o ports/181207 japanese/mecab-ipadic: conver to new perl5 framework o ports/181206 japanese/ebnetd: remove unnecessary LICENSE_FILE o ports/181205 japanese/eb: Convert to new perl5 framework o ports/181203 miwi [UPDATE] shells/mksh to R47 o ports/181202 x11 x11-servers/xorg: xorg-7.x meta package missing o ports/181201 osa [patch] databases/redis - Allow you to set config path o ports/181199 mr cad/qcad: resurrect and upgrade to 3.2.0.0 f ports/181196 swills [PATCH] net-im/pidgin-sipe: Fix on -CURRENNT o ports/181184 gnome [PATCH] x11-toolkits/gtk30: Remove simple patches, tri o ports/181180 vg [PATCH] audio/gvolwheel: trim USES, NLS, add docs, des o ports/181165 avilla net-im/kde-telepathy not bild o ports/181164 kde x11/pimkde4 not bild o ports/181163 kde x11/kde4 not working Drag and drop. o kern/181161 wireless [wl] config a old compaq wl-110 wireless card make ker o ports/181160 Port sysutils/bacula-client - All bacula-fd processes o usb/181159 usb Problem attaching USB device o bin/181157 [patch] ftpd(8): New login.conf(5) capability "ftp-chd o ports/181156 joel lang/pcc does not build with parallel make jobs o kern/181155 [libc] [patch] *access*(2) does not handle invalid amo o kern/181154 [libc] snprintf(3) with out of bounds positional argum o kern/181153 sscanf(3) doesn't skip whitespace properly o kern/181152 [libc] %i fails with negative hex numbers with sscanf( o misc/181151 builtins/locale1.0 fails regression-test o kern/181148 [ata] sas expanders not available in 9.2-RC1 [regressi f ports/181145 edwin [PATCH] games/xrobots: fix build with clang o ports/181144 danfe x11/nvidia-driver: CURRENT coredumps after starting X o docs/181142 doc [handbook] bad links for xfce4 desktop environment o ports/181141 kde devel/qt4-designer: installation of files with hardcod o ports/181140 x11 [patch]x11/pixman fix typo & build issue on arm o ports/181138 koobs [MAINTAINER UPDATE] sysutils/py-supervisor o ports/181137 x11-clocks/wmfuzzy updates far too frequently, chewing o ports/181136 java java/icedtea-web not build o kern/181135 net [netmap] [patch] sys/dev/netmap patch for Linux compat o docs/181134 doc Fix example for boot0cfg utility o ports/181133 [patch] x11-drivers/input-wacom: enabled support of wa o kern/181132 wireless [iwn] stream calculation is wrong for the Intel 4965 o kern/181131 net [netmap] [patch] sys/dev/netmap memory allocation impr o kern/181130 [libc] HN_DECIMAL failures with humanize_number o kern/181127 [libc] [patch] set{domain,host}name doesn't permit NUL o ports/181126 office [patch] devel/boost-libs fails to build on ppc64 o ports/181123 [PATCH] mail/libpst: update to 0.6.61 o docs/181121 wblock Fix a missing line return in Network Servers doc o ports/181120 apache www/apache24 patch places "Include" line in the wrong o conf/181116 CURRENT build always uses bmake, even though WITHOUT_B o ports/181112 perl devel/p5-Dialog take maintainership and deprecate the o ports/181109 vg Maintainer update of net-mgmt/collectd5 f ports/181106 sysutils/logrotate bus error (core dumped) o ports/181105 miwi [NEW PORT] devel/php-composer: Dependency Manager for f ports/181104 audio/mumble: dubious patch to allow OSS device select f ports/181102 [PATCH] audio/mumble cannot find bundled libcelt o kern/181100 wireless [bwi] Turning up bwi0 crashes / deadlocks the kernel o ports/181095 crees net-p2p/transmission-gtk fails to start o ports/181094 vg [maintainer update] update lang/basic256 to 0.9.9.64 o kern/181092 [libc] Invoking the function sendmsg(2) hangs with ipv o ports/181091 tobez [PATCH] devel/p5-Path-Tiny: update to 0.027 f ports/181089 graphics/ufraw needs to follow glib/gettext changes o kern/181082 fs [fuse] [ntfs] Write to mounted NTFS filesystem using F o docs/181080 doc porters-handbook: mention PLIST_DIRSTRY o ports/181077 [patch] ports-mgmt/pkg_replace support pkgng o ports/181074 miwi misc/cs: Update to version 0.9.6 o ports/181073 miwi graphics/gphoto2: Update to version 2.5.2 o ports/181072 miwi lang/bigloo: Update to version 4.0b f ports/181071 miwi x11-wm/clementine: Support CXX/CXXFLAGS properly o ports/181070 miwi print/pmw: Update to version 4.26 f ports/181069 miwi textproc/tralics: Update to version 2.15.1 o ports/181068 miwi editors/asedit: Support CFLAGS properly o ports/181067 miwi games/acm: Update MASTER_SITES o ports/181066 miwi misc/gkrellweather2: Update to version 2.0.8 o ports/181065 miwi finance/qhacc: Update to version 4.2 f ports/181064 miwi multimedia/2mandvd: Update to version 1.8.5 o ports/181063 miwi comms/ser2net: Update to version 2.9.1 o ports/181062 miwi devel/ppl: Update to version 1.0 o ports/181061 miwi www/htdump: Update to version 0.9y o ports/181060 miwi x11-toolkits/blt: Fix build with Tcl/Tk 8.6 o ports/181059 miwi sysutils/gkrelltop: Update to version 2.2.13 o ports/181058 miwi graphics/epix: Update to version 1.2.12 f ports/181057 miwi databases/grass: Update to version 6.4.3 o ports/181056 miwi cad/gerbv: Update to version 2.6.1 o ports/181055 miwi misc/gkrellm-helium: Update MASTER_SITES and WWW: line o ports/181054 gnome graphics/gimp port build fails o ports/181053 zi security/stunnel x-forwared-for patch o ports/181052 osa [patch] make lang/lua not hang on thread creation o ports/181049 haskell lang/ghc: possible regression o ports/181044 office Problems with devel/boost-libs f ports/181043 python [patch] databases/py-carbon: Enhance the init script f ports/181042 python [patch] www/py-graphite-web: Correct setup directions f ports/181040 [patch] sysutils/conky "diskio" memory leak fix o ports/181038 print/acrobatviewer dies with null pointer exception w o ports/181035 portmgr [exp-run] Update libusb-1.0.pc to claim to be libusb 1 f ports/181021 x11-toolkits/open-motif fails to build because YY_MAIN o ports/181020 danfe graphics/luxrender update to 1.2.1 o kern/181016 jfv [em] freebsd 9.2 beta 2 64 bit cannot detect e1000e ni o ports/181014 ale mail/roundcube not functional after portupgrade o kern/181012 emulation [linux] [patch] Implemented linux system call fstatfs6 f ports/181010 net-mgmt/smokeping 2.6.9 build problem o ports/181008 python [maintainer update] for graphics/py-openimageio o kern/181006 net [run] [patch] mbuf leak in run(4) driver o ports/181005 gecko mail/thunderbird - Enigmail failes to start pinentry o ports/181004 sunpoet ftp/curl fails to compile out of the box when WITHOUT_ o ports/181003 multimedia multimedia/gstreamer not build with clang o ports/180999 avilla sysutils/qzeitgeist makes shared libs in SYSV format i o ports/180996 kde devel/qt4-designer: /usr/local/lib/qt4/libphonon.so: c o ports/180994 brd sysutils/rsyslog7 & sysutils/rsyslog7-devel - requesti o ports/180992 sunpoet ftp/pure-ftpd support for authentication daemon o bin/180990 bsdgrep(1) segfaults when pattern file contains many l o ports/180987 [NEW PORTs] audio/ardour3 and multimedia/harvid f ports/180984 math/openblas: Patch patch-exports+gensymbol failed t o ports/180983 timur net/samba4 fails to build o i386/180980 i386 [boot] When booting from the LiveCD 10-year-old server o kern/180979 fs [netsmb][patch]: Fix large files handling o docs/180970 doc [request] No manpage for ps_strings o ports/180968 sylvio archivers/lzip -> 1.14 o ports/180967 Update port games/opensonic to 0.1.4 o kern/180966 multimedia [snd_envy24] recording broken o ports/180963 [Maintainer patch] Upgrade mail/dbmail from 3.1.0 to 3 o bin/180961 [patch] top(1): Fix top command format when JID with 4 f ports/180959 [PATCH] x11/x3270: update to 3.3.12 o ports/180954 sysutils/pciutils (lspci) uses its own database and no p kern/180948 yongari [bge] [patch] Fix for BCM57780 LEDs in if_bge.c o kern/180947 pci not working with freeBSD o ports/180945 sunpoet [PATCH] graphics/gdal: update to 1.10.0 o ports/180944 sunpoet ftp/curl: configure fails when CPUTYPE is set in /etc/ o ports/180942 sunpoet ftp/curl 7.31.0 "getpeername() failed with errno 57: s misc/180941 re [patch] .git files shouldn't be included when making a o ports/180938 gecko www/firefox: ia64: ../../../js/src/gc/Heap.h:827:1: er o bin/180937 fgrep(1) stalls when a file contains null character o docs/180933 gjb Add back the "Single HTML" link in articles o ports/180928 makc build of sysutils/krename-kde4 fails o ports/180927 kde build of x11-themes/kde4-wallpapers-freebsd fails o ports/180926 kde package creation fails for sysutils/k3b-kde4 o ports/180925 Can't compile sysutils/fusefs-smbnetfs on -current o ports/180924 bapt ports-mgmt/poudriere does not write changed port confi o ports/180920 swills emulators/open-vm-tools-nox11 does not compile because o kern/180919 [ata] PEXSAT34 4-port PCI Express SATA card not workin o misc/180918 [patch] [modules] stable/9 buildworld is broken with M o kern/180917 des [libfetch] [patch] Add to send HTTP Accept Header for o kern/180916 jail [jail] [regression] jail startup is broken for 8.4 wit o ports/180913 portmgr broken: packages-8-stable o ports/180911 swills [maintainer update] net/tigervnc: Update to 1.3.0 f ports/180909 vg [MAINTAINER] devel/allegro: Remove conflict with alleg f ports/180908 vg [MAINTAINER] devel/allegro-devel: Update to 5.0.9, rem o ports/180906 multimedia [PATCH] multimedia/gpac-* update to 0.5.0 o ports/180904 miwi New port: security/pecl-scrypt PHP wrapper to Colin Pe f ports/180898 update dns/dnscrypt-proxy to 1.3.2 o kern/180897 acpi [acpi] ACPI error with MB p8h67 v.1405 o ports/180896 cy sysutils/cfengine35: can't use edit_xml because libxml o kern/180894 [panic] rm -rf causes kernel panic o kern/180893 net [if_ethersubr] [patch] Packets received with own LLADD o ports/180889 koobs [MAINTAINER] math/py-pandas: Update to 0.12.0 o ports/180887 New Port: databases/php5-mongodb o kern/180885 [panic] panic: kmem_map too small at heavy packet traf o kern/180881 [panic] Attack invalid user in mpd causes kernel panic s ports/180880 obrien [patch] editors/vim remove BADPATCHES o ports/180877 bland [PATCH] converters/iconv: optional perl run depend o kern/180876 fs [zfs] [hast] ZFS with trim,bio_flush or bio_delete loc o kern/180873 tuexen [sctp] SCTP connection hangs on COOKIE_ECHOED o amd64/180862 amd64 [install] Installing FreeBSD 9.1 (AMD64 DVD) and then o bin/180861 gpart(8): gpart backup/restore doesn't restore labels o ports/180855 gecko www/firefox: Firefox 22 crashes on HTML 5 videos o misc/180854 Default permission bits for /var/account are insecure. o kern/180852 yongari re0 not working with 9.1-RELEASE o ports/180846 jhale audio/chromaprint does not build with poudriere f ports/180845 package creation fails for sysutils/bacula-bat o kern/180844 net [panic] [re] Intermittent panic (re driver?) o ports/180841 [MAINTAINER] databases/jrrd: update to 1.0.6_1 o ports/180839 tj net/activemq: activemq.hostname hostname variable in r o usb/180837 usb [scsi_da] [patch] Kingston DT 101 G2 usb stick quirk ( f ports/180832 New version of news/nzbget (11.0) o ports/180828 [MAINTAINER] russian/MT: update to 5.2.7,1 o www/180826 www Broken link at freebsd main site o kern/180824 Processes stuck in "msdosfs" o bin/180818 [patch] rtadvd(8): rtadvd generates warnings when usin o kern/180816 wireless [iwl] Intel Centrino Wireless-N 2200 not supported f ports/180799 vg [PATCH] mail/dovecot2 without-ssl make package error o ports/180794 danfe [UPDATE] security/john: Update from 1.7.9-jumbo-5 to 1 o ports/180790 emulation devel/linux_kdump prints BSD descriptions of errno nam o kern/180788 xen [xen] [panic] XEN PV kernel 9.2-BETA1 panics on boot f ports/180786 lang/lua52 lacks a pkgconfig file f ports/180780 miwi [PATCH] devel/pear-TheSeer_phpDox: update to 0.5.0 o kern/180775 net [bxe] if_bxe driver broken with Broadcom BCM57711 card f ports/180773 [Maintainer update] sysutils/qjail Bug fix. o ports/180772 miwi [PATCH] databases/pecl-mongo: update to 1.4.2 o docs/180767 doc [patch] printf.3: fix off-by-one in snprintf descripti o ports/180766 gecko Flash not work in www/firefox o ports/180760 rm [PATCH] net-im/gajim: Add missing Features, docs o ports/180757 [MAINTAINER] cad/repsnapper: update to 2.2.0b1 f ports/180753 [PATCH] devel/ocaml-opam: fix build error of util.ml o ports/180750 mm multimedia/ffmpeg build error when ICONV not set o ports/180747 madpilot [MAINTAINER] www/mitmproxy: Update to 0.9.1 o ports/180746 miwi [NEW PORT] net/py-netlib: A collection of network util f kern/180744 FreeBSD 9.1 (9.2) GENERIC kernel panic on Intel D815EP o bin/180740 kbdcontrol(1) cannot override function keys for consol f ports/180739 ports/sysutils/ezjail patch f ports/180736 net/torsocks: aclocal-1.14: error: couldn't open direc f ports/180734 games/iourbanterror: broken f ports/180732 swills [PATCH] sysutils/rubygem-ohai: Add patch to fix issue o kern/180731 ipfw [ipfw] problem with displaying 255.255.255.255 address o kern/180729 ipfw [ipfw] ipfw nat show empty output o ports/180728 kwm [PATCH] devel/libgee: update to 0.10.2 o ports/180727 bapt [exp-run] Testing pkgconfig files for base system libu o usb/180726 usb XHCI umass support breaks between r248085 and r252560 o ports/180725 bdrewery [PATCH] bsd.port.mk: Allow builds to fail when package o kern/180724 occasional file corruption when using cp(1) o ports/180723 office editors/libreoffice: calc spreadsheet external data li o kern/180722 net [bluetooth] bluetooth takes 30-50 attempts to pair to o kern/180719 [libc] [patch] Compatibility enhancement - sigsend() ( o ports/180713 kde ports/devel/xsd fails to compile due to missing depend f ports/180712 swills [PATCH] devel/rubygem-rspec: update to 2.14.1 o ports/180710 nemysis [MAINTAINER] x11/menu-cache: update to 0.5.0 o ports/180705 portmgr [bsd.port.mk] patching a file with both EXTRA_PATCHES o ports/180704 itetcu Refactor mail/dspam/Makefile o ports/180703 miwi multimedia/dvdstyler: Update to version 2.5 f ports/180702 miwi graphics/gmt: Update to version 4.5.9 o ports/180700 miwi devel/wxGlade: Update to version 0.6.8 o ports/180696 miwi games/xlife: Update to version 6.7 o ports/180695 itetcu Refactor mail/dspam-devel/Makefile and update to 3.10. o ports/180690 miwi japanese/skk-tools: Update to version 1.3.3 o ports/180683 miwi multimedia/gxine: Change Javascript engine to spidermo o conf/180682 [regdomain.xml] [patch] ifconfig wlan0 country JP is m o ports/180681 miwi [patch] textproc/urlview fix compiler warnings o ports/180680 mono [PATCH] devel/monodevelop: update to 4.0.9_1 o ports/180679 gecko www/seamonkey 2.19 doesn't install with default clang o kern/180678 fs [NFS] succesfully exported filesystems being reported o ports/180674 kde math/cantor: configure does not detect R, but R is ins o ports/180673 bdrewery ports-mgmt/portmaster: shall not delete build deps tha o ports/180668 japanese/mutt-devel update to 1.5.21-ja.2 o bin/180666 des [libfetch] [patch] fix libfetch incorrect location sen o ports/180665 [new port] secturiy/rngtest: TRNG/PRNG test tool o ports/180664 marino checksum mismatch in biology/tinker o ports/180662 bapt sysutils/fusefs-libs: add birthtime support o ports/180660 gnome [patch] textproc/enchant: set location of hunspell dic o docs/180658 doc [handbook] add detail to pkgng part of the handbook o usb/180657 usb [PATCH] Filco Majestouch 2 keyboard recognized as keyb o ports/180656 bdrewery ports-mgmt/portmaster: --packages-local=/usr/local/por o ports/180654 [NEW PORT] devel/linux-f10-hal-libs: HAL libs (Linux F o threa/180652 threads [patch] compat32 problem in clock_getcpuclockid2 f ports/180651 net/scribe won't build with automake update to 1.14 o ports/180650 miwi [maintainer update] for graphics/openshadinglanguage o ports/180648 sunpoet ftp/curl 7.31.0 failed to compile with LDAP f ports/180647 www/cherokee: build fails o ports/180643 java java/openjdk6 build fails on amd64 -current f ports/180642 [PATCH] astro/gpsman: update to 6.4.4.1 o ports/180639 osa [PATCH] www/nginx: [Fix for syslog support] o ports/180638 bf math/petsc build failure on ia64 o ports/180637 linimon portsmon/portsconcordanceformaintainer.py is broken f ports/180634 security/ipsec-tools: ipsec-tools doesnt create contro o ports/180632 kde KDE4 + QT4 shall have an option to compile with debug o ports/180629 kwm mail/libmapi does not compile o kern/180628 [headers] Make 32-bit i386 compilation work properly o o kern/180625 {,gpt}zfsboot should announce during boot which datase o ports/180624 ale databases/mysql55-server: mysql_upgrade man, and upgra o www/180622 www http://www.freebsd.org/commercial/consult.html Listing o ports/180619 vd [patch] ftp/wget:: stealth dependency on misc/e2fsprog o usb/180617 usb New quirk (another member of Western Digital My Passpo o ports/180616 office german/alt-aspell: was identical to german/aspell, now p ports/180615 kde [PATCH] devel/qtcreator: update to 2.8.0 o ports/180614 clsung sysutils/xosview crashes after some days on sparc64 o ports/180613 miwi New port: security/p5-Digest-Bcrypt Interface to the b o ports/180612 lev [patch] devel/subversion: let bindings ports load opti o ports/180611 [patch] update cad/feappv f ports/180607 sysutils/zfsnap: grammar error(s) in pkg-descr o ports/180604 gnome devel/xdg-utils: xdg-screensaver depends on dcop o ports/180602 [NEW PORT] multimedia/xjadeo: A synced video player fo o ports/180601 gnome graphics/gegl is missing DOCS option from Makefile o i386/180600 i386 kernel panic FreeBSD-10.0-CURRENT while running Chromi o i386/180599 i386 PCIe chipset test is not valid on recent Intel platfor a ports/180598 arved devel/pcsc-lite - distfile unavailable o ports/180596 gnome [patch] devel/libnotify: remove gtk20 and gettext depe o ports/180595 unable to build net-p2p/mldonkey-core on i386 using cl o power/180593 ppc PowerMac G5 shuts down when building pcre o ports/180591 obrien Port editors/vim: make needs a -D and does not documen o kern/180588 [cpufreq] [patch] cpufreq cannot be loaded as kernel m o ports/180585 naddy [patch] audio/opus: drop unnecessary processing by inc o ports/180580 miwi [maintainer-update] Update to databases/py-odbc port o ports/180576 miwi [maintainer-update] games/ioquake3 and slaves o ports/180573 miwi MAINTAINER-UPDATE shells/rssh -> support latest rsync o conf/180572 [network.subr] [patch] SLAAC is enabled for ipv6_cpe_w o conf/180569 [termcap] cannot change termcap o kern/180568 jlh r251668 breaks applications which depends on dlopen("l o ports/180565 office textproc/aspell compilation error with Clang f ports/180564 multimedia/mplayer compilation error with Clang (runni o ports/180563 gecko www/seamonkey compilation error with Clang (*pp = '\0' o amd64/180562 amd64 amdtemp and ACPI not working with motherboard ASUS M5A o kern/180558 [syscons] [patch] Change syscons to support consoles a o kern/180555 [openbsm] invalid trail name when host: specified in a f ports/180553 sunpoet net/mtr (mtr-0.85) broken o ports/180552 miwi Remove 9 ignored kde4-l10n ports f ports/180549 python databases/py-swift: update to 1.9.0 a ports/180548 ohauer [bsd.sites.mk] [patch] - Outdated Apache Master Sites f ports/180545 swills update sysutils/rubygem-facter to 1.7.2 o ports/180542 miwi Update sysutils/xfsprogs to version 2.9.8 f ports/180540 swills [PATCH] security/rubygem-metasploit_data_models: updat o ports/180535 portmgr Gimp missing from ports/i386/packages-8-stable/ o ports/180534 cy net/vnc: vnc-4_1_3 fails to build on current f ports/180533 sunpoet [PATCH] devel/rubygem-rspec: update to 2.14.1 o ports/180524 games/crack-attack crashes o ports/180499 swills [PATCH] fix emulators/open-vm-tools after r248084 o ports/180498 beech ports/mail/p5-Mail-SpamAssassin throws away precious a o bin/180497 kbdcontrol(1) cannot override function keys < 65 o threa/180496 threads clock_gettime() does not return CPU-time for zombie pr o ports/180495 cy sysutils/doinkd exits upon start up from rc.d scripts o docs/180493 doc [handbook] Single-user mode console confusion o ports/180492 problem with /usr/ports/Mk/bsd.ldap.mk f ports/180489 miwi graphics/pecl-gmagick: Update to 1.1.2RC1 (with patch) f ports/180487 culot [patch update] math/p5-Math-Int128 0.07 -> 0.09 o ports/180484 mm bsd.tcl.mk does not support full range of version sett o www/180482 www tls certificates on svn https mirrors cannot be verifi o ports/180481 gabor textproc/ispell: *ispell* install into same place: man o ports/180475 audio/freeswitch-sounds: volume reduced to 20% of orig o ports/180471 swills I have updated emulators/open-vm-tools to 9.2.3 o ports/180470 ohauer r321585 port commit causes Apache 2.2 w/ www/mod_rpaf2 s kern/180468 net [request] LOCAL_PEERCRED support for PF_INET o ports/180467 kde [partial patch] Make devel/py-qt4-core work with pytho o ports/180464 python [patch] Update astro/py-pyfits to 3.1.2 o ports/180459 gnome Port devel/py-dbus ' wrong PORTDOCS logic and pkg-plis o ports/180458 apache [patch] www/apache2[24]: typo in pkg-message o ports/180456 mm multimedia/x264 on ia64: /usr/include/math.h:236: erro o ports/180452 New Port: devel/libbson: library providing useful rout o ports/180451 gnome devel/libgsf missing dependency on p5-XML-Parser p kern/180449 jfv Error in compiling kernel with device ixgbe f ports/180447 skreuzer [PATCH] net-mgmt/nrpe2: Update to 2.14 o ports/180446 New port: print/p910nd A small printer daemon o misc/180443 SVN can't connect to https://svn0.us-east.freebsd.org/ o kern/180442 [newvers.sh] newvers.sh picked up wrong compiler infor o ports/180441 clsung [patch] updates to port for textproc/metaf2xml 1.52+ o kern/180438 fs [smbfs] [patch] mount_smbfs fails on arm because of wr o kern/180435 Xtimerint woes on one machine o ports/180434 kde [ports] multimedia/phonon: ia64: /usr/local/lib/libqze o ports/180422 miwi New port: www/py-django-simple-captcha o ports/180419 bdrewery security/openssh-portable uses predictable ccache name f ports/180417 obrien editors/vim: show-options say X11 is on but then gvim o bin/180414 [patch] xlint should use $CC o misc/180413 [build] [patch] Compilation failure with _DONT_USE_CTY o ports/180409 ports/math/scilab trying to use F77 o ports/180408 ports/math/scilab missing a file to be installed o ports/180407 x11-fm/dolphin in kde-4.10.5 will cause reboot o ports/180404 skreuzer New port: databases/cppdb: Platform and database indep o kern/180403 xen [xen] Problems with GENERIC and XENHVM kernels with Xe o kern/180402 xen [xen] XEN kernel does not load in XenClient 4.5.5 o ports/180394 lippe [Update] net/owncloud-csync Makefile fixes f ports/180389 [PATCH] net/rabbitmq: update to 3.1.3 o ports/180387 [MAINTAINER-UPDATE] www/mawstats: set EXPIRATION_DATE o kern/180385 [kqueue] Conflict between EVFILT_PROC NOTE_CHILD and N o bin/180381 pgrep(1): Cannot compile regular expression 'clang++' o ports/180380 gecko www/firefox: Firefox 22.0 dies instantly when I try to o ports/180377 bf devel/pcre 8.33 compilation problem on ARM o ports/180368 haskell [PATCH] devel/hs-git-annex does not build with WEBAPP o misc/180365 [bsd.cpu.mk] [patch] Not attach ${_CPUCFLAGS} to CXXFL o ports/180364 miwi [NEW PORT] www/ap22-mod_realdoc: Apache module to supp o ports/180353 tmseck www/squid33 - supplied rc.d script fails to exit f ports/180351 danfe new port: ftp/u1ftp f ports/180350 textproc/sigil build problems when libzip installed o ports/180348 gnome devel/dbus fails if existing user found o ports/180340 perl Mk/bsd.perl.mk -- r320679 breaks backwards compatibili o ports/180338 devel/opencl: new hashes (distinfo), minor changes f ports/180337 devel/tnt: tnt_sparse_matrix_csr.h:97:3: error: no mat o ports/180336 itetcu [PATCH] sysutils/apcupsd: support multiple instances o o ports/180335 print/transfig: Can't find png header pngpriv.h f ports/180334 Port upgrade: devel/git-review from 1.21 to 1.22 o docs/180332 doc SSD Kernel Instructions Out of Date: options MFS throw o docs/180331 doc SSD Kernel Instructions Out of Date: options MD_ROOT a o docs/180330 doc SSD Kernel Instructions Out of Date: pseudo-device no o bin/180328 awk(1) fails to treat var as integer f ports/180327 python bug fix: bugfixes for security/py-fail2ban port o ports/180324 hrs [PATCH] net-mgmt/ipv6mon modified rc.d script for mult o ports/180320 miwi New port: www/p5-Template-Plugin-StripScripts o ports/180319 miwi New port: graphics/p5-Image-LibExif o ports/180318 miwi New port: textproc/p5-XML-Declare o ports/180317 miwi New port: russian/p5-Text-Hyphen-RU o ports/180316 miwi New port: textproc/p5-Catalyst-Action-Serialize-XML-Ha o ports/180315 miwi New port: www/p5-Catalyst-Plugin-Session-PerUser o ports/180314 miwi New port: net/p5-Net-Google-PicasaWeb o ports/180313 perl New port: databases/p5-DBIx-Class-CustomPrefetch o ports/180311 miwi New port: graphics/p5-Image-ObjectDetect o ports/180310 miwi New port: devel/p5-accessors-fast o ports/180309 miwi New port: devel/p5-AnyEvent-Memcached o ports/180308 miwi New port: devel/p5-MooseX-Role-Matcher o ports/180307 miwi New port: devel/p5-Devel-Leak-Cb o ports/180306 miwi New port: databases/p5-DBIx-Class-VirtualColumns o ports/180305 miwi New port: devel/p5-DateTime-Format-RSS o ports/180304 miwi New port: devel/p5-Test-Able-Runner o ports/180303 miwi New port: devel/p5-Test-Able o ports/180302 miwi New port: devel/p5-Test-If o ports/180301 miwi New port: devel/p5-Variable-Eject o ports/180300 miwi New port: devel/p5-Term-ReadLine-Perl o ports/180299 miwi New port: devel/p5-String-RewritePrefix o ports/180297 miwi New port: textproc/p5-Text-Hyphen o ports/180296 miwi New port: net/p5-Net-CIDR-Set o ports/180295 miwi New port: security/p5-Crypt-RSA-Yandex o ports/180294 miwi New port: devel/p5-Lingua-Translit o ports/180293 miwi New port: devel/p5-Class-Mixin a ports/180292 crees Can't build net-p2p/transmission-qt4 o ports/180288 jpaetzel sysutils/tw_cli: update to the latest version o ports/180280 db comms/unixcw : remove support for the expired QT3 port o ports/180272 se multimedia/dvbcut: remove QT3 support o ports/180268 az net-p2p/rtorrent omits man page o ports/180267 brd [patch] - update devel/librelp to version 1.1.4 o ports/180266 gnome net/avahi-app: remove qt3 support o ports/180264 lippe lang/yap update o ports/180258 gblach x11-wm/enlightenment stops responding o ports/180256 NEW PORT: www/twig-php which is a PHP template engine o usb/180254 usb FreeBSD 9.1 on 384GB memory server o ports/180246 swills [patch] lang/ruby20: update to 2.0.0p247 o ports/180245 skreuzer new port: sysutils/rmlint -- remove stale or duplicate o ports/180243 eclipse Please upgrade java/eclipse to Kepler (4.3) o ports/180237 [new port] devel/radare2-devel: Tools to disasm, debug p kern/180236 fs [zfs] [nullfs] Leakage free space using ZFS with nullf o ports/180228 russian/fortuneru: port upgrade o ports/180226 timur net/samba4 port rc script syntax errors ("samba" vs "s o ports/180219 danger update textproc/sphinxsearch-devel 2.0.1b to 2.1.1b o ports/180216 nemysis [NEW PORT] x11-fonts/alfont: Wrapper around the freety f ports/180215 sunpoet After a portsnap fetch update, portupgrade of ftp/curl o ports/180211 ale graphics/kipi-plugins : remove CALENDAR option (depend f ports/180208 rm wrong checksum for devel/py-asn1-modules o ports/180207 amdmi3 [PATCH] audio/dumb: Add ALLEGRO_DEVEL, trim ALLEGRO Op o ports/180206 nemysis [NEW PORT] audio/dumb-allegro-devel: build dumb-allegr o ports/180201 db port update: irc/ircd-hybrid o ports/180195 [patch] upgrade games/minecraft-client to 1.6.1 f ports/180190 graphics/openshadinglanguage: liboslexec/llvm_ops.s:34 o conf/180183 rc [rc.d] rc.d allows scripts without rcvar set to start o ports/180181 pgsql [PATCH] databases/postgresql92-server: Add pthread sup f ports/180180 lippe [Update] net/hanstunnel: Makefile and pkg-message fixe o ports/180178 bapt shells/zsh: hangs upon '>(command)' redirections s ports/180175 dinoex graphics/jasper: allow it to depend on either graphics o ports/180173 ale new port: lang/php55-apache-mod -- PHP with Apache sup o ports/180171 danfe [new ports] add 6 new ports for Ardour 3.x to work o ports/180165 python [PATCH] devel/py27-distribute: Fix install and deinsta f ports/180163 devel/php-xdebug: update to 2.2.3 f ports/180159 Mk/Uses/jpeg.mk: Used to add dependancy on either jpe o ports/180151 update for print/cups-bjnp o ports/180150 markj [new port] audio/linux-10-flac: linux libFLAC and libF o ports/180149 dhn [PATCH] net/rubygem-rubytter: update to 1.5.1 o ports/180148 dhn [PATCH] net-im/rubygem-termtter: update to 2.2.1 o bin/180146 /bin/sh: Early SIGWINCH can end process o ports/180144 [new port] textproc/fss: PHP5-Extension FastStringSear o ports/180139 brd [PATCH] sysutils/rsyslog7: Make UUID support optional o ports/180122 doceng Building the misc/freebsd-doc-en port fails if w3m is f ports/180121 lev devel/subversion-static fails to link libm and to incl o usb/180119 usb FreeBSD 9.1 umass driver does not correctly handle Pan o ports/180114 gnome Error building net-im/loudmouth o bin/180101 systat(1) / vmstat(8): command 'only' only displays fi o misc/180100 cannot quit pager in loader prompt o ports/180099 ale databases/mysql56-server and databases/mysql55-server o kern/180098 [rm_rlock][mac_portacl][panic] recursed on non-recursi o ports/180096 x11 [patch] x11/xorg-libraries: add missing dependency o kern/180094 hiren [iwn] Incorrect id for Intel Centrino Wireless-N 130 o ports/180083 nemysis [NEW PORT] games/lostfeathers: Help a bird to recover o arm/180080 arm Unmapped buffers on ARMv7 big-RAM boards o conf/180078 re [PATCH] make /etc and /var writable on CD media o ports/180075 gnome print/system-config-printer fails with GLib error o ports/180070 New port: devel/kickassembler: Advanced MOS 65xx assem o kern/180067 jail [jail] [patch] fix multicast support within jails o kern/180065 net [netinet6] [patch] Multicast loopback to own host brok o ports/180062 gnome graphics/clutter-gtk compilation failure f ports/180061 lippe [PATCH] devel/ChipmunkPhysics: Add docs, examples, dem o kern/180060 zfs-devel [zfs] [panic] ZFS kernel panic, solaris assert on dsl_ o ports/180059 portmgr README.TXT out of date on FTP site ports directory o ports/180057 olivierd [PATCH] textproc/py27-sphinx: Fix for creation of manp o ports/180052 tmseck www/squid3x ports: some helpers are not built/installe f ports/180050 mail/alpine should be updated to version 2.10 o ports/180048 xfce x11-wm/xfce4: make port xfce fail on GLIB, which doesn o ports/180045 [new port] games/wesnoth-devel o kern/180044 [ata] SATA Controller will not negotiate SATA300 only o ports/180034 audio/squeezeboxserver is now Logitech Media Server f ports/180033 databases/postgis20 gives in to processing text files o ports/180030 bapt [bsd.port.mk] [patch] add the OPTIONS{,_}FILE rename t o docs/180027 doc Missing man page entries for callout_reset_sbt in time o ports/180023 x11 x11-servers/xorg: xorg (WITH_NEW_XORG) on 10-CURRENT i o ports/180022 New port: textproc/extract_url Perl script that extrac o ports/180019 dhn [PATCH] devel/rubygem-lockfile: update to 2.1.0 o amd64/180018 amd64 [panic] System panics when bsnmpd is started o ports/180017 olgeni lang/erlang-runtime16: erlang-runtime-16.b.01 wx build o bin/180014 [patch] kldstat(8): add quiet option to filename mode o ports/180010 girgen [exp-run] databases/postgresql92 as default o kern/180007 Kernel panic o kern/180006 Kernel panic o ports/180005 portmgr [bsd.port.mk] [patch] USE_DOS2UNIX doesn't print out t o ports/180003 jlaffaye lang/go: problem with databases/gosqlite3 o kern/180001 zfs-devel [zfs] [panic] Solaris(panic): zfs: allocating allocate o kern/179996 [libcrypto] lib32/libcrypto.so.6 causes apache SSL to o ports/179989 [ patch ] net/istgt broken linking, broken cast, broke o docs/179988 doc [faq] [patch] ThwackAFAQ - sandbox f ports/179987 lippe port-update: dns/gdnsd o ports/179983 nemysis [MAINTAINER] sysutils/lxinput: Add docs, fix NLS o ports/179972 gnn Encryption feature for sysutils/synergy-devel 1.4.12 a o ports/179970 sylvio x11-fm/gnome-commander2 seg faults on amd64 o ports/179965 sunpoet x11-fonts/dejavu: fonts.dir and fonts.scale not genera o bin/179963 ntpd(8) tries to bind IFDISABLED IPv6 addresses o kern/179949 clang(1): clang-3.2 cpp inserts extra white spaces to o ports/179947 nemysis [NEW PORT] games/arkanoidsb: Arkanoid and space game o ports/179944 nemysis [NEW PORT] games/openbubbles: Clone of Evan Bailey's g o ports/179942 multimedia [patch] multimedia/dvdstyler: uses wrong ffmpeg when m o ports/179941 bapt wrong variable in $LOCALBASE/etc/periodic/daily/400.st o ports/179940 bapt pkg upgrade changes xterm icon & title o ports/179939 tmseck www/gatling does not work with TLS in default installa f ports/179934 mail/courier fails to build if devel/pkgconf is not pr o kern/179932 scsi [ciss] ciss i/o stall problem with HP Bl Gen8 (and HP o bin/179931 infinite loop in rtsol(8) by sending an option with le o ports/179930 bf math/parmetis installs libmetis.a but not associated m o ports/179927 java java/jboss72 Can't start with rc script o kern/179926 net [lacp] [patch] active aggregator selection bug o ports/179925 anders Fix for ports/mail/majordomo/Makefile dialog p docs/179914 doc remove inactive user dougb from mergemaster maintainer o ports/179908 dhn [PATCH] sysutils/rubygem-teamocil: update to 0.4.4 o ports/179902 brd [patch] - update sysutils/rsyslog7-devel to version 7. p kern/179901 trociny [netinet] [patch] Multicast SO_REUSEADDR handled incor o ports/179900 brd [patch] - update sysutils/rsyslog7 to version 7.4.1 o kern/179889 geom [geli] geli stopped work after updating RELEASE 9.* so o ports/179858 [NEW PORT] deskutils/lxshortcut: Small utility used to o ports/179857 bf Fix for math/gsl on PowerPC o ports/179855 makc New port: science/sigrok-cli o ports/179854 makc New port: science/pulseview o ports/179853 makc New port: devel/libsigrok o ports/179852 makc New port: devel/libsigrokdecode o kern/179847 wireless [ath] [patch] Update regdomain in ath drivers includin o ports/179844 miwi [NEW PORT] net/py-gtknetcat: GTK GUI for netcat o ports/179843 emacs and texinfo collide o ports/179834 miwi [maintainer-update] update games/stonesoup to version o bin/179833 [patch] contrib/bmake: port easter egg from pmake o docs/179832 doc manual page of mac_from_text suggests incorrect freein o kern/179829 melifaro net/route.c MFC 248895 breaks some VPNs [regression] o conf/179828 rc [rc.d] [PATCH] rc.d/syslogd link socket to /dev/log fa o kern/179827 [hwpmc] process-mode counters aren't correctly read on o kern/179824 net [ixgbe] System (9.1-p4) hangs on heavy ixgbe network t o kern/179814 xen [xen] mountroot fails with error=19 under Xen on 9-STA o ports/179813 jsa graphics/pngcrush: unbreak fetch & update o ports/179809 autotools [PATCH] devel/libtool: Add support for lang/clang33 o ports/179803 hrs fetch error for print/texlive-infra o bin/179800 [patch] use svnlite on newvers.sh o ports/179799 multimedia Fix multimedia/mjpegtools on powerpc o ports/179795 jsa [PATCH] graphics/pngcrush: failed checksum again (less o ports/179786 gnome graphics/poppler and xpdf contain conflicting files o ports/179778 new port: net/fish-sync -- network file sync tool o ports/179766 mm [PATCH] sysutils/debootstrap fails on freebsd with --f o misc/179760 hselasky The commit log message for r251614 contains non-printa o ports/179754 miwi New port: devel/p5-CPAN-Site f ports/179744 miwi [NEW PORT] science/py27-pupynere: A pure python NetCDF o ports/179738 port update: games/atanks f ports/179735 edwin port update: games/sopwith o kern/179733 net [lagg] [patch] interface loses capabilities when proto o ports/179730 marino (Possible) change to textproc/slides f ports/179726 www/cherokee cannot be installed on FreeBSD 9.1 o ports/179724 new port: net-p2p/btsync o kern/179721 [libc] [patch] char<->wchar_t mismatch in glob(3), fnm o ports/179720 sylvio [PATCH] irc/bip: add patch which helps avoid flooding o ports/179710 apache port www/mod_fastcgi extra patch to support apache24 o kern/179709 wireless [ath] Atheros 5212 does not work: stuck beacon; resett o ports/179705 dhn [PATCH] audio/ncmpcpp is missing a build time dependen o ports/179701 multimedia [PATCH] multimedia/gstreamer: Add NLS, trim pkg-plist o docs/179697 doc Handbook incomplete WRT Opera flash usage (linproc) o arm/179688 arm [patch] [rpi] serial console eats some characters at m o ports/179687 uqs [PATCH] games/bsdgames: add CONFLICTS for games/hangma o ports/179681 miwi [Maintainer Update] graphics/gimp-help and subsidiary o ports/179667 nemysis [NEW PORT] x11-wm/py-obapps: Graphical editor for Open o kern/179644 [panic] worklist_remove: 0xfffffe001b6f6000 pagedep(0x o ports/179642 databases/mysql-workbench52 don't compile because it c f ports/179637 [patch] ports-mgmt/portupdate-scan: add the "-a [date] o ports/179635 sylvio mistyped in net/linphone-base/pkg-descr o bin/179630 tcsh(1): nls catalog file has wrong character code(ja_ o ports/179624 miwi [New Port] sysutils/dunst - Lightweight notification d o bin/179619 des [libopenssh] [patch] 9-STABLE sshd negotiates unsuppor o ports/179611 running sysutils/pdumpfs fails with ruby19 o ports/179610 swills databases/memcached broken with repcached patch o ports/179607 nobutaka www/emacs-w3m 1.4.471.b.20120306 HTML display error o ports/179605 nemysis [NEW PORT] graphics/glfw3: Portable framework for Open o ports/179602 nemysis [MAINTAINER] graphics/glfw: Add Portscout o ports/179601 marius Poudriere cannot build sysutils/cdrtools o ports/179573 nemysis [NEW PORT] graphics/ampasCTL2 Color Transformation Lan o conf/179570 [patch] New version of /etc/periodic/weekly/330.catman o ports/179569 clsung textproc/refdb: Fatal error: Call-time pass-by-referen o ports/179568 tmseck www/squid STRICT_HTTP option has a typo since rev 3199 f ports/179565 miwi [MAINTAINER] devel/pecl-pthreads: [SUMMARIZE CHANGES] o ports/179564 swills [NEW PORT] devel/py27-ipdb: IPython-enabled pdb o misc/179562 [build] [patch] Add LOCAL_ITOOLS to ease site-specific o arm/179561 arm Compilation issue for lighttpd on raspberry pi o docs/179560 doc [handbook] brazilian portuguese translation to "DTrace o ports/179558 python Using portupgrade to (forcefully) upgrade devel/py-dis o amd64/179556 amd64 FreeBSD 9-1 amd64 - Install freeze on HP Proliant DL58 o ports/179555 sunpoet mail/libspf2 conflicts incorrectly with mail/p5-Mail-S o docs/179552 doc [handbook] brazilian portuguese translation to "Instal o ports/179551 osa [patch] databases/redis: add profiles to redis.in f ports/179549 flo sysutils/munin-node: fail2ban plugin wrong path for fa o kern/179547 wireless [ath] Add AR9485 custom board fixes (CUS198) o bin/179546 syslog(8)/newsyslog(8) don't handle years sanely o docs/179541 doc [handbook] brazilian portuguese translation to "Obtain o bin/179540 dhclient-script(8): dhclient does not apply changes to o ports/179539 nemysis [NEW PORT] graphics/OpenEXR2: High dynamic-range (HDR) o ports/179538 nemysis [NEW PORT] graphics/ilmbase2: ILM Base libraries a.k.a o misc/179536 [modules] File mps.ko.symbols is unconditionally insta o arm/179532 arm wireless networking on ARM o kern/179530 [syscons] tty gets unresponsive when in scrolling mode o ports/179528 culot [maintainer-update] Update security/py-fail2ban to ver o kern/179523 [cpuctl] [patch] Memory leak/corruption in cpuctl pseu o www/179521 www Google blocks freebsd.org page due to DMCA complaint o ports/179510 des ports-mgmt/porteasy still uses cvs o ports/179507 vbox devel/kBuild won't compile on current o usb/179505 usb Kernel detaches Arduino Leonardo (and similar) board u o ports/179500 gnome finance/gnucash does not install database dependencies o ports/179499 [patch] port sysutils/devcpu-data is unmaintained and o docs/179497 doc [patch] service.8 add csh completion example o ports/179495 romain ports-mgmt/portshaker needs update for marcuscom o bin/179488 wrong encoding of error messages in tcsh(1) f ports/179485 cs [UPDATE] deskutils/wyrd o kern/179482 wireless [ath] [patch] Fix AR9462 external LNA configuration o ports/179479 beech mail/p5-Mail-SpamAssassin: missed option definition fo o kern/179473 Source code contribution of implementation about virtu o ports/179469 gnome [patch] sysutils/hal: remove disk duplicate entries o conf/179466 [PATCH] Quote LOCAL_MTREE so submakes don't interpret o ports/179465 nemysis [MAINTAINER] net/enet: update to 1.3.8,1 o ports/179460 [MAINTAINER] multimedia/transcode: Add v4l support p docs/179459 pluknet the example function in filemon(4) should have a retur o bin/179451 new installer: Install fails on raid o ports/179450 kuriyama [PATCH] security/gnupg does not detect curl-config whe o ports/179444 osa www/nginx: Nginx Passenger module doesn't compile o kern/179429 net [tap] STP enabled tap bridge o conf/179422 "make: don't know how to make bsd.README. Stop" error o ports/179421 acm [Update] emulators/mednafen to 0.8.D.3 o ports/179420 gecko www/seamonkey freezes completely by accessing citrix x f ports/179418 marcus ports-mgmt/portlint: Portlint XXXDIR check o ports/179416 cy net/vnc compiles broken imake tool f ports/179412 beech [PATCH] x11-toolkits/pure-tk: New Uses pure, add licen f ports/179411 beech [PATCH] x11-toolkits/pure-gtk: New Uses pure, add lice f ports/179410 beech [PATCH] textproc/pure-xml: New Uses pure, add license f ports/179409 beech [PATCH] textproc/pure-csv: New Uses pure, add license f ports/179408 beech [PATCH] math/pure-rational: New Uses pure f ports/179407 beech [PATCH] net/pure-sockets: New Uses pure, add license f ports/179406 beech [PATCH] math/pure-mpfr: New Uses pure, add license f ports/179405 beech [PATCH] devel/pure-stlvec: New Uses pure, add license f ports/179404 beech [PATCH] graphics/pure-gl: New Uses pure, add license f ports/179403 beech [PATCH] devel/pure-stldict: New Uses pure, add license f ports/179402 beech [PATCH] devel/pure-readline: update to 0.2, New Uses p f ports/179401 beech [PATCH] /usr/ports/Mk/Uses/pure.mk: New Uses pure f ports/179400 gnome [PATCH] print/freetype2: Add Infinality patches f ports/179396 beech [PATCH] devel/pure-gen: New Uses pure:ffi, add license f ports/179395 beech [PATCH] devel/pure-ffi: update to 0.13, new Uses pure, f ports/179393 beech [PATCH] databases/pure-sql3: New Uses pure, add licens o kern/179392 pf [pf] [ip6] Incorrect TCP checksums in rdr return packe f ports/179391 beech [PATCH] audio/pure-audio: New Uses pure, add license f ports/179390 beech [PATCH] lang/pure: update to 0.57, remove bsd.pure.mk o ports/179380 danfe New port: dns/yadifa authoritive nameserver by EURid ( o amd64/179376 amd64 xhci ehci irq storm f ports/179373 edwin dns/dnstracer doesn't compile f ports/179370 updating science/paraview f ports/179365 switch devel/gnustep-make dependency from lang/gcc42 t o ports/179348 gnome [PATCH] graphics/passepartout: Trim docs, add FAM opti o usb/179342 usb Freebsd 10.0-current USB 3.0 not working (xhci_do_coma p ports/179338 marcus [patch] ports-mgmt/portlint various improvements o ports/179337 grog [PATCH] graphics/enblend: Fix docs, mtree, add Options o ports/179336 beech [PATCH] graphics/diacanvas2: Add license, NLS, fix doc o ports/179330 obrien [patch] update mirror list for editors/vim o ports/179327 beech [PATCH] games/gtktetcolor: Update to 0.6.5pre3, fix po o ports/179323 novel audio/easytag - needs -lintl o ports/179321 New port: sysutils/storcli SAS MegaRAID FreeBSD StorCL o misc/179312 PXE installer fails to boot without modification o misc/179311 [install] 9.1-bootonly install fails o ports/179306 miwi new port: devel/p5-MooX-Types-MooseLike-Numeric, Moo t o ports/179305 lippe new port: www/p5-Dancer2, Perl extension for minimal-e o ports/179301 nivit New textproc/py-genshi is incompatible with www/trac o kern/179299 net [igb] Intel X540-T2 - unstable driver o amd64/179288 amd64 unable to install on HP ProLiant DL380p Gen8 with 128G o ports/179287 beech [PATCH] games/euchre: Fix port, bad C++ code, add icon o ports/179286 beech [PATCH] games/gno3dtet: Fix typo, add dependencies, NL o bin/179285 [patch] ndiscvt(8): Remove dependency of ndiscvt on li o amd64/179282 amd64 [PATCH] Intel SMAP for FreeBSD-CURRENT f ports/179281 bapt [PATCH] mail/mutt14: optionsNG conversion; fix IMAP fo o ports/179278 sylvio [PATCH] devel/p5-Goo-Canvas: Fix port, add license, ad o kern/179269 wireless [ath] [AR9285] RX antenna diversity is not functioning f ports/179268 [PATCH] www/trafficserver: Fix disk usage miscalculate a kern/179264 net [vimage] [pf] Core dump with Packet filter and VIMAGE o stand/179248 standards A return value of telldir(3) only seekable for once o docs/179246 doc [patch] gnome porting updates o ports/179244 gahr [PATCH] devel/dparser: Fix docs, cleanup Makefile o ports/179243 beech [PATCH] deskutils/rubrica: update to 2.0.12, take main f ports/179242 beech [PATCH] comms/jerm: Trim REINPLACE_CMD, docs, fix term o i386/179239 i386 FreeBSD 9.x branch breaks atkb device for IBM XSeries o ports/179238 sylvio [PATCH] audio/mp3info: Trim install for gmp3info, comp f ports/179236 Build failure (lib-depends) for net/tigervnc when HPJP o ports/179235 beech [PATCH] audio/sphinx3: Trim pkg-plist, remove simple p o kern/179232 wireless [ath] panic in ath o ports/179228 bapt devel/yajl 2.0.4 distfile name incorrect o ports/179206 swills [patch] Please update archivers/ruby-zip to 0.9.9 o ports/179205 beech [PATCH] net-im/coccinella: Trim docs and pkg-plist, ad s ports/179204 gerald [patch] lang/gcc4[6789]: -Wcast-qual reports incorrec o ports/179203 [maintainer update] net/gpxe : Fix checksum mismatch o ports/179202 kde x11/kde4-workspace (and elsewhere): automoc4 SEGVs on o ports/179201 beech [PATCH] net-im/cjc: Trim docs and pkg-plist o ports/179200 beech [PATCH] net/pathneck: Add license. trim docs and pkg-d o ports/179198 beech [PATCH] net/tcpstat: Trim comment, docs, add license o ports/179188 perl New port: textproc/p5-checkbashisms o ports/179187 perl New port: security/p5-gpgdir o ports/179182 brd [PATCH] net-mgmt/rubygem-visage-app: Fix build o ports/179180 devel/freeocl: Minor changes regarding upcoming POCL p o bin/179174 [patch] flex(1) generated files trigger an alarm from o ports/179161 miwi ports/math/py-graphtool's Makefile fix o www/179160 www search "supported hardware" result links all give "pag o ports/179154 beech [PATCH] multimedia/dv2jpg: Use files/makefile instead o ports/179149 beech [PATCH] multimedia/mkxvcd: Trim docs, add license o misc/179147 MotherBoard ASUS E2KM1I-DELUXE mini-ITX o ports/179140 miwi [new ports] emulators/fs-uae and emulators/fs-uae-laun o ports/179131 beech [PATCH] multimedia/subtools: update to 20081026, Conve o ports/179130 beech [PATCH] multimedia/vcdgear: Convert to OptionsNG, trim o ports/179127 ale math/gmp should set CONFIGURE_ENV+= ABI="mode64" for p o ports/179124 gnome [PATCH] graphics/cairomm: Convert to OptionsNG, trim d o ports/179121 multimedia [PATCH] graphics/exiftags: Convert to OptionsNG o kern/179117 mav [ata] ata device fails without option ATA_CAM o ports/179116 New port: graphics/xcftools Command-line tools for ext o i386/179115 i386 [uart] Writing to uart1 causes host to hang o kern/179113 mav [ata] ATA DMA does not fall back on systems that misre o conf/179111 set -e no longer implicitly set after fmake -> bmake m o usb/179109 usb After detach USB Flash a keyboard does not work. o usb/179107 usb [usb] After detach USB Flash a keyboard does not work. o ports/179097 beech [NEW PORT] x11-fm/pcmanfm-qt: PCManFM Qt File Manager o ports/179096 beech [NEW PORT] security/fpm2: Program that allows you to s o ports/179095 beech [NEW PORT] net-mgmt/wlan2eth: Convert packet captures o ports/179094 beech [NEW PORT] net/p5-Test-Pod-Coverage: Check for pod cov o ports/179093 beech [NEW PORT] net/mobile-broadband-provider-info: Mobile o ports/179092 beech [NEW PORT] games/pangzero: Clone of Super Pang o ports/179090 beech [NEW PORT] games/vacuum-magic: Fast-paced action game o ports/179089 beech [NEW PORT] games/capicity: Qt client for the Monopd se o ports/179088 beech [NEW PORT] games/lugaru: 3D arcade with unique fightin o ports/179087 beech [NEW PORT] deskutils/kupfer: Convenient command and ac o ports/179086 beech [NEW PORT] games/xgalaga-sdl: Classic single screen ve o bin/179085 [tools] [patch] pthread patch for netblast o ports/179076 jhale security/gpgme: Updating dependencies to solve a confi o ports/179074 miwi [NEW PORT] devel/pecl-event: Provides interface to lib o ports/179070 gahr sysutils/tmux does not redraw existing characters when o ports/179066 gnome [PATCH] devel/gvfs: Add FUSE to default Options, add p o ports/179065 Add RDRAND/F16C support to misc/cpuid o bin/179048 watch(8) doesn't stop listening TTY when user releases o amd64/179038 amd64 instant reboot doesnt even try too install p kern/179033 jhb [dc] dc ethernet driver seems to have issues with some o ports/179017 miwi New port: sysutils/rcadm utility for administrating rc o ports/179016 danfe x11/nvidia-driver ports do not because freebsd-update f ports/179010 [PATCH] devel/doxygen: update to 1.8.4_1 o ports/179005 rafan devel/ncurses: no .pc files - needed for straightforwa o ports/179004 gnn update devel/zookeeper f ports/179003 Port net-mgmt/nagios has lost dependency(textproc/php5 s ports/179000 dinoex Updating graphics/png fails on make test o kern/178999 smh [zfs] dev entries for cloned zvol don't show up until o ports/178998 New port: devel/sfml2: a multimedia library o kern/178997 [vfs] [patch] Heavy disk I/O may hang system o ports/178995 uqs games/bsdgames adventure segfault when saving on amd64 o kern/178986 wireless [ath] Change mac address of ath(4) is not reflected wh o ports/178982 devel/opencl: Update and patch Makefile o conf/178978 gjb [patch] Race in make release when make system/bootonly f ports/178973 [PATCH] net/scribe: Use USE_GITHUB framework to fetch o kern/178953 [lor] kdb_backtrace() at kdb_backtrace+0x39/frame 0xff o kern/178947 net [arp] arp rejecting not working o ports/178945 madpilot [NEW PORT] devel/commit-patch: Commit patches or parti s ports/178930 lua [patch] lang/lua52 to use Mk/bsd.lua.mk o ports/178888 beech [MAINTAINER] graphics/xsane: update to 0.999 o ports/178887 portmgr [pkgng] [request] Desired pkgng metadata o kern/178881 hrs [patch] getifaddrs(3) does not report IPv6 addresses p o misc/178862 [tools] [patch] fix cross-compilation (amd64/i386) of o ports/178856 java java/openjdk6, java/openjdk7: Java fails to print when o ports/178855 [maintainer update] games/armagetron o kern/178854 fs [ufs] FreeBSD kernel crash in UFS o ports/178842 swills www/rubygem-actionpack make fails with ruby 2.0 o misc/178838 [build] share/i18n/csmapper tries to use $DESTDIR/usr/ o kern/178830 [alq] [panic] kldload alq then kldunload alq then init o ports/178829 erwin dns/bind99 -> /etc/rc.d/named failed start f ports/178826 Upgrade net/rabbitmq to 3.1.1 o bin/178819 bmake w/ WRKDIRPEFIX=/tmp breaks Ports Collection o docs/178818 doc gmirror(8) says to use rc.early which is no longer ava o misc/178817 install from cdrom fail after cdloader o ports/178816 java java/netbeans does not build, compile error at java/op o ports/178808 devel/wxGlade raises exception when generating XRC cod o ports/178807 portmgr [patch] bsd.port.mk: let PORTDATA deal with empty dire o ports/178799 osa [Patch] Add 3rd party StatsD Module to www/nginx port o ports/178796 gnome irc/xchat fails to link with gcc46/47 o kern/178795 scsi [mps] MSI for mps driver doesn't work under vmware o amd64/178792 amd64 -march=native fails with clang on certain CPU's f ports/178785 mail/dracmail: adoption of optionsNG, and standardize o ports/178784 [patch] enable PowerPC support in devel/gdb o ports/178783 [NEW PORT] misc/auto-multiple-choice: Multiple Choice o kern/178782 net [ixgbe] 82599EB SFP does not work with passthrough und o ports/178780 [patch] updated databases/libdbi-drivers to 0.9.0 o ports/178779 clsung I have updated databases/libdbi to 0.9.0 o usb/178773 usb [usbdevs] [patch] Huawei E303 USB 3G modem support o ports/178772 Port update: net-mgmt/snmptt o usb/178771 usb [usbdevs] [patch] Western Digital My Passport HD f ports/178766 science/hdf5: crt1.c:(.text+0x8a): undefined reference o bin/178764 [PATCH] [bluetooth] synch __arraycount definition fix o ports/178762 bdrewery [patch] Mk/bsd.port.mk: Store options alphabetically o ports/178757 devel/freeocl: Update o ports/178748 python [patch] lang/python27: dbm module fails to build o ports/178732 glebius astro/gpsd: TypeError: Tried to lookup Dir '/usr/local o docs/178730 doc move roff papers out of src into doc o ports/178728 java [UPDATE] devel/apache-ant to v1.9.0 o ports/178726 [PATCH] databases/mariadb55-server: multi-instances st o usb/178722 usb FreeBSD 9.1-STABLE r250561 breaks support for webcam L o kern/178713 fs [nfs] [patch] Correct WebNFS support in NFS server and o ports/178709 vg [new port]: databases/hyperdex Searchable distributed o ports/178701 danfe audio/ardour fails to build o ports/178699 gnome [fix] devel/xdg-utils fails without ${LOCALBASE}/share o ports/178698 gnome graphics/gimp: package dependencies failing o ports/178695 [new port] www/eaccelerator-devel Development version o bin/178692 [PATCH] pkill(1): use __dead2 over __attribute__((nore o kern/178689 [uart] [patch] Extend PCI devices in uart driver f ports/178687 vg audio/clementine-player fails to build o kern/178684 geom gpart(8) cannot get my GEOM tree o misc/178683 [install] segmentation fault in disklabel while instal o docs/178677 doc *** [article.html] Error code 1 Stop in /usr/doc. o kern/178671 multimedia [snd_hda] snd_hda stops working as soon as X starts o ports/178670 x11 x11/xorg: X does not refresh upper 1/4 screen in some o kern/178667 [mac] [patch] mac_lomac policy ignores aux label when p ports/178666 dinoex graphics/xv broke by imake/clang o bin/178664 truss(1) may kill process o ports/178647 java java/openjdk6 does not build (without extra hack) o docs/178642 hiren [patch] typo in man page for atol f ports/178616 ports-mgmt/porttools: port test does not handle pkgNG o ports/178614 vg [new port]: databases/php5-tarantool PECL PHP driver f o kern/178612 net [run] kernel panic due the problems with run driver o bin/178609 pkg_info -g fails to notice when files have been chang o bin/178604 pkg_info -g reports symlinks as missing when ther _are o bin/178603 pkg_info -g reports file is missing when it is just un o ports/178601 pgsql databases/postgresql92-server: postgresql port has wro o i386/178565 i386 panic: pmap_promote_pde: page table page is out of ran o ports/178557 Ports with USE_GCC=any don't respect local CC and CXX o ports/178533 osa [PATCH] www/nginx: nginx+3rd syslog support o ports/178524 gecko BATCH=yes not work for www/firefox-i18n o ports/178516 perl [NEW PORT] net-mgmt/p5-GRNOC-Config: A module to allow o ports/178508 itetcu mail/dspam: Fix for MariaDB/Percona and OptionsNG over o kern/178507 [libradius] [patch] Comment bug in src/lib/libradius/r o ports/178497 [maintainer update] databases/datamodeler version upda o arm/178495 arm buildworld fail on arm/raspberry pi o kern/178492 wireless [ath] ath0 (AR9287) panic o kern/178491 wireless [ath] ath0 (AR9287) stuck beacon o kern/178482 ipfw [ipfw] logging problem from vnet jail o kern/178480 ipfw [ipfw] dynamically loaded ipfw with a vimage kernel do o kern/178477 wireless [ath] missed beacon / soft reset in STA mode results i f ports/178475 [UPDATE] graphics/gmt: New version 4.5.9 available o ports/178474 [NEW PORT] games/linux-dwarf-fortress: Dwarf Fortress o bin/178473 gmultipath(8) needs to be smarter about errors o kern/178472 net [ip6] [patch] make return code consistent with IPv4 co o kern/178470 wireless [panic][ath] bss vap can and does change s kern/178467 fs [zfs] [request] Optimized Checksum Code for ZFS o bin/178463 [patch] Remove cpp usage from calendar(1) o ports/178457 [New port]audio/hydrogen-devel f ports/178452 swills [PATCH] sysutils/ldap-account-manager: [SUMMARIZE CHAN o ports/178448 sunpoet Upgrade net/mDNSResponder to 379.37 o ports/178447 portmgr [bsd.sites.mk] Fix MASTER_SITE_KERNEL_ORG o ports/178441 [NEW PORT] databases/memkeys: A tool to show memcache o ports/178436 sem [PATCH] devel/gsoap doesn't work with make reinstall o ports/178433 office editors/libreoffice generates zombie processes after i f ports/178431 graphics/geos hardcodes PHP 5.4 version o kern/178412 fs [smbfs] Coredump when smbfs mounted o kern/178411 wireless [ral] [panic] FreeBSD kernel crash in rt2860 o ports/178410 autotools devel/automake-wrapper doesn't symlink aclocal properl o ports/178405 perl devel/p5-Moose coredumps when built in Tinderbox f ports/178404 ohauer new port: www/mod_define, Apache 2.2.x module for use o kern/178396 [kernel] [patch] Add jid to kernel log when a process o ports/178394 mva [patch] print/pslib conditionally use gettext o bin/178392 [patch] Add support for WebNFS mounts to mount_nfs(8) o kern/178388 fs [zfs] [patch] allow up to 8MB recordsize o kern/178387 fs [zfs] [patch] sparse files performance improvements o bin/178385 ktrace(1): 'ktrace -t f' (page faults) generates gigab o ports/178383 office Upgrade x11-fonts/linuxlibertine to version 5.3.0 o kern/178379 wireless [net80211] [ath] WPA rekey on the STA side fails when o kern/178378 wireless [net80211] crypto state isn't reset during a reassocia o ports/178364 eadler [patch] Port dns/adns add option to apply patch o kern/178359 geom [geom] [patch] geom_eli: support external metadata o amd64/178357 amd64 [patch] export CPU physical and virtual address sizes o kern/178349 fs [zfs] zfs scrub on deduped data could be much less see f ports/178346 bdrewery cache all the things o kern/178337 Not reboot after world rebuild o ports/178333 lippe [new port] net/libnss-pgsql: allow user accounts to be o kern/178329 fs [zfs] extended attributes leak f ports/178324 danfe [Update] games/frogatto to 1.3.1 o bin/178323 pkg_add(1) should get shipped with PACKAGEROOT with ht o kern/178319 loos [patch] [arge] arge_stop() doesn't clean the tx ring p o kern/178318 loos [patch] [arge] if_arge/bootp race under some circunsta o kern/178317 ipfw [ipfw] ipfw options need to specifed in specific order o misc/178311 re [boot] USB boot image booting fault o bin/178302 jail jail(8): unknown parameter: ip6.addr when kernel compi o ports/178301 python [patch] lang/python2[67]: SEM option is inconsistent o ports/178297 sperber multimedia/miro package and port throw errors o docs/178286 doc [PATCH] document the LOCAL_* vars in build(7) o misc/178284 [build] make installworld doesn't detect UID correctly o ports/178282 cy net/ntp dies immediately on startup s ports/178281 [new port] www/torbrowser: Request for a Native Torbro f ports/178275 build failed: net/rabbitmq: validity error : Could not o ports/178273 multimedia multimedia/gstreamer-plugins: It's hava no package of o ports/178272 sem [PATCH] devel/gsoap: fix build with GNUTLS option enab o ports/178271 bdrewery Simplify bsd.port.subdir.mk f ports/178270 mva graphics/blender 2.66a crashes when OpenAL sound drive o usb/178267 usb [usb] USB causing interrupt storm on irq16 o kern/178263 wireless [ath] review the use of ic_freq / ic_ieee / ic_flags / o ports/178262 sem [patch] dns/unbound, dns/ldns: openssl port iff base v o kern/178252 [kernel] syncer infinite loop [regression] f ports/178251 [patch] converters/unix2dos implicit declaration of fu o kern/178249 [boot] Mounting from cd9660:/dev/iso9660:/dev/iso9660/ o amd64/178247 cperciva linker.hints erroneously included in 9.1-RELEASE-p3 bi f ports/178246 mail/fetchyahoo: is BROKEN f ports/178245 [patch] mail/getlive: 3.0 has been released o ports/178244 amdmi3 [patch] Update games/minetest to 0.4.6 o ports/178243 flo net/asterisk11 makefile missing options o ports/178242 python bsd.python.mk injection of @exec easy_install to PLIST o ports/178240 Update port science/meep to 1.2 f ports/178239 Update port science/libctl to 3.2.1 o kern/178238 fs [nullfs] nullfs don't release i-nodes on unlink. f kern/178231 fs [nfs] 8.3 nfsv4 client reports "nfsv4 client/server pr f ports/178229 devel/gnustep failed install - no objective c compiler o kern/178225 [bwn] kernel panic during high network activity o docs/178221 doc Addition to handbook jails chapter: warning about make o conf/178215 [PATCH] remove mail/sendmail bits if MK_MAIL/MK_MAILWR o conf/178210 [PATCH] make bsdinstall optional o conf/178207 [PATCH] don't build mailwrapper if MK_MAILWRAPPER == n o bin/178203 clang not properly sourcing headers in buildworld when o ports/178199 java java/openjdk6 regression amd64/clang o ports/178196 /usr/ports/www/trac-mercurial broken o www/178190 doc myths web page should be updated o ports/178189 nobutaka [PATCH] www/w3m: make slave ports work as are before m o misc/178188 Error during buildworld f ports/178187 [PATCH] games/freedink-dfarc: Fix build and plist o kern/178183 [ata] ATAPI CDROM fails to attach correctly with ATA_C o kern/178177 intermittent, random page fault panics a ports/178170 x11 [patch] x11-servers/xorg-server: xkb misbehaviour on k o ports/178160 emulators/sness9express: Fix build o ports/178128 rea [UPDATE] www/trac-autocomplete: Update to 0.4.2 & Take o ports/178127 rea [UPDATE] www/trac-datefield: Update to 2.0.0 & Take ma o ports/178126 [NEW PORT] databases/mysql56-server-cluster: MySQL Clu o ports/178125 [NEW PORT] databases/mysql56-client-cluster: Multithre o docs/178119 doc [ports] Porter's handbook lacks examples for using Opt o kern/178116 cy [ipfilter] [panic] Kernel panic: general protection fa o misc/178115 Laptop (Asus X55VD) locks up when configuring wifi (Ra o conf/178113 [rc.conf] tmpmfs rc.conf setting ignored o kern/178103 fs [kernel] [nfs] [patch] Correct support of index files o ports/178098 gnome sysutils/polkit will not build if glib20 is too old o ports/178096 portmgr [exp-run] LEGAL variable to capture generic issues f ports/178094 python math/py-numpy dependency on atlas assumes existing ins o kern/178091 [md/nfs/vfs] md filesystem layering not handled correc o ports/178087 rea [UPDATE] www/trac-defaultcc: Update to 0.3 & Take main o kern/178079 net [tcp] Switching TCP CC algorithm panics on sparc64 wit o docs/178077 doc [patch] Correct description of -webnfs in exports.5 o ports/178072 portmgr [PATCH] [bsd.port.mk] look for Makefile.local in ${POR s kern/178071 net FreeBSD unable to recongize Kontron (Industrial Comput o conf/178068 [PATCH] simplify _libraries by filtering out __L o conf/178065 [PATCH] _worldtmp can fail sometimes if WORLDTMP/LIB32 o ports/178063 kde [Patch] graphics/digikam-kde4 can't edit images o conf/178062 make depend broken on CURRENT with lib/libgpib for cla o kern/178061 [ukbd] panic at reboot when hitting scroll-lock; race o bin/178055 tftp / tftpd file transfer ends up with incorrect size o ports/178052 New port submission: dns/mDNSRedponder_nss f docs/178049 crees [handbook] PKGNG information misleading f ports/178042 sysutils/ezjail: zsh completion does not work o power/178038 ppc clang++ fails to produce a binary in powerpc64 o ports/178023 gnome [patch] graphics/cairo: add a fix for text redrawing i o conf/178005 setuid periodic checks do dumb diff of file informatio f ports/177991 astro/qlandkartegt : upgrade to 1.7.0 o kern/177985 fs [zfs] disk usage problem when copying from one zfs dat o ports/177980 portmgr Please apply autotools fix universally o kern/177971 fs [nfs] FreeBSD 9.1 nfs client dirlist problem w/ nfsv3, o docs/177968 doc bpf(4): documentation of BIOCROTZBUF is incomplete o kern/177966 fs [zfs] resilver completes but subsequent scrub reports o ports/177954 sylvio devel/bglibs: patch: perl is only needed runtime o kern/177948 ipfw [ipfw] ipfw fails to parse port ranges (p1-p2) for udp f ports/177944 crees news/sabnzbdplus rc script breaks on non-ip host value o ports/177937 rm textproc/py-elib.intl: leftover in case of py-nose is o ports/177906 [new port] x11-fonts/fpf Free Persian font o kern/177905 net [xl] [panic] ifmedia_set when pluging CardBus LAN card o kern/177902 [headers] [request] atomic.h - vital functions missing o usb/177897 usb [u3g][patch] add support for the Huawei E352 modem o usb/177896 usb man page for usb_quirk suggests adding device to kerne o usb/177895 usb similar 1TB Western Digital "My Passports" - some load p kern/177889 delphij [ip] [patch] fix printf to generate coherent message, p kern/177888 delphij [netinet] [patch] Missing mutex unlock - deadlock mult o bin/177885 [patch] cp(1): regression on cp performance o kern/177878 embedded [rtl8366rb] [patch] Update rtl8366rb switch driver to o kern/177876 mips [mips] kernel stack overflow panic on mips64, EdgeRout o bin/177873 embedded [patch] etherswitchcfg(): Change the per port vlangrou o bin/177872 embedded [patch] etherswitchcfg(8) crashes if called with no ar o bin/177871 embedded [patch] etherswitchcfg(8): uninitialized variable whil o kern/177862 [ofed] [patch] Fix atomic bitstring operations in sys/ o ports/177861 glewis [patch] Use NetHack data librarian for games/nethack34 o bin/177860 top(1) does not show time units when time > 999 days. f ports/177855 miwi [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 o kern/177847 wireless [ath] With TPC enabled, TX power values aren't clamped o kern/177846 wireless [ath] [net80211] net80211 TX power limit isn't correct o conf/177845 WITH_BMAKE does not work on CURRENT o ports/177838 makc New port: multimedia/openstopmotion Webcam capture pro o kern/177832 mips [mips] [gpio] [patch] GPIO and RF LED do not function o misc/177823 repo.txz is not available for freebsd 9.1 o kern/177821 Some security.jail sysctl nodes are funky o kern/177810 pf [pf] traffic dropped by accepting rules is not counted o kern/177808 pf [pf] [patch] route-to rule forwarding traffic inspite o kern/177804 [keyboard] atkbdc_setup() integer divide fault under Q o ports/177802 java Could not update openfire because of problem in java/o f ports/177801 stephen math/sage: /configure: not found configure: error: Una o ports/177800 swills x11/xpra 0.8.8 does not work (pthread_mutex_unlock pro f ports/177797 [PATCH] mail/postfix-policyd-spf-python: update to 1.1 o ports/177793 miwi [maintainer update] multimedia/qmmp, multimedia/qmmp-p o ports/177791 portmgr ports which have dynamic PKGNAMEPREFIX with OPTIONS ne o ports/177786 timur net/samba36 net/samba-nmblookup multimedia/xbmc confli o ports/177785 vanhu security/ipsec-tools: ipsec-tools 0.8.0 racoon tends t o bin/177781 hrs rpc.statd / rpc.lockd do not start when used with -p o o ports/177779 glewis java/openjdk7 missing pkg-message about fdescfs and pr o ports/177771 maintainer update: math/dolfin-devel f ports/177758 security/amavisd-milter does not build on FreeBSD 9.1 o ports/177756 swills emulators/open-vm-tools needs to be updated o ports/177753 New port: sysutils/slurm-devel p ports/177746 rpaulo [PATCH] devel/subversion fbsd template 'Sponsored by:' o ports/177745 New port: science/lammps o ports/177744 New port: science/lammps-openmpi o kern/177743 emulation [kvm] [panic] kernel panic during `portsnap update` on o stand/177742 standards conflict of dd's bs= option with use of conv=sparse f ports/177741 net-mgmt/sipcalc cannot handle ipv6 zone index o ports/177722 emulation Change request: Add terminfo database to linux_base-* f ports/177721 multimedia/mplayer: Missing dependency o ports/177712 swills I have updated emulators/open-vm-tools to version 9.2. p kern/177706 gnn [dtrace] [patch] DTrace sched:::off-cpu args[0] should o kern/177705 [libc] wrong IPv6 link local address reported by getif o docs/177699 doc Documentation (handbook and manpage) for mac_biba does o kern/177698 [libutil] [patch] sshd sets the user's MAC label at th o ports/177692 New port: science/openkim o conf/177688 wireless WiFi regodmains information is inconsistent between "e o arm/177687 arm gdb gets installed but does not know the EABI version o arm/177686 arm assertion failed in ld-elf.so.1 when invoking telnet w o arm/177685 arm [kernel] [patch] Correct return type and usage of at91 o ports/177681 perl [maintainer update] ports audio/libamrnb and audio/lib o ports/177680 mva Move 'games/tmw' to 'games/mana' f ports/177677 pgsql /usr/local/bin/grep halts databases/postgresql84-serve f ports/177669 news/nzbget - PostProcess script terminated with unkno o ports/177667 wen graphics/mapserver: configure: error: cannot find java o usb/177666 usb [usbdevs] [patch] Add support for Texas Instruments / o ports/177659 bland x11/nvidia-xconfig problem o kern/177658 fs [ufs] FreeBSD panics after get full filesystem with uf o ports/177651 New port: security/openiked OpenBSD's IKEv2 daemon o ports/177643 Update port graphics/fotoxx to latest version o ports/177642 cy graphics/xpdf fails o ports/177638 johans graphics/xpaint has problems o kern/177636 [libc] getdtablesize() is sometime return illegal valu o kern/177624 [libc] [patch] Swapcontext can get compiled incorrectl o ports/177620 tj databases/py-MySQLdb*: Inconsistent CONFLICTS o kern/177618 net [bridge] Problem with bridge firewall with trunk ports o ports/177616 xfce x11/xfce4-terminal doesn't always spawn new tab when < f ports/177610 crees security/maia makefile check for mysql-client does not o conf/177607 named.conf comment to slave root suggests potentially o ports/177598 dhn [PATCH] devel/nasm: update to 2.10.07 o ports/177589 [maintainer update] misc/vifm: update to 0.7.4b f ports/177588 ports-mgmt/porttools: does not permit SVN diff mode ou o ports/177584 lippe New port: sysutils/graffer - utility which collects n o ports/177577 rafan print/freetype-tools and print/psutils-letter conflict o ports/177576 bf math/maxima fails to start with SBCL and quicklisp o bin/177573 cperciva portsnap(8): Ports collection don't update when using o kern/177571 jfv [ixgbe] Cannot select media type. o ports/177565 [NEW PORT] www/trac-keywordsecretticket: Adds ticket s o arm/177538 arm tunefs(8) and mount(8) can not access a newfs(8)'d fil o kern/177536 fs [zfs] zfs livelock (deadlock) with high write-to-disk o ports/177532 multimedia multimedia/gstreamer-plugins-* ports missing dependenc o kern/177530 wireless [ath] ath driver isn't 32 bit int clean o ports/177529 sbz security/crack: bad package, produces no manifest o docs/177514 doc [handbook] ZFS examples do not cover dataset creation o ports/177512 Make emulators/snes9express compile again o ports/177506 irc/unreal: Update UnrealIRCD to 3.2.10 f ports/177497 mail/dovecot startup script breaks onestart functional p kern/177495 andreast [patch] Fix a small typo in a comment o ports/177492 [New Port] graphics/multiraw (replace prev) o ports/177490 [New Port] graphics/dcraw-m Modified dcraw o ports/177488 nox emulators/qemu: qemu-1.4 s ports/177479 kde devel/py-pykde4 doesn't saves port options o ports/177475 nivit devel/py-stevedore DOCS require X11 o ports/177468 bland converters/iconv build failed with perl5.16 o ports/177466 jadawin [patch] Update of irc/irssi-xmpp to 0.52 o kern/177465 wireless [iwn] 20%-100% packet loss with iwn driver o ports/177458 gnome devel/gobject-introspection coredumping things o docs/177457 doc diskinfo(8): diskinfo -v shows inacurate drive size p kern/177456 glebius [tcp] [patch] An error of calculating TCP sequence num o ports/177454 swills Build of emulators/open-vm-tools-nox11 fails on system o kern/177451 wireless [ieee80211] page fault in ieee80211_tx_mgt_timeout o misc/177450 re LiveCD should include smartmontools/smartctl o kern/177445 fs [hast] HAST panic o kern/177442 [puc] StarTech 1 Port PCIe parallel Adapter card not r o docs/177431 doc Handbook & Announcements recommend poor dd options for o docs/177429 doc dd(1) man page is unclear about semantics of conv=sync o kern/177417 net [ip6] Invalid protocol value in ipsec6_common_input_cb o ports/177411 [NEW PORT] databases/mysql-udf-ipv6: MySQL UDFs provid f ports/177407 graphics/fotoxx: MASTER_SITES kornelix.squarespace.com f ports/177406 update port and add arch: lang/mlton o ports/177404 gecko www/firefox: youtube videos in firefox not working o ports/177403 portmgr [patch] Mk/bsd.port.mk: Incomplete evaluation of OSVER o kern/177402 net [igb] [pf] problem with ethernet driver igb + pf / alt o ports/177401 portmgr Mk/bsd.ldap.mk move -DLDAP_DEPRECATED from CFLAGS to C o kern/177400 net [jme] JMC25x 1000baseT establishment issues f ports/177397 [patch] security/heimdal: fix conflict between heimdal o ports/177396 acm print/foomatic-filters: foomatic-rip needs both inputf o ports/177375 bf devel/pcre segmentation fault executing match() f ports/177371 sysutils/smartmontools - triggers channel blocking o ports/177370 New port: audio/opusfile o kern/177366 net [ieee80211] negative malloc(9) statistics for 80211nod o ports/177365 bdrewery [patch] ports-mgmt/portupgrade-devel enhancements o ports/177364 [patch] math/scilab port build fails configuration ste o ports/177363 graphics/pqiv aborts when opening an image f kern/177362 net [netinet] [patch] Wrong control used to return TOS o ports/177352 sylvio [PATCH] graphics/gnofract4d: update to 3.14.1, Convert o ports/177349 clsung [patch] sysutils/xosview new version available o ports/177345 dhn [PATCH] graphics/gocr: update to 0.50, Convert to Opti f ports/177336 crees New port: security/sav o ports/177333 acm [PATCH] games/ceferino: o ports/177327 amdmi3 multimedia/openmovieeditor core dumps on FreeBSD 9.1-R f ports/177322 beech [PATCH] graphics/imageindex: Convert to OptionsNG o kern/177319 [kernel] [patch] Add more x86 CPU feature flag definit o ports/177300 jgh New port: java/intellij IntelliJ IDEA Community Editi f ports/177288 fluffy x11-fm/krusader2 missing minimize icon in windowmaker o ports/177286 nivit [PATCH] graphics/l2p: Convert to OptionsNG, fix Master f ports/177282 gnome graphics/inkscape does not compile o ports/177281 multimedia multimedia/avidemux2 does not compile s ports/177278 dinoex graphics/gegl does not compile o ports/177268 osa [PATCH] graphics/libraw: Convert to OptionsNG o kern/177240 fs [zfs] zpool import failed with state UNAVAIL but all d o ports/177230 portmgr add bsd.port.mk target to list the package name of mis o bin/177229 /etc/motd overflows 24 lines after login from live med o ports/177226 gnome devel/glib20 update: gnome-gmail-notifier won't start o ports/177220 skreuzer New Port: ports-mgmt/chucky o kern/177219 [mfi] mfi driver does not load 8888elp during boot, bu o conf/177217 rc [patch] rc.d/ddb -- squelch warning when ddb_enable=ye o docs/177215 doc [handbook] [patch] FreeBSD uses SHA512 and no more MD5 o ports/177211 net-mgmt/cflowd: cflowd CflowdPacketQueue.cc fix o ports/177202 vbox [PATCH] emulators/virtualbox-ose option to skip buildi p ports/177201 thierry french/aster: [PATCH] doesn't build in poudriere, seve o ports/177196 lwhsu [MAINTAINER] www/gist: obsolete bundled certificate o kern/177194 net [netgraph] Unnamed netgraph nodes for vlan interfaces f ports/177193 audio/moc: please include FLAC support by default in p o ports/177186 gavin net/arping: update to 2.13 to fix false timeout proble o kern/177184 hiren [bge] [patch] enable wake on lan o ports/177182 audio/mixxx segmentation fault f ports/177180 romain ports-mgmt/portshaker not aware of pkgng format p usb/177173 hselasky add buffalo's sg54hg support to rum f ports/177172 rea new port mail/dovecot22-devel o kern/177165 hiren [patch] Fixing clang warnings at /sys/geom o kern/177163 hiren [patch] Fixing clang warnings at /sys/dev/mps o kern/177156 [patch] Fixing clang warnings at /sys/dev/oce o kern/177155 hiren [patch] Fixing clang warnings at /sys/dev/safe o kern/177153 [patch] Fixing clang warnings at /sys/ufs/ufs f ports/177152 sysutils/fusefs-kmod missing pkg-message file o kern/177151 [patch] Fixing clang warnings at /sys/dev/vxge o ports/177150 swills lang/ruby18 When configured with onigurama attempts to o ports/177145 mm [patch] multimedia/ffmpeg1 Update to 1.2 o kern/177139 net [igb] igb drops ethernet ports 2 and 3 o kern/177108 [mvs] mvs driver with MV88SX6081 have timeout waiting p usb/177105 hselasky add dlink dwr-510's support to u3g o ports/177092 jhale audio/chromaprint coredumps o conf/177089 rc ntpd startup script does not work well o ports/177086 gnome www/webkit-gtk3 does not build o bin/177080 gpart(8): /dev/gpt labels are not updated on ``gpart m o ports/177074 [fix] audio/timidity and audio/guspat o ports/177071 editors/slime not working with emacs-24 o ports/177059 kde devel/cmake: /usr/share/cmake/Modules/FindLibXml2.cmak o docs/177056 doc typo in link in handbook section 31.4.16 o bin/177047 [patch] Adding date to wall(1) output message can be u o ports/177045 itetcu mail/dspam: Bring dspam up to date with latest stable o kern/177032 mips [arge] arge1 fails to attach on UBNT Routerstation o ports/177018 kde Can't build devel/xsd o ports/177016 delphij [PATCH] net/openldap24-server: Fix local-modified sche o ports/177014 new port: databases/sqlayer p usb/177013 hselasky [patch] Adding support for LOGITEC LAN-W300N/U2S on if o kern/177008 [kmod.mk] [patch] EXPORT_SYMS make variable is broken o ports/177006 perl [PATCH] lang/perl5.12, lang/perl5.14, lang/perl5.16: D o kern/176992 cy [ipfilter] panic from ipfilter/ipnat when VIMAGE optio o kern/176991 calcru: runtime went backwards in amd64 p ports/176989 dinoex ports graphics/graphviz fails to build with clang o i386/176987 i386 [install] Unable to install FreeBSD 9.1-RELEASE on Sam o ports/176984 fjoe misc/dahdi-kmod: FreeBSD crashes periodically with Red o kern/176978 fs [zfs] [panic] zfs send -D causes "panic: System call i o ports/176977 bf [patch] lang/expect update to 5.45 and drop lang/expec o ports/176969 mva audio/sdl_sound: fix depend o ports/176968 mva audio/sdl_mixer: fix depends o ports/176951 tmseck www/squid32 failed to start because of hard-coded acl o ports/176931 dhn [PATCH] devel/synfig: OptionsNG, added license, Port i o ports/176930 dhn [PATCH] graphics/synfigstudio: OptionsNG, Port is now o ports/176925 bdrewery ports-mgmt/pkg: pkg version fails if cwd no longer exi p stand/176916 jilles [patch] sh(1): implement multiple arguments to wait bu o usb/176913 usb [ehci] High interrupt load with ehci o ports/176901 kde [bsd.cmake.mk] disable rpath removal o ports/176900 sylvio [PATCH] mail/mpop: openssl library cannot be found. o ports/176898 horde A number of Horde pear modules are out of date causing o ports/176894 perl lang/parrot 4.6.0 update failed o ports/176891 lioux misc/libmetalink: updated to 0.1.2 o ports/176889 portmgr ports-mgmt/pkg: pkg update doesn't fetch updated repo p bin/176886 jh [PATCH] tail(1): tail -F file1 file2 > file3 places fi o kern/176884 net [re] re0 flapping up/down f ports/176874 sysutils/fusefs-sshfs crashes on amd64 o ports/176869 kde x11/kde4: klauncher crash while attaching virtual cdro o docs/176864 bjk tzfile(5) has wrong path to tzfile.h o ports/176862 kde [request] x11/kde4: supply debug libs for KDE binary p o kern/176857 fs [softupdates] [panic] 9.1-RELEASE/amd64/GENERIC panic f ports/176855 sunpoet [PATCH] databases/p5-KyotoCabinet: update to 1.20 o usb/176841 usb [umass] Sony DSC-H2 USB connection fails o ports/176840 miwi New port: www/p5-Toader A easy to use CMS that opera o amd64/176835 amd64 Fatal trap 12: page fault while in kernel mode o docs/176832 bjk Proposed changes to jail.8 man page f ports/176816 www/privoxy+ipv6 is obsolete f ports/176809 sunpoet [PATCH] science/hdf5-18: update to 1.8.10, take mainta o bin/176807 [libgssapi] [patch] libgssapi causes segfaults on i386 o docs/176806 doc recv(2) man page grammatical fixes f ports/176805 rc scripts provided with security/heimdal haven't a co s ports/176804 kde devel/qt4-corelib 313633 does not build on 9-STABLE f ports/176796 timur net/samba4 package build fails,missing libcom_err-samb o ports/176788 office editors/libreoffice build failure in tail_build o ports/176782 skreuzer new port: dns/bind10 o ports/176773 zeising [PATCH] devel/libffi - install to standard path o ports/176767 [patch] net-im/ari-yahoo broken on freebsd-head o kern/176763 pf [pf] [patch] Removing pf Source entries locks kernel. f ports/176758 timur [patch] databases/tdb: samba talloc + tdb incorrect w/ o kern/176748 [libi386] [patch] BTX Loader i386 incorrectly probes E o kern/176744 geom [geom] [patch] BIO_FLUSH not recorded by devstats o bin/176740 des [patch] sshd(8) does not honour umask from ~/.login_co o ports/176724 rene net/boinc-client: correct pathnames, pkg-install.in, w o kern/176722 benl [openssl] OpenSSL 1.0.1e fails to fallback to TLS1 if o ports/176716 [patch] devel/boehm-gc update to 7.2d combining previo o ports/176714 python games/py-fife: fixed make package o bin/176713 [patch] nc(1) closes network socket too soon p kern/176712 hiren [patch] Fixing clang warnings at different places o ports/176705 x11 graphics/libGL : Fix complitation (not useability) on o ports/176703 x11 graphics/dri : Fix complitation (not useability) on AR o bin/176697 incorrect fetch(1) exit codes with -s option versus ft o kern/176694 [kvm] KVM Guest Crash at Boot - kernel trap 12 with in o stand/176683 standards catman pages shall be stored in /var (/usr/local/var,/ f ports/176676 [patch] net/ss5: syslog option is noisy o kern/176671 net [epair] MAC address for epair device not unique o conf/176668 [periodic] [patch] Only save pkgdb if it has changed o ports/176660 [ports] editors/pdfedit: build failure on ia64 -curren a ports/176659 apache www/apache22 2.2.24 build error o ports/176651 NEW PORT: graphics/flashprojector - Adobe standalone S o docs/176648 doc restore(8) man page is misleading/confusing o docs/176645 doc The example in netmap.4 is wrong o bin/176639 [patch] netstat(1) will display pcb table twice for an o kern/176636 [zfs] [patch] Periodical crashes with 9.1-R o kern/176628 [headers] [patch] use safer way of definint __WORDSIZE o ports/176625 New Port: ports-mgmt/prhistory-sync-perl Sync GNATS PR o ports/176613 New port: devel/libgdbmgr, vim interface to gdb o misc/176606 [loader] loader doesn't get value of "comconsole_speed o kern/176603 [headers] [patch] Remove redundant and duplicate #incl o kern/176600 [PATCH] Truncate files, which had their contents dupli o kern/176597 [PATCH] watchdog: Correct typo in debug code. a kern/176596 ae [firewire] [ip6] Crash with IPv6 and Firewire o i386/176593 i386 huge memory use 2 application, XORG ,FIREFOX... o kern/176591 Panic at reboot on 9.1-RELEASE (GENERIC) when ipmi.ko o docs/176583 doc getifaddrs(3) - struct ifa_data not exist o kern/176579 hiren [kernel] [patch] add td_name to maxproc limit warning o ports/176509 [NEW PORT] www/dnssec-validator: DNSSEC Validator exte o ports/176507 [NEW PORT] www/xpi-dnssec: DNSSEC Validator extension o ports/176505 [NEW PORT] www/crx-dnssec: DNSSEC Validator extension o ports/176504 [NEW PORT] devel/crxmake: Make chromium extensions o kern/176503 ipfw [ipfw] ipfw layer2 problem o kern/176484 net [ipsec] [enc] [patch] panic: IPsec + enc(4); device na o bin/176481 pam(3) does not search /usr/local/lib for modules o amd64/176474 amd64 kernel panic o ports/176473 jlaffaye stale environ info in lang/go files/pkg-message.in o kern/176471 xen [xen] xn driver crash on detach o ports/176468 www/sams can not use the mask /32, with authorization o ports/176461 jhale [patch] security/libassuan update to 2.1.0 o ports/176456 NEW PORT: lang/jsawk - Command-line JSON parser o bin/176449 zfs(1): ZFS NFS export went wrong with special hostnam o kern/176446 net [netinet] [patch] Concurrency in ixgbe driving out-of- o ports/176445 New port: audio/icecast-kh Streaming mp3/ogg-vorbis au o bin/176444 jilles strange behaviour of the $(( )) form in sh(1) s ports/176442 Port files with double-colons cannot exist on FAT part f ports/176438 net-mgmt/nrpe2 consuming cpu when handling new connect o misc/176433 A python version error is in the 9.1-release-i386 iso o arm/176424 arm Compiler warning, TARGET_ARCH=armv6, make MALLOC_PRODU f ports/176423 vg audio/clementine-player: always needs two starts o kern/176420 net [kernel] [patch] incorrect errno for LOCAL_PEERCRED o kern/176419 net [kernel] [patch] socketpair support for LOCAL_PEERCRED o usb/176417 usb [xhci][cam][umass] kernelpanic while removing plugged o stand/176412 standards newfs writes by default, compare to bsdlabel/disklabel o kern/176410 [boot] 9.1 install CD/iso may delete bootblocks on oth o kern/176407 [puc] SIIG Cyber S2P1 has speed problems with puc driv o ports/176406 zeising [PATCH] devel/binutils: installs a file that conflict o kern/176401 net [netgraph] page fault in netgraph o ports/176398 pclin [maintainer update] print/qpdf update to 4.0.1 f ports/176383 sysutils/ipmitool cannot connect over SOL o ports/176382 portmgr ports dependencies not being recorded o ports/176378 [PATCH] Fix several typos in the ports tree o docs/176363 doc Remove mention of 'CVSup' from "Mirroring FreeBSD arti o kern/176362 Graphics screen comes back blank after switching to th o bin/176361 [PATCH] Add recursive option to ctags(1) o ports/176359 wen www/mediawiki required sqlite3, not sqlite for PHP_VER o ports/176358 edwin /net/freebsd-tftp Incorrect TFTP Behavior with Seconda o docs/176355 doc Attribution and correction of quote in fortune o ports/176352 portmgr ports rebuilds unneeded packages o ports/176349 office [ports] regression: devel/boost-libs 1.52.0_1 does not o conf/176347 rc [rc.conf] [patch] Add support for firewall deny lists a ports/176326 thierry french/aster does not build on amd64/clang or ia64/gcc o kern/176322 [libc] MSG_TRUNC does not return real length of the pa o kern/176300 [headers] __CTASSERT() missing from o ports/176299 avilla graphics/opengtl: opengtl 0.9.18 problem install on Fr o ports/176296 bapt ports-mgmt/pkg: sqlite: table licenses already exists o misc/176292 /usr/src: delete-old-files tries to delete usr/lib/lib o ports/176290 portmgr Utilize sf.net CDN o ports/176282 portmgr [bsd.port.mk] [patch] add bsd.owfs.mk o kern/176281 jfv [ixgbe] [patch] Update ixgbe to 2.4.10 (latest officia o kern/176280 [kernel] On net/if_var.h we can't return a value in a o bin/176278 [patch] nc(1) incorrectly passes telnet option data th o kern/176268 pf [pf] [patch] synproxy not working with route-to o conf/176263 make delete-old doesn't honor WITHOUT_SYSINSTALL in sr o misc/176262 Enhanced CD regression in 9.1 o kern/176259 [openbsm][patch] praudit produces invalid XML (1.2-alp o bin/176253 fs zpool(8): zfs pool indentation is misleading/wrong o docs/176251 doc FreeBSD Handbook assumes too much pre-knowledge o bin/176250 [libc] [patch] euc locale input modifies data o kern/176238 wireless [ath] [patch] Correct buffer size calculation and simp p kern/176233 jilles [libc] [patch] New dup3() implementation for FreeBSD f ports/176225 adamw mail/squirrelmail patches to address php5.4 gating iss o kern/176201 wireless [net80211] [patch] 11n station includes unrelated ht p o ports/176196 danfe [PATCH] games/quake2-ctf: Set NO_WRKSUBDIR and BUILD_W o ports/176195 [PATCH] games/cre: Set NO_WRKSUBDIR and BUILD_WRKSRC i o conf/176181 rc [rc.subr] rc.subr emitting warnings for non-defined xx f ports/176180 mail/mailman broken without NLS f ports/176172 graphics/povray37: /usr/local/bin/ld: disp_sdl.o: unde o kern/176169 [vfs] [patch] system unresponsive for 1min after mount o kern/176167 net [ipsec][lagg] using lagg and ipsec causes immediate pa o ports/176165 bf [new port] www/eliom 3.0.3 (web programming framework o ports/176163 bf [new port] devel/js_of_ocaml (OCaml to JavaScript comp o ports/176154 horde Horde Groupware & Webmail conflict p kern/176144 glebius [kernel] [patch] Bug in m_split() when splitting M_EXT o kern/176141 fs [zfs] sharesmb=on makes errors for sharenfs, and still a bin/176136 markj [patch] cp(1) fails to overwrite a symlink pointing to o docs/176127 doc [handbook] add information about all missing mailing l o docs/176125 doc missing summary of freebsd-jail mailing list o docs/176123 doc missing summary of freebsd-sysinstall mailing list o ports/176117 bf [maintainer update] www/ocsigen to 2.2.0 f ports/176115 bf [new port] databases/ocaml-dbm (dbm bindings for OCaml o kern/176112 jail [jail] [panic] kernel panic when starting jails o kern/176104 wireless [iwn] iwn0: iwn_intr: fatal firmware error o conf/176098 [periodic] [patch] install 210.backup-aliases uncondit o kern/176097 net [lagg] [patch] lagg/lacp broken when aggregated interf o ports/176096 [NEW PORT] www/xibo-server: Xibo - Digital Signage (se o kern/176094 Kernel trap o kern/176093 [libc] [patch] Fix resolver support for '_' character o kern/176092 jail [jail] [panic] Starting a jail on my releng/9.1 kernel o ports/176085 gblach When I play a video with multimedia/mplayer2, and go b o misc/176078 re LiveCD - missing directory /tmp/bsdinstall_etc o kern/176073 jfv Update from 9.0-RELEASE-p3 to 9.1-RELEASE-p0 "breaks" o ports/176067 bf [maintainer update] databases/ocaml-sqlite3 to 2.0.4 f ports/176065 bf [maintainer update] textproc/ocaml-tyxml to 2.2.0 f ports/176062 bf [maintainer update] www/ocaml-net to 3.6.3 o ports/176061 bf [maintainer update] devel/ocaml-lwt to 2.4.3 o ports/176060 bf [maintainer update] textproc/ocaml-text to 0.6 o ports/176057 bf [maintainer update] devel/ocaml-react to 0.9.4 o kern/176054 [kernel] [patch] Correct several typos o kern/176053 xen [xen] [patch] i386: Correct wrong usage of vsnprintf() o kern/176052 [boot] [patch] libi386: Do not unnecessarily cast away o kern/176051 [kernel] [patch] uipc: Simplify and correct debug prin o conf/176049 [patch] 410.status-mfi: new periodic script to monitor f ports/176047 ports: graphics/ImageMagick: -delay option spurious me f ports/176044 ports: print/ghostview (1.5_3) segfault/coredump f ports/176043 cy ports: mail/nmh -- missing dependencies o ports/176035 portmgr [PATCH] Improve and correct CRLF handling in ports o kern/176034 UNEXPECTED SU+J INCONSISTENCY o kern/176027 net [em] [patch] flow control systcl consistency for em dr o kern/176026 net [tcp] [patch] TCP wrappers caused quite a lot of warni o docs/176015 doc [handbook] wrong order in docs for major upgrade f ports/176012 irc/inspircd fails to detect OpenSSL in base running r o ports/176000 office textproc/clucene: Incomplete install if WRKDIRPREFIX c o ports/175998 perl PERL_ARCHNAME != perl -V:archname in port Makefiles o docs/175995 doc Setting MALLOC_PRODUCTION stops buildworld f ports/175987 vg audio/clementine-player 1.1.0_1 - album art not displ o gnu/175985 [PATCH] Improve send-pr(1) o docs/175983 doc man zfs are missing "hold, release" from "zfs allow" o misc/175978 can not build 10-CURRENT o bin/175974 net ppp(8): logic issue o kern/175954 xen [xen] XENHVM xn network driver extreme packet loss dur o ports/175951 ashish problem with irc/ctrlproxy after updating of gnutls an o kern/175950 fs [zfs] Possible deadlock in zfs after long uptime o ports/175947 [NEW PORT] www/sogo: Groupware server with a focus on o ports/175946 [NEW PORT] devel/sope: An extensive set of GNUstep web f ports/175944 nemysis [PATCH] x11-wm/obmenu: OptionsNG, changed Makefile, De o bin/175943 smh [PATCH] Add trim capability to gpart(8) o ports/175940 multimedia multimedia/gstreamer-plugins-good add missing dependen f ports/175936 nemysis [NEW PORT] x11-wm/lxmed: LXDE Main Menu Editor o ports/175929 pclin [PATCH] archivers/librtfcomp, archivers/py-librtfcomp: p kern/175909 melifaro [ipfw] FreeBSD 9.1 ipfw lookup dst-port regression [re o kern/175897 fs [zfs] operations on readonly zpool hang o kern/175893 kernel/usb/uftdi patch to recognise a KT-LINK ft2232 b o ports/175892 sylvio x11-fm/gnome-commander2 segfaults on amd64 f ports/175888 pclin [PATCH] net/libtrace: update to 3.0.16 f ports/175879 pclin fail non-interactive installation sysutils/bsdstats o ports/175876 bsam [new port] x11-drivers/xf86-input-wacom: split from in f ports/175868 security/nessus-libnasl: nasl_crypto.c:25:10: fatal er o kern/175864 net [re] Intel MB D510MO, onboard ethernet not working aft o www/175861 www ftp6.ua.freebsd.org is not present in docs o kern/175852 net [amd64] [patch] in_cksum_hdr() behaves differently on o ports/175843 portmgr ports-mgmt/pkg: dry run mode should work as non-root o kern/175822 xen [xen] FreeBSD 9.1 does not work with Xen 4.0 o ports/175814 office devel/boost-all cannot use libc++ f ports/175813 [patch] mail/dovecot2 doesn't detect libstemmer or ext o stand/175811 numerics libstdc++ needs complex support in order use C99 o arm/175803 arm building xdev for arm failing o bin/175799 [patch] Adding more tools to be used by operator group f ports/175798 FreeBSD 10 unable to build sysutils/fusefs-kmod o kern/175791 [panic] Fatal trap 12: page fault while in kernel mode o ports/175783 pgsql [PATCH] databases/postgresql92-server: Add ${PTHREAD_L o kern/175778 /usr/obj/usr/src/tmp/usr/lib/libc++.so: undefined refe o ports/175775 mm www/lighttpd: libev excludes freebsd-kqueue f ports/175772 Update to finance/php-tclink o ports/175768 portmgr ports-mgmt/pkg sends terminal control codes (and dupli p kern/175759 glebius [headers] [patch] Correct data types for fields of str o kern/175757 xen [xen] [patch] xen pvhvm looses keyboard input from VNC o ports/175748 New port: www/your-freedom A SOCKS proxy application o ports/175747 portmgr [patch][bsd.options.mk]: activate DEBUG o ports/175740 gleb sysutils/pefs-kmod fails to build on 9.1-STABLE am64 o ports/175737 bf [NEW PORT] math/mlpack: A scalable C++ machine learnin o kern/175734 net no ethernet detected on system with EG20T PCH chipset f ports/175733 devel/libatomic_ops: Segmentation fault : install - o usb/175731 usb detaching USB keyboard freezes other USB keyboards o bin/175730 sysinstall Segfault in bsdinstall(8) when no disks are present o amd64/175725 amd64 Audio through USB has not as good hi quality as it has o kern/175722 wireless [ath]lot of bad seriesx hwrate in kernel messages o docs/175712 doc Update 'disk naming' handbook page o stand/175711 standards When the server has more than 3 days, rising interrupt o kern/175705 [dtrace] "panic: process not held" when invoking userl o ports/175692 snb security/openvpn-auth-ldap configure error o misc/175690 FreeBSD 8.x/9.x fails to boot on HP Blade xw460c/BL460 o kern/175688 after the system is constantly being written to the lo o docs/175687 doc pthread_setschedparam(3) may fail for undocumented rea o www/175685 www HTTPS does not follow visitor among FreeBSD.org sub-do o kern/175674 [libc] [patch] sem_open() should use O_EXLOCK with ope o kern/175671 BOOTP_NFSROOT option is effectively "always on" o kern/175670 [iscsi] smartctl fails on SAS disk connected to an Int o misc/175666 I cant install packages from FreeBSD 9.1 x86_64 image o amd64/175655 amd64 When enabled tty console OS hang during boot o ports/175647 itetcu [PATCH] mail/dspam-devel: [SUMMARIZE CHANGES] o bin/175645 glebius tcpdump(1) incorrectly decodes pflog'ged UDP packet as o usb/175639 usb not detect usb netcard D-LINK DUB-E100 rev C1 f ports/175621 pclin update net/dhcpcd o ports/175620 New port: devel/bashdb, Bash debugger f ports/175611 sysutils/zfs-periodic package do not enable cron to ho o arm/175605 arm please fix build binutils-2.23.1 in raspberry pi o misc/175600 FreeBSD 9.x missing for x86 o usb/175599 usb [usbdevs][patch]Liebert UPS PSI1000 being assigned uhi o ports/175597 pav update: graphics/exif to 0.6.21 o ports/175585 deskutils/cdcat: Update to version 2.2 o ports/175561 bapt [patch] [bsd.pkgng.mk] Enhancement to avoid pkgng "/bi o docs/175560 doc ugen(4) man page contains incorrect device node path o kern/175557 [smbfs] [panic] kernel panic in smbfs.ko while accessi o bin/175556 [PATCH] moused(8) virtual scrolling on alternate butto o usb/175551 usb Seagate 2TB USB extern hard disk have errors with Free o www/175535 www freebsd.org/ports is out of date o ports/175532 x11 x11/xdm: /bin/cp -n /usr/local/share/examples/xdm/Give p kern/175530 melifaro [ipfw] [patch] lost dynamic IPFW rule for TCP session o kern/175522 VIA cpu's temperature monitoring module o misc/175521 Documentation does not install o kern/175514 des [patch] Support PKI in libfetch for HTTP over SSL (htt f ports/175485 acm port databases/firebird25-server (classic) keeps attac p stand/175453 standards Catching C++ std::bad_cast doesn't work in FreeBSD 9.1 o kern/175449 fs [unionfs] unionfs and devfs misbehaviour o kern/175446 wireless [ath] high volumes of PHY errors lead to BB/MAC hangs o bin/175425 [patch] kbdcontrol(1) printout about kbdmux isn't info o ports/175423 office german/hunspell does not build o ports/175411 vbox [PATCH] emulators/virtualbox-ose 4.2.6: popcnt bug o ports/175402 maho math/suitesparse: libcholmod.so: undefined reference t o conf/175394 [termcap] [patch] Suggested addition to termcap databa o ports/175390 sylvio net/ntop fails if python27 is configured with PTH o ports/175385 dns/fastresolve does not compile o usb/175379 usb usb card-reader problem o amd64/175370 amd64 kernel panic the rebuild kernel with vimage options in f ports/175369 chromium www/chromium: Chromimum Desktop Integration doesn't op o kern/175365 [panic] FreeBSD 8.3-RELEASE kernel panics when net/xor f ports/175359 loader [PATCH] finance/openerp-server: bump up version to 6.0 f ports/175358 loader [PATCH] finance/openerp-web: update to 6.0.4 o ports/175344 sunpoet [PATCH] www/pecl-APC: update to 3.1.14 o ports/175336 gabor print/latex build fails o kern/175328 [panic] fusefs kernel page fault o bin/175314 [regression] bsdgrep(1) broken multidot escaping since a ports/175312 mono devel/monodevelop does not build o conf/175311 rc [patch] add "dump" fs type support to rc.d/dumpon o ports/175308 nemysis [NEW PORT] graphics/linux-f10-sdl_ttf: SDL graphics dr o ports/175307 nemysis [NEW PORT] graphics/linux-f10-sdl_gfx: SDL graphics dr o kern/175306 multimedia [snd_hda] snd_hda does not produce 7.1 sound on ALC892 o usb/175302 usb don't mount virtual driver CD for my phone o ports/175300 java java/jamvm fails to compile on ARM6 (raspberry-pi) o bin/175293 [patch] mtree(1): mtree "-u" option doesn't return err o ports/175288 vbox emulators/virtualbox-ose: FreeBSD VirtualBox guest una o amd64/175282 amd64 Freebsd 9.1 release amd64, mb Intel D525MW, not worked o ports/175274 nemysis [NEW PORT] audio/linux-f10-libsndfile: Reading and wri o bin/175269 truss(1): truss -ff doesn't detach from processes prop o kern/175267 net [pf] [tap] pf + tap keep state problem o ports/175266 port audio/libmtp is miscategorized: it should be sysu o kern/175260 adrian [asmc] [patch] add support for Macbook 3.1 o ports/175249 portmgr [pkgng] ports-mgmt/pkg: regression: registering packag o misc/175245 9.1 ISO missing CDROM.INF, INDEX. o docs/175239 doc sem_wait can be interrupted o kern/175236 net [epair] [gif] epair and gif Devices On Bridge o ports/175233 devel/boehm-gc: GC does not scan static roots in share o ports/175229 x11-toolkit/swt-devel fails o kern/175227 wireless [ath] beacon timers aren't necessarily reprogrammed af o ports/175221 vbox emulators/virtualbox-ose: Cannot Resume VirtualBox VMs o kern/175220 multimedia [sound] sound stopping: play interrupt timeout, channe o bin/175213 markj [patch] bsdgrep(1) segfaults upon malicious input p kern/175205 glebius if_carp not loaded o kern/175183 wireless [iwn] iwn(4) becomes unresponsive during initial confi o kern/175182 net [panic] kernel panic on RADIX_MPATH when deleting rout o kern/175179 fs [zfs] ZFS may attach wrong device on move o ports/175175 sylvio databases/rrdtool 1.4 hangs without generating graphs, o kern/175153 net [tcp] will there miss a FIN when do TSO? o power/175151 ppc Loader fails to load modules on PPC64 o ports/175145 security/bro, fix port so it installs broctl (required o amd64/175129 amd64 laptop won't suspend on lid close o docs/175123 doc [geom] gpart list/status isn't documented in usage sec f ports/175121 devel/buildapp does not produce executable file o ports/175113 devel/freeocl: Port revision PORTREVISION=1 o ports/175110 wen math/rpy2: rpy2 and external lapack fail f ports/175107 devel/opencl: bug in CL/cl_ext.h (upstream): o conf/175105 rc /etc/rc.d/* and more: syntax 'return_boolean_cmd && do o i386/175094 i386 I cant install packages from FreeBSD 9.1 image DVD ! o ports/175090 vbox emulators/virtualbox-ose: wrong ports version f ports/175087 haskell [PATCH] lang/ghc: build fails if dblatex is installed o bin/175086 [gpt] 9.1 does not boot from GPT partition that can ha o conf/175079 rc [rc.subr] [patch] rc.subr poorly handles recursive run o bin/175073 kgdb(1) broken: Incomplete CFI data o kern/175071 fs [ufs] [panic] softdep_deallocate_dependencies: unrecov o ports/175064 office editors/libreoffice fails to compile o misc/175055 re 9.1-Release installation via DVD o kern/175053 wireless [iwn] iwn firmware error on 9-stable with Ultimate-N 6 o bin/175052 gshapiro sendmail(8): base sendmail fails to build with securit f ports/175008 multimedia audio/gstreamer-plugins-soundtouch C++ compiler error p conf/175006 hrs /etc/rc.d/ip6addrctl exits not 0 when ip6addrctl_verbo o kern/175001 [libc] The current strnstr() function should be named o ports/174988 New port: net/tclsoap o ports/174976 vbox emulators/virtualbox-ose: virtualbox 4.2.6: VNC not wo o ports/174975 vbox Latest emulators/virtualbox-ose-kmod 4.2.6 commit (309 o bin/174974 [patch] bsnmpd(8): bsnmpd SNMPv3 engine discovery is b o ports/174968 vbox emulators/virtualbox-ose: CAM lockup when using more t a docs/174966 eadler [patch] Bug in chflags(2) man page o usb/174963 usb buffalo wli-uc-gn wireless card sometimes unusable and o ports/174960 sysutils/fusefs-ntfs mkntfs fails because of "no block o kern/174959 net [net] [patch] rnh_walktree_from visits spurious nodes o kern/174958 net [net] [patch] rnh_walktree_from makes unreasonable ass o ports/174947 [new port] ftp/php5-dav, php5 webdav module, allowing o ports/174940 [new port]: misc/valspeak, a filter that converts Engl o stand/174938 standards Problem statement: iSCSI target failure o conf/174937 [termcap] [patch] vt520's termcap entry lacks sc capab o kern/174933 emulation [linux] if_nameindex fail in linuxulator enviroment o kern/174918 [vfs] Unknown mount filesystem error messages are conf f ports/174916 crees audio/pianobar - patch to fix TLS issue for Pandora On o kern/174908 emulation [vmware] "unsupportable block size 0" after upgrading o bin/174905 [patch] make cron(8) honor rfc821, rfc5321, rfc2076, r o kern/174902 jail [jail] jail should provide validator for jail names f ports/174898 graphics/openimageio: pkg: (openimageio-1.1.2) /usr/lo o kern/174897 net [route] Interface routes are broken o ports/174893 maho math/suitesparse: gmake[2]: *** [run] Segmentation fau o kern/174891 wireless [ieee80211] struct ieee80211_node is freed during acti o ports/174883 databases/grass: cut: ../dist.amd64-portbld-freebsd10. o i386/174879 i386 cam(4) - installation - cam/scsi cd errors o kern/174877 [chroot] mountd fails to work inside init_chroot [regr o docs/174868 doc mount(2) doesn't do a good job at describing all possi o misc/174859 Installation: /etc/hosts file o kern/174851 net [bxe] [patch] UDP checksum offload is wrong in bxe dri o kern/174850 net [bxe] [patch] bxe driver does not receive multicasts o kern/174849 net [bxe] [patch] bxe driver can hang kernel when reset o kern/174848 [kernel] [patch] ps(1): ps -H option does not work wit o ports/174841 graphics/sane-frontends fails to build o usb/174835 usb uaudio fails to create pcm/dsp device file p bin/174831 pjd [PATCH] geli(8) segfaults with the new locked memory l o kern/174828 multimedia [sound] [snd_emu10kx]: "Creative SB PCI512 [CT4790]" i o ports/174826 java java/openjdk6: gmake[5]: *** [/usr/ports/java/openjdk6 o ports/174825 java java/openjdk6: fails to build on i386 (64-bit mode not o kern/174822 net [tcp] Page fault in tcp_discardcb under high traffic o ports/174819 ak games/exult: Update to 1.4.9 o bin/174816 [patch] nsupdate(1): nsupdate -l doesn't work when nam o usb/174814 usb [PATCH] support for MiFi 2200 o bin/174801 zpool(8)/iostat(8): zpool list and iostat do not displ f ports/174798 audio/soundtracker: request to add system menu item/en o kern/174796 multimedia [emu10kx]: Audigy ZS driver produce strange noises o ports/174795 x11-toolskits/open-motif: Installing open-motif-2.3.4. o docs/174792 doc synopsis for nsupdate(1) missing options -L, and -p s ports/174788 tmseck www/squid32 fails to build when heimdal 1.5.2 installe o ports/174786 jhale graphics/opencv: /usr/ports/graphics/opencv/work/OpenC o ports/174777 kuriyama security/gnupg: gnupg-2.0.19_3 fails to build o ports/174775 autotools [PATCH] devel/autoconf-wrapper: Fixed make reinstall o ports/174768 xfce x11-wm/xfce4-panel starts in properies edit state o kern/174766 acpi [acpi] Random acpi panic f ports/174764 [patch] upgrade databases/postgis to 1.5.8 (fixes comp f ports/174753 office change to devel/boost-libs causes adverse effects o ports/174746 Segmentation fault in security/prelude-lml o ports/174729 bdrewery ports-mgmt/portmaster: should check for script running o ports/174728 kde Let textproc/soprano know about different odbc o kern/174722 wireless [wlan] can't use channel 12 and 13 (14) with my wifi i o ports/174716 fluffy news/inn daily script cannot found gawk o bin/174715 [patch] calendar(1): define Content-Type / charset whe o docs/174712 issyl0 [handbook] Some cvsup servers for Ukraine seems inacce o bin/174711 [fdc] Floppy drive 5.25" 360Kb bug. o usb/174695 usb usb keeps disconnecting mouse or keyboard o ports/174685 office New version of devel/icu crashed a lot of applications o kern/174684 [tws] [patch] 3dm2 (or smartctl) triggers a kernel pan o amd64/174679 amd64 Intel i5 laptop overheats and shuts down [regression] o kern/174661 wireless [wlan] lost alias on wlan interface o ports/174650 xfce x11-wm/xfce4 crash with exaGetPixmapFirstPixel called o ports/174647 [NEW PORT] net/infinispan: Open source highly scalable o bin/174641 jasone [patch] jemalloc enhancement: allow MI request for min o ports/174624 sobomax [patch] Improving audio/flite f ports/174618 office devel/icu error: in blender, /usr/local/lib/libboost_l o kern/174602 net [gif] [ipsec] traceroute issue on gif tunnel with ipse o ports/174589 office devel/icu: clang build of icu-50.1 broken o ports/174587 fluffy graphics/vigra cannot detect clang f ports/174583 devel/libreadline-java: patch for UTF8 support o docs/174581 doc man page of recvmsg(2) does not mention return value 0 o usb/174575 usb Interrupt storm error on startup o kern/174573 multimedia [snd_hda] headphones on front panel not working anymor f ports/174571 crees security/sshguard 1.5 does not detect ssh invalid user f ports/174566 wen [UPDATE] devel/py-RPyC o ports/174561 [patch] upgrade devel/avr-binutils from 2.20.1 to 2.22 o ports/174560 [patch] upgrade devel/avr-gcc from 4.5.1 to 4.6.2 o ports/174559 [patch] add vendor patchset to devel/avr-libc o kern/174535 net [tcp] TCP fast retransmit feature works strange o ports/174533 hrs net/openbgpd doesn't reload after config error (previo o ports/174516 jgh New port: java/glassfish for Glassfish Java EE referen o ports/174513 philip [PATCH] www/py-recaptcha: update to 1.0.6 o kern/174504 acpi [ACPI] Suspend/resume broken on Lenovo x220 a bin/174489 markj cp(1): 'cp -a -n' fails when 'over-writing' a broken s f ports/174487 mail/notmuch fails to build during portupgrade o ports/174485 sunpoet I have upgraded audio/icecast2 to 2.3.3 o bin/174475 sysinstall bsdinstall(8): should remember user input o bin/174473 sysinstall bsdinstall(8): cannot handle some or all partitions ot o bin/174472 sysinstall bsdinstall(8) partition editor is annoying to use when o bin/174471 sysinstall bsdinstall(8): does not newfs and cannot mount any non o bin/174470 sysinstall sysinstall(8): should be fixed to work with bsdinstall o usb/174464 usb clone MAC address(es) on usb networks cdce(4) && ue[0- o arm/174461 arm [patch] Fix off-by-one in arm9/arm10 cache maintenance o kern/174441 [psm] [patch] Enable detection of Synaptics touchpad f o kern/174440 [patch][syscons] panic: mutex Giant not owned at kern/ o ports/174435 portmgr Port options are often insufficiently detailed due to o ports/174429 office [patch] add depends to editors/openoffice-3 o conf/174422 [newvers.sh] [patch] SYSDIR set to wrong directory p amd64/174409 avg stopping during resume caused by io_apic.c change(r243 o misc/174407 [build] make buildkernel for ARM should inform about a o misc/174403 Error adding packages - iso - i386 o misc/174391 Last database update: 2012-11-11 10:45:48 UTC o kern/174388 [patch] 9.1-RELEASE build world problem with yyparser. o ports/174383 rm net-p2p/deluge compiled without-gtk consistently crash o kern/174372 fs [zfs] Pagefault appears to be related to ZFS o ports/174368 New port: lang/nimrod The Nimrod programming language. o ports/174367 mm graphics/pecl-imagick: Build broken due to dependency o ports/174360 perl [new port] net/p5-Net-Works s ports/174342 nemysis [NEW PORT] irc/shirk: Modular IRC bot based on the Twi o kern/174315 fs [zfs] chflags uchg not supported o kern/174310 fs [zfs] root point mounting broken on CURRENT with multi o ports/174308 [bsd.database.mk] cyrus-sasl-2.1.25_2 will not compile f ports/174303 [PATCH] Update devel/libgta to version 1.0.4 o ports/174302 uqs games/hangman and games/bsdgames both install "hangman o ports/174290 swills [patch] emulators/open-vm-tools: fix compilation after o ports/174289 net/ssvnc build fails - configure: error: /usr/bin/cpp o ports/174288 mm www/squidclamav: A squidclamav.so is not made and a lo o ports/174287 multimedia multimedia/gstreamer-plugins-good fails to compile wit o kern/174283 wireless [net80211] panics in ieee80211_ff_age() and ieee80211_ o ports/174280 perl lang/perl5.16 make install fails on pkgng database fil o kern/174279 fs [ufs] UFS2-SU+J journal and filesystem corruption o kern/174277 [ata] [patch] ata_attach() panic's on disabled disk o kern/174276 wireless [ath] if_ath memory modified after free o kern/174273 wireless [net80211] taking down a net80211 node with active fas o kern/174272 [libc] Segmentation Fault calling stat() from an appli o ports/174263 swills New port: net/chrony - System Clock Synchronization Cl o usb/174254 usb MIDI keyboard not recognised o ports/174245 mm net/relayd Segfault on reload when checking https o kern/174238 emulation [qemu] FreeBSD 9.0 doesn't boot under QEMU due to ACPI f ports/174237 databases/php5-redis - zAdd does not set the correct s o kern/174236 [modules] "kldunload ipdivert" corrupts kernel s ports/174232 itetcu Error message after updating some Perl modules with ne o conf/174225 hrs [network.subr] [patch] add support for ipv6_addrs_IF s o bin/174214 [ofed] [patch] OFED userspace fails to build with clan o ports/174212 office editors/libreoffice: ERROR: error 65280 occurred while o ports/174176 audio/timidity++: Update to version 2.14.0 o misc/174132 There is no usefull information in core.txt files o ports/174131 net/citrix_ica: Update port to 12.0.0.189834 f ports/174129 [Maintainer-Update] print/cups-bjnp to latest f ports/174118 graphics/pecl-gmagick o kern/174104 emaste [jail] security.jail.param does not reflect actual jai o kern/174087 andre [tcp] Problems with ephemeral port selection o bin/174072 smh [patch] mptutil(8): capture cam related errors o conf/174071 [build] [patch] optimize SUBDIR_OVERRIDE in Makefile.i o conf/174070 re [build] [patch] Allow RELEASE_TARGETS to be user defin o ports/174069 nemysis [PATCH] misc/explosions: OptionsNG, added categories, o ports/174057 nemysis [PATCH] misc/cmatrix: OptionsNG, added license, mtx.pc o ports/174056 farrokhi I have upgraded sysutils/istatd to 0.5.8 o ports/174055 Default Linux ALSA configuration update request o conf/174054 [periodic.subr] [patch] enhance periodic to work simil o conf/174052 [build] [patch] libssh should not depend upon gssapi l o conf/174051 [build] [patch] Make tcsh compilation optional at top- o conf/174050 [bsd.own.mk] [patch] move MK_CLANG_EXTRAS line further o kern/174048 [modules] [patch] Fix inconsistent ixgbe(4) KLD name p bin/174046 antoine [patch] bsdinstall(8): add missing DPADD definitions o kern/174033 hrs [patch] prune unused net.inet6 sysctls o kern/174032 hrs [patch] better document netinet6 sysctls and formattin o bin/174028 [patch] Fix some warnings with fsck_ffs(8) o bin/174025 tar(1) doesn't properly handle keyword "ago" in dates o ports/174022 nemysis [PATCH] games/gnurobots: Added OptionsNG, license, des o ports/174020 pgsql initdb will not run on a mounted FS with a snapshot di f ports/174018 Can't disable security/sshguard -b option o ports/174015 nemysis [PATCH] finance/venice: update to 0.751beta, take main o ports/173998 textproc/xalan-c from version 1.10 to 1.11 o ports/173996 net-mgmt/p5-Cflow: add support for net-mgmt/flow-tools o bin/173977 mjg pw(8) does not do range-checking on UIDs/GUIs from use o bin/173973 rpaulo [patch] 'not function' for user display for top(1) o bin/173969 rtadvd(8): sendd does not work o ports/173965 office editors/libreoffice pkg_add error o ports/173945 office Update textproc/it-hyphen to version 2012.04.03 o ports/173943 office Update textproc/it-hunspell to version 2012.04.03 o kern/173932 [boot] [patch] Fix compilation errors when -Werror spe o ports/173925 vbox emulators/virtualbox-ose-additions 4.1.22 VBoxService p bin/173924 jh [patch] nvi(1): import upstream nvi -Wshadow O_DIRECTO o kern/173917 wireless [iwn] wpa-supplicant issues on iwn o bin/173915 mergemaster(8) painful due to old ident tags f ports/173912 crees editors/pdfedit: /usr/local/bin/ar: invalid option -- f ports/173904 swills sysutils/fusefs-kmod build failed with clang'ed 10.0-c o kern/173898 wireless [iwn] [patch] iwn(4) DOES support 6235 chip. o kern/173896 Kernel does not boot if splash loaded and hint.sc.0.ve o ports/173892 portmgr Mk/bsd.port.mk: make COPYTREE_SHARE handle symbolic li o ports/173889 flo New Port: www/kannel-sqlbox SQL interface for Kannel o ports/173888 nemysis [NEW PORT] games/sudoku-sensei: Enjoy playing with Sud o kern/173883 wireless [ath] ath0: unable to attach - pci issue? o ports/173881 nemysis [NEW PORT] games/vodovod: Cross-platform pipe connecti o ports/173880 nemysis [PATCH] games/pipenightdreams: Added Portdoss, Desktop o ports/173876 nemysis [PATCH] games/gtkballs: Added License, OptionsNG, Desk o ports/173875 nemysis [PATCH] games/cuyo: update to 2.0.0,1, Added License, o ports/173873 nemysis [PATCH] games/barrage: Added license, OptionsNG, Portd o kern/173871 net [gif] process of 'ifconfig gif0 create hangs' when if_ o amd64/173869 amd64 buildworld breaks with clang o kern/173866 SD card reader malfunction (false card locked reported o misc/173859 Low throughput on intercontinental connections f ports/173858 sysutils/bsdadminscripts installs pkg_libchk that does f ports/173854 sem net/quagga-re port zebra Abort trap: 6 o misc/173850 System crash o kern/173840 snd_hda(4) volume mixer not working anymore o kern/173830 fs [zfs] Brain-dead simple change to ZFS error descriptio o ports/173773 sem [PATCH] dns/unbound: Security fix: avoid storing PID f f ports/173771 kde CONFLICTS_BUILD for deskutils/superkaramba s ports/173770 kde Correct CONFLICTS_BUILD for editors/calligra o bin/173744 hrs [PATCH] rtsold usage message contains non-sensical -a o ports/173741 multimedia multimedia/dirac fails to compile with clang o ports/173740 mm [PATCH] devel/libevent2: OPTIONSNG & trim Makefile hea o ports/173731 portmgr [bsd.port.mk] Doesn't clean dependency directory if no o ports/173730 dhn [PATCH] Added rc.d script for net/vnstat port o ports/173729 pgsql databases/postgresql92-server is confused by PREFIX o bin/173728 [patch] add set baud rate support to telnet(1) o bin/173725 cperciva portsnap(8) - fix entry validation o kern/173724 [kernel] SYSV semaphore adjustment incorrect for SETVA o usb/173722 usb [xhci] xhci driver bug after suspend to RAM (ACPI S3 m o kern/173718 fs [zfs] phantom directory in zraid2 pool o kern/173711 wireless [ath] powerd kills ath on the Asus EeePC 1005HA o docs/173710 doc Added section "MTP storage" to handbook o ports/173690 office editors/openoffice-3 upgrade leaves symlink pointing t o misc/173689 /dev/tty missing from /dev o amd64/173680 amd64 9.1rc3 installer hangs at "rootpass" p bin/173673 gabor BSD fgrep cannot handle multiple patterns specified as o ports/173672 vbox emulators/virtualbox-ose: VirtualBox and bridge proble o kern/173659 pf [pf] PF fatal trap on 9.1 (taskq fatal trap on pf_test f kern/173657 fs [nfs] strange UID map with nfsuserd o bin/173642 sh(1): ``here-document'' does not works in FreeBSD 9 / o ports/173620 portmgr [bsd.port.mk] Recovery of the functionality of CONFLIC o arm/173617 arm Dreamplug exhibits eSATA file corruption using network o usb/173616 usb LG USB DVD-RW USB STALL o conf/173614 [patch] /etc/periodic/daily/404.status.zfs wrong f ports/173612 mi [patch] graphics/libfpx o ports/173603 java java/icedtea-web starts javaws incorrectly o ports/173592 java java/openjdk6 fails on FreeBSD_9_1_RC2 f ports/173590 wen New ports: textproc/fcitx-m17n and vietnamese/fcitx-un o bin/173589 [PATCH] usr.sbin/pkg_install/add o kern/173584 np [PATCH] [cxgbe] Add hw.cxgbe.force_firmware_install tu o ports/173581 new port submission, security/sagan f ports/173575 office Fix devel/boost-python-libs with python-3.2 o misc/173550 panic: Double fault o ports/173542 nemysis [PATCH] graphics/fracplanet: take maintainership, Make o kern/173541 load average 0.60 at 100% idle o docs/173539 doc [patch] statfs(2) man page missed the error code ENOSY o ports/173534 nemysis [NEW PORT] games/wizznic: Implementation of the arcade o ports/173533 mav net/mpd5 PPTP server race condition with some clients o ports/173524 acm [UPDATE] x11-toolkits/irrlicht to v1.8 o kern/173521 remove useless assign in ip6_hopopts_input o kern/173516 [cxgbe] Doesn't detect link-up after driver is first l o amd64/173502 amd64 Patch inhibition of warnings that appear in the combin o kern/173499 [panic] Reboot at setting of videomode by the utility f ports/173490 tmseck www/squid32 - missing kerberos helper f ports/173489 [PATCH] databases/mysqltuner: [SUMMARIZE CHANGES] o bin/173484 gnn [feature request] [dtrace] the current implementation o kern/173478 andre [netinet] [patch] icmp forward bandwithlimit o kern/173477 [kernel] [patch] mpath bugfixes o kern/173475 net [tun] tun(4) stays opened by PID after process is term o conf/173471 [patch] can't set sysctls from /etc/sysctl.conf for OI o bin/173469 jail [jail] regression: security.jail.sysvipc_allowed=1 no o kern/173468 mav [ata] lost WDC hard drive on ICH5 after upgrade [regre o amd64/173465 amd64 FreeBSD 9.1 restarts in random fashion after upgrade t o ports/173457 nemysis [NEW PORT] games/edgar: 2D platform game with a persis o kern/173455 no boot cd o bin/173454 [patch] service(8) does not respect /etc/rc.conf.d/nam o ports/173453 bf graphics/ocaml-images Update to 4.0.1 o ports/173451 lioux graphics/gexiv2: version 0.4.1 fails to build, patch-e o docs/173448 keramida [patch] ftw.3 manual page example addition o kern/173444 andre [socket] [patch] IPV6_USE_MIN_MTU and TCP is broken o kern/173435 Atapi cdrom boot delay o stand/173421 standards [libc] [patch] strptime() accepts formats that should o kern/173414 ACPI battery time incorrect o kern/173408 ACPI Regression: battery does not update often f ports/173407 obrien editors/vim port fails to build on 9-stable o ports/173393 xfce x11-wm/xfce4 window manager broken o bin/173389 calendar displays wrong date for election day f ports/173369 math/gnuplot+: avoid conflicts with math/gnuplot o ports/173368 nemysis [PATCH] games/glmaze: OptionsNG, changed Makefile, add o ports/173364 bf lang/ocaml Update to 4.00.1 o kern/173363 fs [zfs] [panic] Panic on 'zpool replace' on readonly poo o kern/173353 "options VESA" cause the kernel to freeze on 9.1-PRERE o ports/173352 nemysis [PATCH] games/gtkatlantic: OptionsNG, changed Makefile o ports/173351 nemysis [PATCH] games/4stattack: OptionsNG, Makefile simplifie o ports/173350 nemysis [PATCH] games/ppracer: OptionsNG, Makefile changed, ta o kern/173342 wireless PS-Poll isn't working o kern/173337 clang kernel cross-builds ignore CPUTYPE?= and always o kern/173336 wireless [ath] Atheros card improper device poweroff handling o o ports/173335 nemysis [PATCH] games/xarchon: OptionsNG, changed Makefile, pk p bin/173332 ian [patch] watchdogd wires over 10MB of memory after r239 o misc/173329 amd64 iso images of FreeBDS 9.0 and 9.1 are in wrong d o misc/173323 mail/cvsmail, mail/mailutils distfiles overwrite each o kern/173322 [patch] Inline atomic operations in modules o docs/173321 doc ports(7) man page -- no info on building with debuggin o ports/173319 mm multimedia/ffmpeg - install with debug info crashes & o ports/173318 portmgr bsd.port.mk assumes UID_FILES has 10 columns o ports/173317 portmgr ports-mgmt/pkg doesn't work well with a proxy cache + o ports/173316 bapt ports-mgmt/pkg install gives misleading error when a p o ports/173315 bapt ports-mgmt/pkg install sometimes fails when it uses wr o amd64/173311 amd64 FreeBSD 9.1 RC2 , 12 servers restart in random fashion o kern/173309 andre [tcp] TCP connections often prematurely closed by the o bin/173308 [patch] Support "make universe" with read-only src tre o bin/173301 sysinstall [patch] bsdinstall(8): default to SU instead of SU+J o bin/173298 zpool(8): Splitted pool is not expandable o ports/173282 New port: security/keepassx2 Cross Platform Password M o kern/173278 kern_getfsstat incorrectly assumes that flags is a bit o kern/173276 phantom load and slow disk IO after "make validate" in o ports/173260 glewis java/openjdk7: Directory jre/lib/applet is missed in t o kern/173251 mav [ata] ACHI/ATA_CAM doesn't find any SATA Disk on ICH7 o ports/173240 olgeni sysutils/fusefs-encfs 1.7.4_1 segfaults with the lates o amd64/173235 amd64 Have received two crashes within 1 day after installin o kern/173234 smh [zfs] [patch] Allow filtering of properties on zfs rec o ports/173210 java java/openjdk6 - use better src placement o misc/173204 Last Ports database update: 2012-10-20 16:13:05 UTC o kern/173201 net [ixgbe] [patch] Missing / broken ixgbe sysctl's and tu o ports/173194 [new port] java/eclipse-birt: BIRT plugin for Eclipse o ports/173184 nemysis [PATCH] games/abe: Makefile changed, removed pkg-plist o usb/173182 usb usbus appears as a network device o bin/173180 freebsd-update(8) wipes system files (file size is zer o bin/173153 rc [rc.d] [patch] $netwait_ip should be more parallel o bin/173144 vidcontrol(1) options parsing problem o kern/173137 net [em] em(4) unable to run at gigabit with 9.1-RC2 o kern/173136 fs [unionfs] mounting above the NFS read-only share panic o bin/173133 moused sometimes fails to reinitialise after suspend o bin/173118 smh [patch] Add EDNS Client Subnet support to BIND dig o kern/173115 smh Teach ZFS about geom stripe size so zpools are created o bin/173114 smh [patch] truss(1): Add Linux socket call decoding to tr o ports/173097 cy [patch] editors/xmlcopyeditor XML parser option o stand/173087 standards pax(1) does not support the pax interchange format o conf/173077 BIND slaves root and arpa zones on wrong servers p docs/173069 maxim Typo in geli(8) manpage o misc/173055 Can not install latest kernel o bin/173041 [patch] mailx(1) can be fooled to join messages o ports/173038 swills [patch] emulators/open-vm-tools: fix signage bugs with o misc/173031 [build] [patch] pass through install as INSTALL when b o ports/173021 nemysis [NEW PORT] www/jetspeed2: Open Source Portal, written o docs/173013 doc FreeBSD Boot Menu documentation lacks detail p kern/173004 glebius [netinet] [patch] Incorrect IP checksums when forwardi o kern/173002 net [patch] data type size problem in if_spppsubr.c o ports/172983 timur Upgrade from net/samba36 3.6.7 to 3.6.8 kills AD membe o docs/172980 Typo in deshallify.sh o kern/172977 [aic7xx] [patch] aic7xxx: Mark stop() function as nore o kern/172968 embedded [arge] probe/attach occasionally fails to find a PHY o ports/172967 [restore port] www/asterisk-gui for asterisk 1.6 to as o bin/172965 pw(8): pw useradd does not allow -g "" o ports/172964 portmgr [bsd.port.mk] USE_GITHUB feature not fully implemented o java/172962 java Sig11 while compiling OpenJDK6-b26 using clang o conf/172957 pc-sysinstall can not handle disk layouts that have a o kern/172955 wireless [ath] 11n does not work in adhoc mode o ports/172951 gavin [PATCH] irc/tircd: update to 0.21.2 o ports/172948 doceng print/ghostscript9 fails to compile with some options o misc/172946 x86 missing in src/etc/mtree/BSD.include.dist o conf/172945 [mtree] [patch] de_AT.ISO_8859-15 missing from src/etc o ports/172944 nemysis [NEW PORT] games/oneisenough: Economic development in o kern/172942 fs [smbfs] Unmounting a smb mount when the server became o usb/172937 usb FreeBSD 9.1-RC2 usb3 port disconnects o misc/172936 can not build latest 9-stable o kern/172931 Suspen/resume blocks USB mouse o docs/172927 doc ipfw(8): ipfw manual page doesn't show simpliest NAT c o amd64/172926 amd64 [boot] booting hangs after 9.1-RC2 install in 2nd (MBR o ports/172925 doceng print/ghostscript9 9.06_1 build fails o kern/172921 O_CLOEXEC support for libdb / dbopen o kern/172918 PCI(4) - ACPI errors at suspend/resume o ports/172917 textproc/syck: LuaYAML-Testcases test-suite for lua ex o bin/172914 mail(1): SEGV with bad globbed file argument o docs/172913 doc [ipsec] [patch] setkey(8) is unclear on anti-replay wi o bin/172905 sysinstall bsdinstall(8): Old mirroselect file in bdsinstall o kern/172895 net [ixgb] [ixgbe] do not properly determine link-state o kern/172894 bapt Out-of-tree kernel module compilation with GNU xargs i o kern/172893 Ati Radeon with Xorg and DRI activated freezes the Mac o ports/172892 jpaetzel Wrong/Missing CONFLICTS in net/openistgt o bin/172888 pf [patch] authpf(8) feature enhancement o bin/172882 cperciva bsdiff(1)/bspatch(1) need version information for sync o kern/172880 lldp (openlldp) triggers failures when the system has o misc/172873 [build] WITH_CTF=1 in /etc/src.conf makes make buildwo o ports/172871 sunpoet sysutils/freeipmi 1.1.7: segmentation fault ipmi-senso o docs/172869 doc [PATCH] Add in nifty lang icons to index.html (home) o ports/172863 nemysis [NEW PORT] net/pjsip: Multimedia communication library o bin/172862 sed improperly deals with escape chars o amd64/172854 jimharris 9.0R doesn't recognize HDD on intel C602 chipset o misc/172849 Missing fstab in rootfs leads to problems o bin/172847 sysinstall bsdinstall(8): missing boot loader location selection o bin/172846 sysinstall bsdinstall(8) - setting hostname o kern/172841 ZFS NFS exports => 1024 byte NIS-limits for netgroups o kern/172840 memory overwrite if configure more than 128 multicast o stand/172805 standards Fix catopen(3)'s EINVAL usage and document EFTYPE o ports/172802 sunpoet [patch] sysutils/py-psutil: get_swap_mem() returns gar o bin/172801 /usr/libexec/locate.updatedb (and therefore locate(1)) o conf/172787 rc [rc.conf] FreeBSD 9.x broken alias syntax on vlan inte o kern/172782 mbuf(9) needs update for IPv6 csum offload f ports/172750 graphics/luminance does not compile if graphics/libraw f misc/172744 Where is ttyslot() (3) in FreeBSD 9.1? o docs/172743 doc IPv6 handbooks lacks info about accepting router adver o bin/172742 acpidump(8): confused about Method (_CRT, 0, Serialize o ports/172741 portmgr [bsd.port.mk] check-build-conflicts checks too early f o misc/172736 http://www.freebsd.org/security/advisories/FreeBSD-SA- o kern/172706 wireless [wpi] wpi0 fails to load firmware when using country o kern/172683 net [ip6] Duplicate IPv6 Link Local Addresses o bin/172677 bsdgrep without gnu regex library causes buildworld fa o kern/172675 net [netinet] [patch] sysctl_tcp_hc_list (net.inet.tcp.hos o kern/172672 wireless [ubt] Bluetooth device recognised but not working o kern/172661 wireless hostapd(8) securing wireless adapter in HostAP mode is o ports/172660 wen [patch] science/libkml: Build error when swig is insta o kern/172653 "gptboot: Invalid GPT backup header" message received o ports/172651 bdrewery ports-mgmt/portmaster --index and --index-only redunda o kern/172648 pf [pf] [ip6]: 'scrub reassemble tcp' breaks IPv6 packet o usb/172633 usb Sony Cybershot not recognized as USB mem stick o kern/172632 [headers] [patch] Unused structure in netconfig.h o kern/172630 LOR zfs/zfs_vfsops.c kern/kern_descrip.c o docs/172626 doc [PATCH] modify the community/* pages to look more plea o www/172624 www Some RSS feeds on www.freebsd.org are broken o ports/172608 portmgr [exp-run] conditional including of bsd.perl.mk inside o kern/172599 cy [ipfilter] [patch] Null function pointer in ipfilter f ports/172595 New port: net-p2p/pushpoold bitcoin push-mining pool s p kern/172577 davide [hwmpc] hwpmc can leak memory on unload o kern/172576 [librpc] librpc segfaults when out of memory o kern/172569 benl [openssl] [patch] Fix div-by-zero in openssl o ports/172547 portmgr bsd.destdir.mk fails when DESTDIR is set o kern/172535 [modules] kldload+kldunload if_carp makes kldstat not o bin/172534 [patch] FICL - correct handling of bare comment lines o conf/172532 rc [rc] [patch] service routing restart always fails p bin/172529 dteske [patch] Non-default boot_verbose=YES in loader.conf(5) o bin/172523 [patch] rpc.lockd(8): Check value of res->ai_family o ports/172496 biology/blat: Update to version 35 f ports/172482 edwin [PATCH] games/bomberclone: update to 0.11.9, Makefile f ports/172441 chinese/fcitx should be in 'textproc' instead of 'chin o ports/172439 [New Port] chinese/fcitx-table-yonh: Pinyin-like input o ports/172392 portmgr [patch] bsd.port.mk Use native unzip for zip archives o kern/172390 [headers] __res_state_ext missing from system headers s kern/172386 [syscons] [request] syscons(4) support for mouse scrol o misc/172376 FreeBSD 9.0 installed but won't boot o docs/172370 doc [handbook] Handbook should be updated for Blu-Ray driv o docs/172369 doc mkisofs(8)/growisofs(1m) don't specify UDF version o docs/172368 doc mount_udf(8) doesn't specify which versions of UDF are o docs/172367 doc ata(4) man page needs an updated for Blu-Ray o ports/172366 kwm [UPDATE] multimedia/pitivi to 0.15.2 f ports/172361 lang/gnustep-base fail to configure with clang f ports/172359 kde [PATCH] editors/calligra: Fix build with clang++ -stdl f ports/172353 multimedia/mencoder does not build with clang on amd64 o kern/172348 fs [unionfs] umount -f of filesystem in use with readonly o kern/172338 wireless [ath] [net80211] CCMP IV transmit counters are not cor o kern/172334 fs [unionfs] unionfs permits recursive union mounts; caus o i386/172333 i386 [boot] Kernel panic in multi processor mode s ports/172332 portmgr [exp-run] Expanding stdio's internal file descriptors o docs/172330 doc [PATCH] Fix some errors introduced to announce.xml by o ports/172317 perl [NEW PORT] net/p5-SOAP-Transport-HTTP-Plack: Transport o kern/172301 [libstand] [patch] add CRC32 feature to FreeBSD's boot o bin/172293 kientzle bsdtar(1): bsdtar does not support --ignore-failed-rea o ports/172288 rene net/boinc-client broken with OPTIMIZE o kern/172283 [openbsm] OpenBSM-21/openbsm/libbsm/bsm_token.c incorr o kern/172279 [openbsm] [patch] OpenBSM-21/openbsm/libbsm/bsm_token. o kern/172277 [openbsm] OpenBSM-21/openbsm/libbsm/bsm_token.c au_to_ o stand/172276 standards POSIX: {get,set}groups gidsetsize is u_int not int a ports/172275 portmgr [PATCH] [exp-run] devel/libtool: avoid use of -nostdli f ports/172272 www/speedtest-mini - port not working o ports/172261 xride sysutils/wmmemload: fails on 9.0-RELEASE o stand/172215 standards localeconv() grouping appears not to match POSIX o ports/172209 joerg devel/avr-gdb fails to build using clang o usb/172199 usb [xhci] high interrupts load xhci o kern/172197 Userquota (as well as groupquota) does not work on ZFS o www/172195 shaun PR database corrupts patches o ports/172185 multimedia multimedia/vlc build fail with gmake core dump at modu o ports/172183 kuriyama emulators/virtio-kmod : Severe filesystem corruption w o ports/172168 zeising [new port] comms/libdlo: the basis for the DisplayPort o kern/172166 Deadlock in the networking code, possible due to a bug o docs/172144 doc psignal(9) manpage is outdated for FreeBSD-9 systems f ports/172141 nemysis [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, f ports/172140 edwin The /usr/ports/multimedia/pvr250 port is broken for Fr o docs/172137 doc deprecated information for adduser(8) man pages o kern/172133 Change Adaptec 39320LPE to 29320LPE in aic79xx_pci.c o ports/172128 multimedia building multimedia/vlc fails o kern/172113 net [panic] [e1000] [patch] 9.1-RC1/amd64 panices in igb(4 o ports/172110 pgsql databases/postgresql92-server change periodic script [ o ports/172108 swills [PATCH] graphics/ilmbase: libIlmThread is not linked w o kern/172092 zfs import panics kernel o misc/172086 reboot hang with 'All buffers synced' after freebsd-up o ports/172083 doceng print/ghostscript9 configurable dependency for graphic o ports/172079 portmgr [patch] bsd.port.mk: allow using base readline on 10.0 p kern/172075 emaste [tap] [panic] panic if an in-use tap interface is dest o www/171953 www Pipermail creates HTML pages that have the the body co f ports/171950 devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: e o ports/171945 sysutils/fusefs-smbnetfs crash since fusefs-libs updat o kern/171940 RFE: tty color features o kern/171937 multimedia [pcm] Notebook Toshiba Satellite C850-B1K and problem o ports/171921 New port: devel/ocltools: s ports/171914 mva New port: devel/pocl: Portable open source OpenCL 1.2 o ports/171903 net-mgmt/observium port should only provide dependenci o ports/171899 office editors/openoffice-3-devel: Openoffice 3.4.1 build fai o ports/171888 multimedia [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 f ports/171886 [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] o misc/171885 [build] refactor bsd.prog.mk to understand multiple pr o misc/171883 [build] binutils build failed because of race with -j2 o bin/171882 incorrect port fowarding with server allocated port o kern/171873 xen [xen] xn network device floods warning in dmesg f ports/171868 [new port] net/remotebox: Open Source VirtualBox Clien o ports/171855 [NEW PORT] net-mgmt/node-statsd - Simple daemon for ea o ports/171852 ale [PATCH] databases/mysql55-server: add support for mult f ports/171850 Misleading pkg install option in sysutils/fusefs-kmod f ports/171849 databases/postgis: port switches compiler! GCC -> CLAN o kern/171840 net [ip6] IPv6 packets transmitting only on queue 0 o amd64/171835 amd64 bsdinstall abort on Dell PowerEdge R420 with PERC H310 o ports/171820 nemysis [NEW PORT] textproc/p5-docbook2odf: Convert docbook do o amd64/171814 amd64 [panic] bioq_init or bioq_remove (unsure which) o kern/171811 [patch] rctl(8) cputime is too high o bin/171809 sshd EVP_CipherInit: set key failed for aes128-cbc [pr o ports/171801 [patch] www/sams: Problem with creating MySQL database o ports/171798 nemysis [PATCH] textproc/sablotron: MASTER_SITES, CFLAGS, Docu o ports/171793 perl lang/perl5.16 w/ POD complains of old groff version p bin/171779 [patch] passwd(1): make option NO_FSCHG incomplete o kern/171777 [ncurses] [patch] Enable assert()s in ncurses f ports/171764 mi devel/gdb66 fails to fetch/compile on STABLE-9 f ports/171762 perl New port: net-mgmt/p5-Nagios-Plugin-Beanstalk Module t o kern/171746 [puc] [patch] Add support for MosChip MCS9901 based Qu o bin/171744 hiren [PATCH] Fix wake(8) command not sending proper WOL pac o kern/171739 net [bce] [panic] bce related kernel panic o ports/171735 nemysis [NEW PORT] editors/py31-loook-devel: Simple Python too o ports/171734 nemysis [NEW PORT] editors/py27-loook: Simple Python tool that o kern/171733 pf [pf] PF problem with modulate state in [regression] o kern/171726 [tty] conscontrol mute [on/off] doesn't work post-boot o bin/171725 awk(1) does not support word-boundary metacharacters p usb/171721 hselasky [patch] usb_quirk(4), ums(4): add UQ_UMS_IGNORE quirk o ports/171718 bapt make config optionsng failure results in loss of "su" o bin/171713 please include counters for ALTQ in bsnmp module snmp_ o kern/171711 net [dummynet] [panic] Kernel panic in dummynet o amd64/171701 amd64 [install] 9.0-rel amd64 installer 'guided' or 'manual' o kern/171700 cannot record a crashdump whan FreeBSD panics, it pani o kern/171697 ae [ip6] [ndp] panic when changing routes o i386/171684 i386 clang in 9.1-RC1 i386 produces out of registers error o ports/171681 portmgr Patch ports Makefile to support rsync update p bin/171678 gnn [dtrace] dtrace -h doesn't work when io.d is installed o ports/171675 nemysis [NEW PORT] games/cocos2d: Framework for building 2D ga o ports/171672 bdrewery [bsd.port.mk / bsd.pkgng.mk][exp-run] Make 'do-package f ports/171669 adamw www/hastymail2 clobbers plugin settings o docs/171657 gjb [syslog] syslog.conf(5) BUGS section needs clarificati f ports/171640 cy New port: devel/libivykis Asynchronous I/O readiness n o kern/171626 fs [tmpfs] tmpfs should be noisier when the requested siz p kern/171622 glebius Patch that add "options PF_DEFAULT_TO_DROP" to kernel o ports/171621 portmgr [PATCH] bsd.port.mk; allow Real Names in MAINTAINER li o kern/171610 theraven [libstdc++] recent libstdc++ regression o ports/171603 nemysis [NEW PORT] games/py27-dcross: Blocks fall from the top o ports/171602 nemysis [NEW PORT] games/py27-cargocarrier: Collect cargo crat o kern/171598 wireless [ath] TP-Link TL-WN951N W-LAN PCI Adapter 300 MBit stu o ports/171588 office editors/libreoffice build error o ports/171584 python lang/python32 built in a clean enviroment produces a p o ports/171576 nemysis [NEW PORT] games/py27-bombz: Simple 2D puzzle game wit o kern/171563 adrian non PREEMPTION kernel kills 802.11n o ports/171559 nemysis [NEW PORT] games/airstrike: 2d biplane dogfight game o ports/171556 olgeni lang/erlang: stock gcc hangs when building Erlang R15B o ports/171552 nemysis [NEW PORT] games/traingame: Game about Trains o kern/171550 patch: "no match for InterlockedCompareExchange" and t o ports/171542 mm [PATCH] multimedia/x264: Remove PGO as default OPTION f ports/171539 [patch] net-mgmt/nrpe2 small fixes o kern/171532 net [ndis] ndis(4) driver includes 'pccard'-specific code, o kern/171531 net [ndis] undocumented dependency for ndis(4) o kern/171524 net [ipmi] ipmi driver crashes kernel by reboot or shutdow f kern/171520 yongari [alc] alc network driver + tso + vlan does not work. o bin/171514 [PATCH] Make man(1) default to use full screen if usin s kern/171508 net [epair] [request] Add the ability to name epair device f ports/171452 zi [update] security/sssd to 1.8.4 f ports/171450 zi [update] devel/ding-libs to 0.2.91 o bin/171427 sh(1): Hitting ^Z doesn't suspend jobs like expected o ports/171426 hselasky multimedia/cuse4bsd-kmod now breaks rebuild of kmods d o ports/171422 x11 graphics/libGL build error with python3.2 o kern/171415 fs [zfs] zfs recv fails with "cannot receive incremental o kern/171410 [coretemp] [patch] add support for Atom E6xx and add t o ports/171392 nemysis [NEW PORT] games/py27-super_mario_bros_python: Clone o o ports/171391 nemysis [NEW PORT] games/py27-pytowerdefense: Tower Defense Ga o kern/171385 Fix type in FreeBSD_64 OS type o i386/171379 i386 Prototype/Body Mismatch for i386 legacy_pcib_read_conf o ports/171372 osa [PATCH] databases/redis: rc script with multiple profi o ports/171367 sbz security/py-PF gives IOError: [Errno 13] Permission de o ports/171361 bapt ports-mgmt/pkg: Regressions from pkg_ tools o kern/171360 gnn [patch][dtrace] the fasttrap fork handler recurses on o usb/171354 usb [umass] Medium not present error on flash drive [regre o ports/171353 swills Segmentation fault when use'ing the perl modules XML:: o misc/171347 joerg Filename conflict in subversion f ports/171338 both databases/mariadb-scripts and databases/mariadb-s o ports/171332 nemysis [NEW PORT] games/py27-pythonsudoku: Text and graphical o misc/171313 both freeze-2.5_2 and mlt-0.8.0_1 install /usr/local/b o kern/171305 acpi [acpi] acpi_tz0: _CRT value is absurd, ignored (256.0C o misc/171293 cvsup8.us.freebsd.org|cvsup8.freebsd.org way out of sy o usb/171262 usb plug in sdhc via usb reader reboots machine p usb/171254 hselasky Lack of support for usb 2.0 audio class devices o amd64/171250 amd64 ldd32 cannot find some i386 libraries o ports/171248 multimedia multimedia/win32-codecs: Fix pkg-plist o ports/171246 python [patch] lang/python27: make python curses module work o ports/171236 nemysis [NEW PORT] games/schwarzweiss: Tank game for 2 players o kern/171235 wireless [ath] ath loses connection, system freezes on netif re f ports/171231 vg audio/clementine-player starts only at the second time o kern/171228 net [re] [patch] if_re - eeprom write issues o ports/171224 nemysis [NEW PORT] games/bouncy: You are a hungry rabbit. Eat o bin/171221 ppp and serial gprs modem o ports/171211 bf lang/sbcl corruption warning in emacs/slime f kern/171209 ping: sendto: Invalid argument o kern/171202 [lor] multiple LOR's during the startup f docs/171200 issyl0 the bsdgrep(1) man page should document -u o docs/171199 doc the GDB man page is outdated o usb/171197 usb ADATA Classic CH11 USB HDD doesn't work in FreeBSD 9.1 o misc/171193 Freebsd 9.x freeze at booting after USB line o kern/171192 [libutil] [request] pidfile_read should be made a publ p conf/171180 ak [patch] make 460.chkportsum also report missing files o ports/171178 office textproc/aspell does not recognize standard filters o ports/171176 new port: net/winexe o bin/171173 [patch] etherswitchcfg vlangroup IOETHERSWITCHGETPORT f ports/171160 sysutils/loganalyzer depends on php5 o ports/171149 new port: textproc/imsettings - a framework manages in o kern/171137 NDIS causing PANIC o bin/171136 NTPd -v flag double parsing o kern/171121 yongari [bge] bge driver not working with BCM5719 (HP Proliant o misc/171120 GCC incorrectly identified in base when CLANG_IS_CC an o kern/171118 xen [xen] FreeBSD XENHVM guest doesn't shutdown cleanly o bin/171113 sysinstall bsdinstall(8): FreeBSD 9.1-beta1 installer refuses to o ports/171106 New Port: net/jdownloader - Download manager (java) o docs/171098 zeising handbook section 19.6.3 burncd needs changed o kern/171096 arm [arm][xscale][ixp]Allow 16bit access on PCI bus o misc/171082 Nvidia GeForce GTX 560 no HDMI Sound o misc/171078 X and XFCE (xfsettingsd) errors on shutdown/logout o gnu/171026 internal compiler error o ports/171019 [new port] science/isis3: USGS ISIS3 planetary mapping o ports/171017 [new port] astro/cspice: New scientific port: NASA/NAI o ports/171014 java [patch] Correct java/openjdk6 Dependency Declaration o kern/170949 [vga] [patch] Use DRIVER_MODULE_ORDERED and SI_ORDER_A o kern/170945 fs [gpt] disk layout not portable between direct connect o kern/170944 [panic] Unknown caching mode f ports/170943 crees [PATCH] build mail/spamass-milter with sendmail-sasl o bin/170930 edwin calendar(1) core dumps with minor input format deviati o ports/170916 swills Mk/bsd.ruby.mk: setting RUBY variable fails to set RUB p kern/170904 adrian [ath] ath driver: configure related parameters when ra o ports/170899 gahr net-im/openfire rc Script pidfile Check Broken With Br o kern/170889 wireless [ath] ath driver uses some uninitilized memory o ports/170852 x11 [PATCH] x11-fonts/encodings: encodings.dir includes bo o conf/170847 hrs [rc] static IPv6 addresses+vlans don't work ala rc(5) o kern/170834 [psm] [patch] synaptics middle and extended button sup o misc/170821 sysinstall sysinstall(1): unexpected directory name in 8,3-RELEAS o ports/170819 New port: net-mgmt/UniFi UniFi Wireless Controller o ports/170788 python lang/python27: PyQT applications crash Python 2.7 (cor o ports/170784 portmgr [bsd.port.mk] [patch] resolve symlinks in PREFIX on de o bin/170778 fs [zfs] [panic] FreeBSD panics randomly o ports/170760 office textproc/hunspell: fails to detect /usr/local/include/ o kern/170707 sysinstall bsdinstall(8) Partition editor (modify) option does no o i386/170705 i386 [patch] AT realtime clock support routines fail on som o kern/170701 net [ppp] killl ppp or reboot with active ppp connection c o usb/170699 usb FreeBSD 9.0 Doesn't list HDD or its partitions in part o ports/170695 sysutils/fusefs-ntfs - instant reboot when mv from UFS o docs/170691 doc Difference between zfs manpages and reality o ports/170690 x11 x11-servers/xorg-server eats memory o kern/170689 [build] cannot build custom kernel with DDB o usb/170688 usb patch][usbdevs][wlan] Patch for ASUS Black Diamond USB o kern/170680 fs [nfs] Multiple NFS Client bug in the FreeBSD 7.4-RELEA o bin/170676 newfs(8) creates a filesystem that does not pass fsck. o kern/170675 [ata] ata(4) hangs system, causing data loss o ports/170674 tj devel/libsysinfo fails to link correctly (missing kvm o sparc/170663 sparc64 panics with VIA 6421 SATA150 controller on Blade 1500 o ports/170662 nemysis [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d phy o ports/170661 nemysis [NEW PORT] graphics/py27-pyglet-devel: Cross-platform o ports/170652 tj New port: net-mgmt/nagios-check_ipmi_sensor: Nagios/Ic o bin/170651 On 9.0-RELEASE#0 and master sh(1) gobbles high bit at o kern/170636 spelling mistake "oustanding" in kernel tree o kern/170630 garbled syslog messages o gnu/170624 diff -qr produces incorrect output o kern/170620 wireless [ath] LOR and deadlock when multiple vaps are used o kern/170612 Kernel Panic using ntfsprogs and ntfs-3g together o usb/170606 usb r239222 kernel panic at boot - usb locking issue o kern/170605 [ath] 081312 ath logs: ath0: ath_tx_aggr_comp_aggr: A o kern/170604 [ipfw] ipv6 reass broken o kern/170573 wireless [iwi] Intel 2200BG iwi NIC hangs with need multicast c o ports/170571 vg [new port]: misc/leechcraft Cross-platform modular int o ports/170566 python update graphics/py-opengl depends on old version of gc f ports/170524 zi devel/ding-libs fails to build in tinderbox o kern/170523 zfs rename pool@snapshot1 pool@snapshot2 UNMOUNTS data o ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o misc/170514 The FreeBSD pr report form should have the 'wireless' o kern/170513 wireless [ath] ath logs: ath_tx_aggr_comp_aggr: AR5416 bug: o ports/170508 hselasky [PATCH] multimedia/libv4l: Don't link to -lpthread o misc/170503 freebsd-update mirror finding is case sensitive f ports/170502 zi security/sssd failed to connect Ldap server without SA o kern/170501 modular kernel fails to reattach usb-mass storage and o kern/170497 fs [xfs][panic] kernel will panic whenever I ls a mounted o amd64/170487 amd64 [boot] Thinkpad X61s cannot boot 9.1-BETA1 f i386/170482 i386 Installing world fails trying to copy loader.sym to lo o misc/170466 Under KDE4 4.8.4 System Settings - Desktop Effects Ope o bin/170456 'pkg_add -K' uses PKGDIR environment variable that con o ports/170448 [NEW PORT] devel/allegro5: Allegro 5 is a game program o bin/170447 [patch] mountd(8): correct handling of -n, -h and -p c o kern/170433 wireless [ath] TX hang after a stuck beacon message with active o kern/170431 Partition resize and growfs destroys label entry in /d f bin/170415 mckay [patch] file(1) fails to detect troff (and other file o bin/170413 [patch] mountd(8): correct handling of -alldirs option o kern/170411 wireless [ath] Uninitialized variables in if_ath.c o ports/170410 gnome devel/gvfs: gvfs-hal-volume-monitor crashes when new m o stand/170403 standards wrong ntohs expression type tickling clang o kern/170397 wireless [ath] [patch] Uninitialized variables in ah_eeprom_928 o bin/170373 [patch] pam_ssh(8): after FreeBSD-SA-11:09.pam_ssh pat o kern/170369 More O_CLOEXEC flags to plug files being leaked to chi f ports/170366 lang/libobjc2: update to 1.6.1 o usb/170358 usb [ums] Wrong (duplicate) button numbers o kern/170356 [hyper-v] Installing freebsd on Hyper-V server 2008 R2 o ports/170355 bapt ports-mgmt/pkg: pkg upgrade conflicts noise could be c o amd64/170351 amd64 [kernel] [patch] amd64: 64-bit process can't always ge o ports/170343 thierry [PATCH] games/monsterz Version 0.7.1_4 install in wron s docs/170341 gjb [patch] Minor grammatical errors in engine(3) o power/170340 ppc Enabling geom-mirror on 9.1-powerpc64 prevents the sys f ports/170339 www/node: segmentation violation in v8::internal::Hand o ports/170323 decke [UPDATE] dns/maradns: update to 2.0.06 o bin/170320 [PATCH] usr.sbin/adduser/rmuser.sh It remains without o ports/170316 bapt Mk/bsd.options.mk: add compatibility for PORTDATA for o ports/170310 gecko mail/thunderbird: coredump/crash when used with OpenLD o kern/170302 wireless [ath] 802.11n frames are not being transmitted with mu o ports/170299 cy sysutils/syslog-ng sample config does not work the way o bin/170295 [patch] mountd(8): correct credentials parsing in -map a ports/170289 danfe [patch] use one version for x11/nvidia-driver x11/nvid o bin/170288 camcontrol(8) inquiry command does not provide informa f ports/170285 tj Update mail/mailman from 2.1.14 to 2.1.15 o kern/170281 wireless [ath] 802.11n locks up on aggregation setup (ampdutx) f ports/170280 tj mail/mailman reports incorrect value for MM_USERID p bin/170279 jhb dhclient(8) uses low TTL of 16 f bin/170278 eadler [patch] [request] Add --check option to md5(1) o kern/170276 [hang] FreeBSD freeze with mplayer/vlc after resume fr o kern/170267 net [ixgbe] IXGBE_LE32_TO_CPUS is probably an unintentiona f bin/170264 sysinstall bsdinstall(8) into jail doesn't find FTP distribution o kern/170255 Often panic at 22s uptime o kern/170254 [ath] Atheros 9220 device timeouts. o bin/170244 ping(1): useless/uninformative error message o bin/170243 ping(8): useless/uninformative error message o conf/170230 /etc/rc.d/mrouted call for a port but look for a confi o docs/170223 doc IPv6 configuration section for 9.x is incorrect o ports/170219 portmgr [exp-run] lang/perl5.14: get rid of USE_PERL f misc/170215 [build] cd release; make cdrom should fail if not exec o bin/170206 numerics [msun] [patch] complex arcsinh, log, etc. o kern/170203 [fifo] piped dd's don't behave sanely when dealing wit o kern/170200 [crypto] [patch] AES-NI XTS mode performance lower tha o ports/170180 bapt [patch] Mk/bsd.options.mk allow make.conf and command a ports/170179 osa [PATCH] www/rubygem-passenger: Allow both nginx and ap o kern/170177 Cannot watch UNIX sockets for "vnode" events using kqu o ports/170175 bf [PATCH] net/mpich2: fix packging with WITHOUT_X11 f ports/170150 danfe games/uhexen2: Update to version 1.5.3 o kern/170125 [libc] tcsetpgrp(fd) should fail when fd is a pipe o usb/170123 usb [umass] HP v210w USB stick not supported o docs/170119 doc at behaviour and man at inconsistency o amd64/170115 amd64 Serial boot broken in 9.0 p conf/170110 dteske loader.conf bootmenu password prevents OS from loadin o ports/170107 jhay net/olsrd fails to build with -DWITH_MULTI_IF o ports/170104 hrs error setting source interface in net/mcast-tools, net o ports/170102 flo graphics/php53-gd dumps core when compiled without T1L f ports/170100 astro/orsa: version 0.7.0 in ports hopelessly outdated o kern/170098 wireless [ath] [net80211] VAPs (Virtual access points) with Ath o kern/170096 rodrigc [vimage] Dynamically-attached network interface will c o kern/170090 /boot/loader.conf boot_mute="YES" option in 9.x o ports/170082 zeising [maintainer-update] Update www/cakephp21 to 2.1.5 o kern/170081 net [fxp] pf/nat/jails not working if checksum offloading o ports/170078 gahr New port: databases/mysql-workbench: a cross-platform, o kern/170077 [hang] if I/O errors accour on USB storage devices, co o kern/170076 [PATCH] lpt: check readiness with predefined macros s kern/170070 bz [regression] 9.1-PRERELEASE host cannot talk to itself o kern/170066 wireless [ral] ral(4) rt61pci Linksys freezes the machine as so o kern/170058 [cbb] [patch] cardbus slot is not functioning correctl o www/170053 wosch Mailing list sort options broken for svn lists o ports/170052 eadler update port: games/daimonin-music to remove NO_CHECKSU o ports/170051 office devel/icu fails on test stage when built with clang 3. o kern/170038 geom [geom] geom_mirror always starts degraded after reboot o ports/170032 multimedia Some ports not bumped after libogg update o gnu/170025 [patch] Typo in libsupc++ Version.map o kern/170003 markj [ichsmb] buffer overflow during block read f kern/169991 rodrigc [run] [vimage] panic after device plugged in f ports/169986 johans security/mcrypt does not encrypt or decrypt properly i o bin/169971 auditd(8) does not reload rules o kern/169968 [shutdown] SCROLL LOCK case server never shutdown o kern/169967 [boot] server do not start with USB keyboard o bin/169964 zfs(8): "zfs receive -F" not destroying snapshots that o kern/169954 [umass] [patch] Western Digital My Passport : (da1:uma p kern/169947 jh [md] [patch] System crash via ioctl() on mdctl. o kern/169945 fs [zfs] [panic] Kernel panic while importing zpool (afte o kern/169936 [panic] wchan 0xc707d8a4 has no wmesg o usb/169935 usb [keyboard] Unable use USB keyboard while panic p ia64/169926 ia64 [ia64] netstat -r: kvm_read: Bad address o ports/169923 zeising Maintainer update: science/afni o misc/169919 I can't pxeboot install release-9.x o bin/169911 [PATCH] make it possible for yp_mkdb(8) to send YPPROC o misc/169908 Shutdown goes to panic, if swap device disappeared o gnu/169901 [libsupc++] [patch] Typo in gnu/lib/libsupc++/Version. o kern/169898 net ifconfig(8) fails to set MTU on multiple interfaces. o ports/169896 emulation [patch] audio/linux-f10-alsa-lib: use OSS plugin by de o i386/169888 i386 [install] 9.0 i386 will not install on a Dell Dimensio o bin/169865 zpool(8): zpool iostat shows 0 activity, although the o kern/169862 jkim [acpi] Prevent system sleep once shutdown has been ini o misc/169857 [build] kernel compile fails for PAE with device sound o kern/169849 [libc] [patch] rsh/rlogin do not use the correct IP ad o kern/169838 [kernel] spin lock held too long f kern/169826 yongari [re] if_re no longer working in 9.x [regression] o kern/169814 emulation [linux] ptrace is broken in Linux emulation o kern/169805 emulation [linux] utime() syscall does not work in linuxulator o kern/169800 [libc] [libfetch] [patch] change a number of system li o ports/169794 x11 x11/xdm, several /usr/local/lib/X11/xdm/ files missing o usb/169789 usb [u3g] [patch] add support for huawei e3131 o ia64/169781 ia64 /usr/bin/csup ends in sigwai state and never exits o bin/169779 [patch] powerd(8) doesn't honor the -n flag o bin/169773 jilles [patch] sh(1): Resizing causes /bin/sh to repeat edit o kern/169751 jail [jail] reading routing information does not work in ja o bin/169750 sysinstall bsdinstall(8): cannot run more than once with DHCP/SLA o bin/169748 sysinstall [patch] bsdinstall(8): when distfile fetch is complete o ports/169741 [new port] devel/visualparadigm o misc/169725 I made a fresh install of FreeBSD 9.0, I run "boot0cfg p bin/169723 jilles [patch] find(1) exits with non-zero return code if any o docs/169712 doc [patch] porters-handbook zh_TW.Big5 apache section o docs/169711 doc [patch] porters-handbook zh_CN.GB2312 apache section o docs/169709 bcr [patch] porters-handbook de_DE apache section o stand/169697 standards syslogd(8) is not BOM aware p ports/169693 gnn [PATCH] devel/zookeeper: unbreak build, use standards o bin/169685 cperciva freebsd-update's merge procedure should automate certa p kern/169683 jh [md] [panic] System crash via ioctl() on mdctl. o kern/169680 [netware] NLM and security flavors o kern/169676 net [bge] [hang] system hangs, fully or partially after re f ports/169671 kde editors/calligra Spreadsheet throws and exception on e o bin/169670 [pam] template_user is broken in pam_radius o sparc/169669 sparc64 Something seems broken in sparc64 TLS or lang/lua o misc/169667 freebsd90 no vga-out after suspend,no boot acer-pc.no f kern/169665 gavin Add missing smb(4)/smbus(4)/ichsmb(4) modules o kern/169664 net [bgp] Wrongful replacement of interface connected net o kern/169663 [eventtimers] HP DL365 G5 hangs on boot o ports/169658 mm multimedia/ffmpeg no longer installs html docs? o kern/169657 gnn [dtrace] name clash between dtrace and geom.h o kern/169647 gmultipath(8) fails to detect missing module o misc/169645 [patch] Made OPIE support tunable at kernel level o ports/169641 kuriyama unable to build "textproc/openjade" after updating to o ports/169636 kuriyama regexp problem in databases/pgpool-II o kern/169634 yongari [bge] Network unavailable when booting directly to Fre o ports/169632 wen Update of biology/paml from 4.4c to 4.5 o kern/169630 pf [pf] [patch] pf fragment reassembly of padded (undersi o ports/169628 sysutils/devcpu-data o kern/169620 net [ng] [pf] ng_l2tp incoming packet bypass pf firewall a ports/169610 olgeni sysutils/fusefs-encfs version 1.7.4_1 causing kernel p o kern/169608 the mmap(), mprotect(), and munmap() functions get scr o ports/169598 timur net/samba36: winbind failure on ssh login, failed to m o ports/169561 x11 [patch] x11-toolkits/libXmu: disable specs o ports/169560 x11 [patch] x11/libICE: disable specs o ports/169559 x11 [patch] x11-fonts/fontsproto: disable specs o ports/169545 glewis graphics/libjpeg-turbo is a build conflict with java/o o docs/169544 doc serial port console documentation changes o bin/169542 gpart(8): partition alignment doesn't works on MBR o kern/169539 geom [geom] [patch] fix ability to run gmirror on MSI MegaR s docs/169530 db separate spelled incorrectly in translated docs o ports/169491 wen [PATCH] math/igraph: update to 0.6 o kern/169488 [panic] chromium crashes system o kern/169480 fs [zfs] ZFS stalls on heavy I/O o kern/169475 [ipmi] IPMI MAX_TIMEOUT is too short o bin/169471 [patch] pw(8) deletes group "username" on userdel even o usb/169461 usb [ugen] USB2 high-speed device detected as full speed o kern/169459 net [ppp] umodem/ppp/3g stopped working after update from o i386/169455 i386 [boot] BTX loader panics on Opteron3280 o docs/169454 brd many hostmasters mails not avaiable o bin/169439 [patch] ntpd(8): Stock ntpd segfaults when used with G o kern/169438 net [ipsec] ipv4-in-ipv6 tunnel mode IPsec does not work o kern/169433 bschmidt [iwn] iwn(4) doesn't support 6235 chip. o kern/169432 wireless [ath] BAR TX hang when aggregation session is reset du o usb/169428 usb [ugen] ugen not detecting all endpoints on device [reg s docs/169401 doc passify dead links in release links, move www to lists o kern/169398 fs [zfs] Can't remove file with permanent error o ports/169394 portmgr [ bsd.port.mk ] improper evaluation of config-recursiv o kern/169379 gnn [dtrace] [patch] dtrace's timestamp variable is unreli o docs/169377 doc [patch] ipmon(8) man page refers to a different facili o conf/169373 smh mountd starts too early when exporting fs marked as la o ports/169366 gecko www/xpi-* ports need re-install after each Firefox upd p kern/169362 wireless [ath] AR5416: radar pulse PHY errors sometimes include o bin/169356 pw(8): "pw groupmod GROUP -h FD" ignores "passwd_forma o kern/169350 gnn [dtrace] Extraneous output when tracing writes with ou o kern/169339 fs panic while " : > /etc/123" o ports/169337 sunpoet [REPOCOPY] request for repocopy from devel/perltidy to o kern/169336 wireless [ath] ANI isn't triggering in a busy/noisy environment o conf/169330 [syscons] [patch] New Syscons Font for Persian Languag f ports/169322 New port: net/armsd: SMFv2/ARMS Service Adapter daemon p kern/169320 jilles [libc] [patch] Enhancement to allow fopen() to set O_C o kern/169319 fs [zfs] zfs resilver can't complete o docs/169317 doc zfs umount refers to umount(1M) but should to umount(8 o ports/169316 dteske sysutils/bsdconfig test results and fixes o ports/169305 brix [patch] Upgrade www/ikiwiki to version 3.20120516 o kern/169302 [libc] [patch] Applied MidnightBSD regex memory consum o ports/169300 bapt [PATCH] bsd.pkgng.mk Allow deinstall as user and make o kern/169282 [libc] utimes(2) does not update st_mtim.tv_nsec when o ports/169234 acm print/foomatic-db-engine: /usr/bin/install -c -o root o kern/169206 ipfw [ipfw] ipfw does not flush entries in table o bin/169201 ae bsnmpd(8) host-resources - return hrFSTypes on hrStora o kern/169199 wireless [ath] Cannot set up static ip addresses for wireless w o docs/169191 brd Upgrade the mirrors list o kern/169187 Bad sizeof(uint64_t) with -m32 compiler flag o ports/169165 sysutils/fusefs-kmod: calling fchown(2) on sshfs files o docs/169158 doc [patch] iasl(8) man page is out of date o kern/169150 opendir() does not use O_CLOEXEC ; fdopendir() closed f ports/169109 sunpoet patch as net/mDNSResponder fails to install o kern/169084 wireless [ath] suspend/resume doesn't cause a rescan; the assoc o kern/169080 gnn [dtrace] DTrace broken for simple user land program o ports/169079 xfce print/xfce4-print does not build on i386 a bin/169077 geom bsdinstall(8) does not use partition labels in /etc/fs f ports/169076 swills emulators/open-vm-tools update o bin/169072 [patch] A little change to ifconfig(8) to display CIDR o kern/169065 [ipsec] [regression] "netstat -p ipsec -s" is broken o kern/169064 [alc] does not properly reinitialize when resuming o docs/169056 trhodes [patch] sysctl*(3) cannot fail with EFAULT if name con o bin/169053 [PATCH] argument of pkg_create --prefix option always o conf/169047 rc [rc.subr] [patch] /etc/rc.subr not checking some scrip o kern/168979 kernel build fail with -Os o conf/168966 geli swap flag for encryption algo is redundant f ports/168965 cy sysutils/syslog-ng installs 2 full blown scripting lan o docs/168962 trasz cp(1) & mv(1) pages don't mention ACLs or extended att o bin/168961 cp should provide an option to copy file ACLs and attr o kern/168952 pf [pf] direction scrub rules don't work o kern/168947 fs [nfs] [zfs] .zfs/snapshot directory is messed up when o kern/168942 fs [nfs] [hang] nfsd hangs after being restarted (not -HU f docs/168939 doc Port upgrade documentation missing from Application Ja o docs/168930 doc map_mincore(9) not up-to-date o docs/168929 gavin bad links in commercial section o docs/168915 doc size of integers used by test(1) and sh(1) is not docu o kern/168913 TCPDUMP causing interface to drop o kern/168900 [boot] BTX halted on boot when using Promise TX2650 co o bin/168862 [patch] tzname set incorrectly s kern/168860 [new driver] [request] Port the OpenBSD urtwn wireless o bin/168844 ed [patch] last(1) doesn't show reboot times with struct o kern/168842 andre [tcp] FreeBSD hosts are sending TCP packets with FIN f o docs/168823 doc 404s in fr_FR French web pages o kern/168822 [ata] IDE/ATA 40 wire cable causes read errors after i o docs/168814 doc [patch] remove `d` negative pointer EINVAL requirement o docs/168803 doc Remove outdated smp info o ports/168800 acm print/foomatic-db-engine: install: *.1: No such file o bin/168785 /usr/bin/calendar does not match "Thu+1" or "Mon+1" in o kern/168754 if_ath dont have internal name f ports/168744 clsung textproc/refdb: Fatal error: Call-time pass-by-referen p usb/168743 mav [umass] [panic] double fault caused by umass o stand/168719 jasone [PATCH] It seems consensus is to track unpublished sta f ports/168709 sunpoet security/py-pylibacl duplicates security/py-posix1e o ports/168708 xfce x11-fm/thunar-vfs: wrong dependencies? o bin/168681 gmirror(8) needs option to limit mirror capacity o kern/168678 bz [jail] raw sockets incorrectly choose source address w f ports/168676 marcus [PATCH] ports-mgmt/portlint: relax PORTVERSION check w s ports/168671 portmgr [exp-run] Make devel/cmake and devel/cmake-gui not use o amd64/168659 amd64 [boot] FreeBSD 9 - Crash upon booting off install CD ( f ports/168656 jgh patches for sysutils/rubygem-chef o kern/168649 [ath] TX frames sometimes occur out of order o ports/168647 Remove trailing spaces from all ports-related files o ports/168640 portmgr [PATCH]: prevent checksum mismatches for compiled pyth o bin/168631 libsupc++ Version.map new operators size argument wron o ports/168629 danfe games/quakeforge: update to 0.6.2 f ports/168620 perl security/p5-GSSAPI build fails with heimdal port in ja o bin/168582 sysinstall [request] bsdinstall(8): Select 'server' or 'desktop' o usb/168551 usb [umass] Issues with embedded card reader (Laptop ASUS p bin/168544 rc [patch] [rc]: addswap-mounted swapfiles cause panic on o kern/168530 wireless [ath] Broken WEP probably p kern/168520 rodrigc [ng_ubt] [patch] "option VIMAGE" kernel with ng_ubt.ko o misc/168508 [build] [patch] turn off clang extras if WITHOUT_TOOLC f ports/168504 ale mysqlcheck (databases/mysql51-client) does not obscure o bin/168499 The -nt predicate works inconsistently with zfs, cp -p o kern/168497 Netmap code mixed up tx and rx in iterate counter o ports/168479 portmgr Mk/bsd.port.mk: [patch] portaudit reports vulnerabilit o misc/168477 ambigious kernel is loaded when install system from ke o kern/168473 [libc] nsswitch (nss_method_lookup) fails after upgrad f ports/168446 edwin [PATCH] net/dhcprelay: Fix for broken init script o kern/168440 ixgbe flow control tunable regression o threa/168417 threads pthread_getcpuclockid() does not work to specification o kern/168416 [hang] OS hangs when guest on VMWare ESX o kern/168414 ixgbe commit r232874 introduces code/comment mismatch o kern/168411 [vm] [panic] uma_find_refcnt(): zone possibly not UMA_ o ports/168404 [NEW PORT] databases/dev-sqlite3: This is a developmen o bin/168397 cpio(1): cpio --quiet fails to suppress "unnscessary" o kern/168396 benl [build] [patch] src.conf tunables to enable zlib compr o kern/168393 wireless AR9285: suspend/resume sometimes fails o bin/168388 rcmd(3) recursion when RSH points to rsh f ports/168385 secteam ports-mgmt/portaudit does not handle locales correctly o ports/168371 rakuco archivers/p7zip: Fix warnings when build port ([-Wlogi o kern/168342 [mbuf] mbuf exhaustion hangs all daemons in keglimit s o misc/168341 [patch] improve OptionalObsoleteFiles.inc completeness o kern/168335 nfsv4 server with krb5 sec limits group number per uid f ports/168332 swills emulators/open-vm-tools: Problems with DHCP on startup o ports/168328 [REPOCOPY] devel/codeblocks --> devel/codeblocks-devel o misc/168327 Extraneous directories left over after installworld wh o ports/168322 simon ports-mgmt/portaudit: Error reading signature file o kern/168315 [libc] [patch] add dirname_r(3); document ENOMEM condi o bin/168314 sysinstall bsdinstall(8): 9.0 install "live CD" option can't crea f misc/168299 'make buildworld' fails at 'install.sh ... crtend.So' o kern/168298 VirtualBox using AIO on a zvol crashes p kern/168294 net [ixgbe] [patch] ixgbe driver compiled in kernel has no o ports/168292 portmgr [exp-run] test a change to system opensslv.h header o ports/168290 bf New port: math/ipopt o bin/168289 [patch] pkg_install(8): fix memory leaks and potential o bin/168269 sysinstall comments on bsdinstall(8) f kern/168268 yongari [re] if_re doesn't work if you set MAC address f ports/168258 sunpoet [PATCH] www/wordpress: russian/wordpress: fileowner ch o bin/168253 clang crashes on Geode o kern/168247 FreeBSD 7.2 kernel panic after update MPD from 5.5 to o kern/168246 net [em] Multiple em(4) not working with qemu o kern/168245 net [arp] [regression] Permanent ARP entry not deleted on o kern/168244 net [arp] [regression] Unable to manually remove permanent o ports/168234 office [patch] editors/openoffice-3 fails to build on FreeBSD o ports/168222 bdrewery [bsd.port.mk] [patch] Allowing to specify per-file PAT f kern/168217 yongari [bce] Watchdog timeouts with bce(4) on BCM5716 o kern/168213 [kernel] why is the type of ub_cnt signed in uma_int.h o kern/168212 [kernel] [patch] some suggested additions for uma_core o kern/168190 pf [pf] panic when using pf and route-to (maybe: bad frag o bin/168188 sysinstall bsdinstall(8) partitioner segmentation fault o kern/168187 NanoBSD for Elan SC520 will not compile o kern/168183 net [bce] bce driver hang system o kern/168170 wireless [net80211] ieee80211_send_bar() doesn't complete corre o gnu/168166 nm -l faild o kern/168158 fs [zfs] incorrect parsing of sharenfs options in zfs (fs f kern/168152 yongari [xl] Periodically, the network card xl0 stops working o usb/168132 usb [umass] MATSHITA memory card size reported wrong, moun o ports/168114 nemysis [NEW PORT] games/duckmaze: A game about a duck that is o ports/168091 gecko Mk/bsd.gecko.mk error: USE_FIREFOX doesn't work correc p kern/168077 davide [netsmb] [patch] SMBFS option causes panic-on-boot wit o misc/168017 LiveCD fails to boot fully in certain Virtualbox conf o bin/167986 location of install doesn't match man page o kern/167979 fs [ufs] DIOCGDINFO ioctl does not work on 8.2 file syste o kern/167977 fs [smbfs] mount_smbfs results are differ when utf-8 or U o kern/167947 net [setfib] [patch] arpresolve checks only the default FI a bin/167921 gabor bsdgrep(1) segfaults with "\\." o bin/167911 jail new jail(8) problem with removal, ifconfg -alias and k o ports/167903 java [PATCH] java/openjdk6: Fix build failure in 8.3 jail r p kern/167902 adrian [ath] TX block-ack window holes o kern/167870 wireless [ath] adhoc wifi client does not join an existing IBSS o usb/167847 usb [ural] dlink dwl-122g e crashes(?) when trying wap2 cr o kern/167834 wireless [ath] kickpcu; 'handled 0 packets' o docs/167832 [patch] swapon(2) (and elsewhere) refer to non-existen o gnu/167829 gcc(1): [patch] fix cross-building world with TARGET=i o kern/167828 wireless [iwn] iwn(4) doesn't recover automatically after firmw f kern/167827 yongari [re] RTL8111/8168B Issues (stalling/only 100Mb) o conf/167822 ipfw [ipfw] [patch] start script doesn't load firewall_type o kern/167798 wireless ifconfig(8): problem with "ifconfig list scan" command f ports/167794 portmgr [patch] Mk/bsd.port.mk: fix .zip in PATCHFILES o kern/167793 mbuf leak if arp address is multicast p bin/167779 hrs makefs does not create sparse file o kern/167763 gnn lockstat provider probes don't always fire o ports/167759 [New Ports] x11-wm/e17-modules-ecomorph and x11-wm/eco o bin/167744 [patch] /usr/sbin/adduser: enclose with double quotes: o docs/167742 joel Update documentation for group 5, and newgrp 1 o ports/167731 wen Repocopy from finance/openerp-server to finance/opener o ports/167720 vbox emulators/virtualbox-ose: VirtualBox 4.1.14- Guest: Fr o ports/167699 olgeni devel/ipython: WITH_PYTHON=3.2, dies on import of pexp o ports/167698 wen New port: finance/openerp f ports/167691 security/heimdal: problem compiling kerberos/heimdal o kern/167688 fs [fusefs] Incorrect signal handling with direct_io o kern/167685 fs [zfs] ZFS on USB drive prevents shutdown / reboot o bin/167675 The txmaxpow and txpower values I see from ifconfig(8) o i386/167670 i386 [boot] Laptop won't boot from FreeBSD iso, but will fr f amd64/167664 gavin [boot] when i install the amd64 OS, the process will s a kern/167646 hrs [ip6] IPv6 TCP connection hangs/drops when time/clock o ports/167641 office editors/libreoffice: o ports/167627 maho math/octave: Old lapack causes failure in octave svd() o ia64/167618 ia64 [ia64] Implement revision 232832 o ports/167613 fluffy graphics/vigra: rf_split.hxx:155:26: error: variable h o kern/167612 fs [portalfs] The portal file system gets stuck inside po o kern/167603 net [ip] IP fragment reassembly's broken: file transfer ov o ports/167601 itetcu [patch] ports-mgmt/tinderbox: Allow masking of PHP use o amd64/167582 amd64 Compile of MySQL NDB Cluster Fails 8.2 AMD64 o bin/167575 mfiutil(8) claims battery is OK even though it is worn o kern/167574 /usr/include/clang/3.1/smmintrin.h:461:10: fatal error o conf/167566 rc [rc.d] [patch] ipdivert module loading vs. ipfw rc.d o f kern/167562 pjd [geli] geli cannot use gpt labels in loader.conf o kern/167555 kientzle [build] libarchive fails to build WITHOUT_OPENSSH due o amd64/167543 amd64 [kernel] Install FreeBSD can show error message with c f ports/167531 lev devel/p5-subversion: "git svn fetch" dumps core f ports/167530 python [patch] security/py-fail2ban will never ever start wit o kern/167500 net [em] [panic] Kernel panics in em driver o kern/167491 wireless [ath] TID != hardware queue TID in ath_tx_aggr_comp_ag o docs/167478 hrs [PATCH] misc. updates to the relase notes in current o kern/167468 [drm] drm locking Xorg in loop o misc/167449 slice re-partitioning cause invalid partition for boot o misc/167442 [install] server does not come up, if kernelinstall pr o ports/167441 office editors/libreoffice - Unable to print o docs/167429 doc geli(8) needs to mention unencrypted /etc/fstab requir o ports/167400 office editors/libreoffice 3-5.2.2 version ID - 350m 1 (Buil o amd64/167393 amd64 [boot] MacBook4,1 hangs on SMP boot o kern/167381 ichwd(4) misuses `bootverbose' o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre o kern/167362 gnn [fusefs] Reproduceble Page Fault when running rsync ov o bin/167336 portmgr pkg_info can't determine what package a missing file i o bin/167331 Segmentation fault with iscontrol(8) o kern/167325 net [netinet] [patch] sosend sometimes return EINVAL with o ports/167309 office editors/libreoffice: Unable to configure printers on L o ports/167289 itetcu [PATCH] mail/dspam-devel: [SUMMARIZE CHANGES] f ports/167282 swills net/nss_ldap performance change causes functionality r o kern/167272 fs [zfs] ZFS Disks reordering causes ZFS to pick the wron o kern/167260 fs [msdosfs] msdosfs disk was mounted the second time whe o ports/167251 wen [PATCH] biology/libsbml: update to 4.3.1 f ports/167229 bland [patch] x11/nvidia-settings: install sample tools (opt o bin/167222 sysinstall sysinstall(8): FreeBSD 8.3 corrupting MBR partition ta o kern/167204 [kernel] terrible "netstat -rn" performance due to slo o kern/167202 net [igmp]: Sending multiple IGMP packets crashes kernel o misc/167200 source upgrade from RELENG_7 to RELENG_8 broken for no o ports/167199 gnome x11-fm/nautilus 2.32.2.1 Gnome2.32 Doesn't auto mount o kern/167197 [sdhci] Use of SD card will increase the load of CPU. f ports/167172 nox x11/kde4 will not compile due to multimedia/libxine tr f ports/167134 jhale [port update] from devel/p5-doxygenfilter to devel/p5- o conf/167133 stale files in /usr/share/examples o kern/167113 wireless [ath] AR5210: "stuck" TX seems to be occuring, without o kern/167109 fs [zfs] [panic] zfs diff kernel panic Fatal trap 9: gene o kern/167107 [libc] [panic] no kernel malloc size argument check ca o kern/167105 fs [nfs] mount_nfs can not handle source exports wiht mor a bin/167103 markj dtrace(1) generates core dump trying to build perl wit o misc/167101 [boot] [patch] FreeBSD 9.0 i386 boot-only image loader o kern/167080 wireless [ath] channel switch on another VAP break channel setu o kern/167067 fs [zfs] [panic] ZFS panics the server o kern/167065 fs [zfs] boot fails when a spare is the boot disk o kern/167064 [build] Cross compile build failed - broken toolchain o kern/167048 fs [nfs] [patch] RELEASE-9 crash when using ZFS+NULLFS+NF o ports/167042 New port: net-p2p/tahoe-lafs o bin/167037 buggy file content output in ee(1) editor in VM enviro o bin/167036 ambigious output of fdisk(8) f ports/167031 security/heimdal ignore environment after process call o kern/167018 hiren [hwpmc] [patch] hwpstate0: set freq failed with AMD FX o usb/167001 usb [USB] [PATCH] add support for Smart G2 64MB memory key o bin/166994 m4(1): m4's eval function ignores documented 2nd and 3 o ports/166987 net/nss_ldap: ports/152982 causes nss_ldap to not func o ports/166955 hrs print/acroread9 is vulnerable o kern/166940 cy [ipfilter] [panic] Double fault in kern 8.2 f bin/166929 gnn dtrace(1): dtrace -c doesn't seem to like it if the su f kern/166928 gnn [dtrace] fbt provider does not destroy probes when mod o kern/166927 gnn [dtrace] [modules] Kernel panics if you unload a kld m o kern/166926 gnn [dtrace] Individual probes cannot be destroyed, only p o kern/166925 gnn [dtrace] lockstat provider only works in files that #i o kern/166924 gnn [dtrace] deferred DTrace probes never match if executa f kern/166923 gnn [dtrace] kernel trap 12 with interrupts disabled (not o kern/166922 gnn [dtrace] Wildcarded dtrace probe names not always work o bin/166921 gnn Use after free in dtrace(1) error handling o kern/166919 gnn [dtrace] If dtrace(1) crashes while attached to a proc o kern/166918 gnn [dtrace] USDT probes not cleaned up when process exits o kern/166912 fs [ufs] [panic] Panic after converting Softupdates to jo f kern/166909 yongari [alc] NIC alc(4) does not support 1000baseTX f kern/166894 yongari [rl] Realtek RTL8100 keeps droping link o ports/166868 pgsql databases/postgresql84-client: compile error with Heim o kern/166866 [build] [cy] cy(4) driver breaks kernel build in 8.3 o bin/166862 grep(1): grep [[:alnum:]]* only matches once o bin/166861 bsdgrep(1)/sed(1): bsdgrep -E and sed handle invalid { o kern/166851 fs [zfs] [hang] Copying directory from the mounted UFS di o java/166844 glewis openjdk7 can't open library when remote debug enabled o bin/166842 bsdgrep(1) inconsistently handles ^ in non-anchoring p o ports/166826 New port: misc/libphidget The driver for Phidgets devi o ports/166812 New port: mail/bounceHammer o kern/166806 Inability to reboot system o kern/166805 Winbond W83627DHG-P serial console hang o kern/166801 sysinstall bsdinstall(8): FreeBSD install is apparently not writi o kern/166780 [sysctl] [request] add sysctl for swap space used o docs/166755 bjk snd_envy24(4) should mention limitations p kern/166727 yongari [msk] msk driver keeps erroring f kern/166724 yongari [re] if_re watchdog timeout o ports/166696 bf New port: math/alberta o kern/166684 wireless [ath] [net80211] mgmtrate/mcastrate isn't updated base o bin/166682 some logfiles not respecting localtime change o bin/166673 sade(8) will not properly format 2TB disk (maybe other o bin/166664 [patch] patch devd(8) to note /sbin/devd parses backwa o ports/166645 kuriyama emulators/virtio-kmod: rxcsum breaks checksum for loca p kern/166642 wireless [ieee80211] [patch] in 802.11n mode for FreeBSD AP, ha o kern/166641 wireless [ieee80211] [patch] mbuf/cluster leak in AP mode in 80 o amd64/166639 amd64 [boot] Syscons issue Intel D2700 o kern/166626 [build] sio.c driver won't compile -- error in include o kern/166621 [cam] "CAM status: Unconditionally Re-queue Request" n f ports/166608 portmgr [patch] bsd.port.mk: fix unneccessary dependency on ar o bin/166589 atacontrol(8) incorrectly treats RAID10 and 0+1 the sa o bin/166570 ctags(1) failed to generate tags properly o kern/166568 [sched_ule] intr stuck in WAIT state o docs/166553 doc find(1): find -delete documentation is misleading o kern/166552 [ipmi] [build] ipmi module doesn't create ipmi device o kern/166549 [eventtimers] Clock stops ticking in some cases with n a kern/166548 eadler [build] [patch] Mismatch in ifdefs can cause problems o ports/166511 wen [PATCH] graphics/mapserver add cairo support s kern/166508 [glxsb] AES 256 encryption does not work with glxsb dr a kern/166501 andre [pf] FreeBSD 9.0 generates incorrect SEC/ACK numbers u o bin/166499 fsck(8) behaviour does not match doc (PARTIALLY TRUNCA o www/166496 www HP-UX manual pages are mangled o conf/166484 rc [rc] [patch] rc.initdiskless patch for different major o kern/166477 fs [nfs] NFS data corruption. o kern/166462 net [gre] gre(4) when using a tunnel source address from c a kern/166458 [libc] bind(2) incorrectly interprets SO_REUSEADDR opt o kern/166442 [build] nfsd error when not compiled into kernel o kern/166441 bktr.ko does not exist o kern/166406 ipfw [ipfw] ipfw does not set ALTQ identifier for ipv6 traf o ports/166381 portmgr [patch] bsd.port.mk: COPYTREE_* doesn't respect ${CHMO o kern/166372 cy [patch] [ipfilter] drops UDP packets with zero checksu o docs/166358 doc No networking in Jail build via: handbook/jail-tuning p kern/166357 wireless [ath] 802.11n TX stall when the first frame in the BAW o stand/166349 standards Support the assignment-allocation character for fscanf o kern/166337 messages about process crash are mixed together o kern/166336 pf [pf] kern.securelevel 3 +pf reload o conf/166330 doc [rc] [patch] Thin server configuration revision reques o bin/166321 devd(8) rule is not processed o kern/166286 wireless [net80211] [ath] initial switch to HT40 isn't causing o kern/166285 net [arp] FreeBSD v8.1 REL p8 arp: unknown hardware addres o kern/166262 [syscons] syscons issue on DN2800MT o misc/166259 [build] freebsd 9 release images not bootable in qemu o arm/166256 arm build fail in pmap.c o kern/166255 net [net] [patch] It should be possible to disable "promis o bin/166248 base sendmail dies of signal 11 on freebsd in a virtua o bin/166241 sysinstall [patch] Speedup and some improvements of sysinstall(8) o amd64/166229 amd64 [boot] Unable to install FreeBSD 9 on Acer Extensa 522 s conf/166194 syslogd: hostname nor servname provided, or not known: p kern/166190 wireless [ath] TX hangs and frames stuck in TX queue o ports/166188 portmgr [PATCH] ports/Makefile use documented sort syntax o bin/166181 [patch] calendar(1): calendar -a does not work o kern/166174 xen [xen] Problems ROOT MOUNT ERROR o ports/166163 x11 graphics/dri: gthumb port crashes (SIGSEGV) within the o bin/166159 [patch] Fix clang-only build for buildworld. o bin/166130 [patch] man(1): i can not read japanese manual on ja_J o kern/166086 wireless [Patch][ath] Reflect state of rfkill switch in a sysct o kern/166067 [arcmsr] Areca 1680 Problem When Upgrading from 8.2 to o bin/166056 [patch][bin] find(1) fails with .: permission denied, o ports/166006 Problem with postfix and mail/mailman integration o bin/165988 pathchk -p does not work correctly with some locales [ o kern/165984 [libpmc] pmc(3) causes kernel panic when sampling curr o kern/165982 scsi [mpt] mpt instability, drive resets, and losses on Fre o kern/165970 [libc] [patch] strtonum() optimization o kern/165969 wireless [ath] Slower performance in adhoc mode vs Client/AP mo o kern/165966 wireless [ath] ath0: device timeout on SMP machines due to race o kern/165963 cy [panic] [ipfilter] ipfilter/nat NULL pointer deference o ports/165957 glewis Enabling IPv6 in port java/jdk16 disables IPv4 o bin/165954 freebsd-update doesn't run pwd_mkdb after adding user o kern/165951 mips [ar913x] [ath] DDR flush isn't being done for the WMAC o kern/165950 fs [ffs] SU+J and fsck problem o kern/165939 ipfw [ipfw] bug: incomplete firewall rules loaded if tables o ports/165936 ashish net-im/ejabberd fails when starting odbc. o ports/165913 ak [patch] x11-wm/vtwm: update to 5.5.0-rc7 o i386/165906 i386 [panic] cannot install FreeBSD 9.0 on Dell PowerEdge 1 p kern/165903 net mbuf leak o kern/165895 wireless [ath] overly busy cabq can tie up all tx buffers o kern/165893 [kernel] [request] processor topology should be export o kern/165879 andre [tcp] Syncache syncache.count overflow o misc/165876 re [build] RFE: provide unique ISO9660 metadata for all r o kern/165870 wireless [bwn] bwn driver does not attach on HP Pavilion dv9420 o kern/165866 wireless [ath] TX hangs, requiring a "scan" to properly reset t o ports/165865 dhn New port: devel/pure-stllib: Deprecate pure-stldict & o amd64/165850 amd64 [build] 8.3-RC1 (amd64): world doesn't build with CPUT o kern/165849 wireless [ath] [hang] network ath driver freeze o amd64/165845 amd64 [build] Unable to build kernel on 8.2-STABLE o kern/165830 [mouse] In 9.0 RELEASE amd64 PS/2 mouse doesn't appear o ports/165818 glewis java/openjdk7: build failed:/usr/include/sys/stdint.h: o conf/165817 [periodic] [patch] /etc/periodic reports misconfigurat o usb/165815 usb [usbdevs] [patch] add k3772z 3g modem support o ports/165809 apache add mod_proxy patch to www/apache22 o bin/165783 hrs rtadvd(8) eats 100% cpu o kern/165782 jfv [igb] igb driver should identify hardware, not softwar o ports/165781 avilla [bsd.port.mk] [patch] update font ports management o bin/165780 pw(8) should have a hook for home directory creation o conf/165769 rc [rc][jai][ipv6] IPv6 Initialization on external iface f kern/165745 geom [geom] geom_multipath page fault on removed drive o kern/165740 scsi [cam] SCSI code must drain callbacks before free o ports/165720 [PATCH] www/suphp: [Add support for lighttpd] o kern/165710 [libc] [patch] RPC: getnetconfig() and other netconfig f ports/165707 edwin ports/dns/rbllookup-ng use accessor method for Net::DN o kern/165700 [libstand] [patch] pxeboot discards network mask assig o kern/165692 bz nd6_nud_hint() a NOP due to removal of route caching o ports/165685 xfce x11-wm/xfce4 - excessive replication of menu items f ports/165673 linimon [patch] sysutils/xfsprogs undefined ref to posix_fadvi o bin/165654 hiren [patch] make pmcannotate(8) work on amd64 f ports/165642 kde x11/kde4: keeps locking the screen. o ports/165635 chromium www/chromium: 17.0.963.56: proxy isn't read by chrome f ports/165634 chromium www/chromium : 17.0.963.56 doesn't show physical print p kern/165630 [ndis][panic][patch] IRQL_NOT_GREATER_THAN o ports/165623 portmgr Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} o kern/165622 net [ndis][panic][patch] Unregistered use of FPU in kernel o ports/165609 portmgr [exp-run] DISTNAME= PORTNAME-PORTVERSION is not needed o ports/165605 pgollucci [exp-run]: remove ports broken with < perl 5.12, clean o bin/165602 [request] pkg_add(1) - extend PACKAGESITE lookup to in o bin/165600 sysinstall sysinstall(8): 8.3 installation DVD asking for non exi o kern/165595 wireless [ipw] ipw(4): Can't load firmare for ipw2200bg f ports/165594 pgollucci [exp-run], then [repo-copy], then [NEW PORT] lang/perl o ports/165586 New port german/lx-office-erp, sql-ledger fork with ex f kern/165569 yongari [nfe] nfe0 freezs/hangs FreeBSD 9 system after lan cab o ports/165565 New port: www/mod_auth_token Token-based authenticatio s kern/165562 net [request] add support for Intel i350 in FreeBSD 7.4 o i386/165561 i386 [hang] K8N890M-M Boot Hang o kern/165559 [ufs] [patch] ufsmount.h uses the 'export' keyword as o docs/165551 doc ipfw(8): no info in "ipfw pipe show" about ipv6 o kern/165547 [ata] NVIDIA MCP67 AHCI SATA controller timeout f ports/165545 python [patch]: net-mgmt/collectd5 doesn't compile against la o kern/165543 wireless [ath] ath0 endless scanning of channels without connec o kern/165536 [netisr] netisr bad distribution between CPUs o kern/165527 [libc] [patch] setgroupent() does not make file descrp o kern/165526 net [bxe] UDP packets checksum calculation whithin if_bxe o kern/165521 fs [zfs] [hang] livelock on 1 Gig of RAM with zfs when 31 o kern/165517 wireless [net80211] bgscan isn't triggered when invalid beacons o bin/165516 Calendar for Austria for Ash Wednesday wrong by a week o ports/165502 portmgr [bsd.port.mk] Proposal patch for fixing TARGET_ARCH us o kern/165488 net [ppp] [panic] Fatal trap 12 jails and ppp , kernel wit o kern/165479 rstone [dtrace] [lor] LOR in Userland Dtrace(fasttrap_provs.f p bin/165477 hrs [rc] dhclient is run twice o kern/165475 wireless [ath] operational mode change doesn't poke the underly o bin/165471 bsdgrep(1) hang/very slow with mmap o kern/165463 FreeBSD doesn't work with NIC based on RLT8111E o i386/165452 i386 [boot] FreeBSD's system installer stops when setting u o ports/165450 portmgr [patch] Mk/bsd.port.mk: COPYTREE_* macro enhancements o i386/165434 i386 [boot] Install fail Error 19 o kern/165428 geom [glabel][patch] Add xfs support to glabel o ports/165422 ume security/cyrus-sasl2-saslauthd: saslauthd 2.1.25 cored o ports/165419 portmgr [patch] Mk/bsd.port.mk: "make showconfig" to tell whet o kern/165418 xen [xen] Problems mounting root filesystem from XENHVM f kern/165399 jfv [igb] turn off port on SWITCH do not change status of o kern/165392 fs Multiple mkdir/rmdir fails with errno 31 o kern/165382 wireless [kernel] taskqueue_unblock doesn't unblock currently q o kern/165381 acpi [cpufreq] powerd(8) eats CPUs for breakfast f ports/165366 kuriyama misc/amanda-server: amrecover showing duplicate direct o misc/165363 [build] 9-stable buildworld broken with NO_DYNAMICROOT o ports/165360 ashish net-im/ejabberd: ejabberdctl fails to communicate with o amd64/165351 amd64 [boot] Error while installing or booting the freeBSD O o kern/165318 CAM/USB: Western Digital Passport no longer "removable o kern/165315 pf [pf] States never cleared in PF with DEVICE_POLLING o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165305 net [ip6] [request] Feature parity between IP_TOS and IPV6 o kern/165303 [est] CPU freq changing not supported on VIA VE-900 (N o kern/165296 net [vlan] [patch] Fix EVL_APPLY_VLID, update EVL_APPLY_PR o kern/165284 shutdown failing since upgrade to 9 f ports/165263 gecko mail/thunderbird: core dumping most time when users ar o kern/165252 virtualization[vimage] [pf] [panic] kernel panics with VIMAGE and PF o docs/165249 doc Multibyte characters in manpages still not displaying o kern/165240 [lor] lock order reversal in vfs layer o ports/165238 portmgr [bsd.port.mk] [patch] Resize port config dialog box in o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o kern/165214 wireless [ieee80211] Kernel panic in ieee80211_output.c:2505 o ports/165213 kde devel/cmake: Reinplacement of paths in Modules is bad o kern/165212 wireless [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB6 o kern/165190 ipfw [ipfw] [lo] [patch] loopback interface is not marking o kern/165181 net [igb] igb freezes after about 2 weeks of uptime o misc/165175 [build] installworld built WITHOUT_LIB32 still install o kern/165174 net [patch] [tap] allow tap(4) to keep its address on clos o kern/165170 [panic] server reboot while pinging o usb/165163 usb [keyboard] The USB RF keyboard and mouse become non-re p stand/165155 jilles [PATCH][bin][standards] xargs does not print diagnosti o kern/165152 net [ip6] Does not work through the issue of ipv6 addresse o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o bin/165120 ed and sed - tmp file handling - security and location o kern/165087 fs [unionfs] lock violation in unionfs o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi f kern/165059 bryanv virtio-kmod: networking breaks with a router using vir o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c f bin/164982 gavin sysinstall(8) core dump o ports/164965 office editors/openoffice-3 fails to build in moz, nss, and c o docs/164958 brd mirror: anonymous SSH based access to anoncvs1.freebsd o kern/164957 Linux emulation freezes machine after heavy usage of c p kern/164951 adrian [ath] [patch] Problem build of if_ath driver with cert a bin/164950 nwhitehorn bsdinstall(8): pc-style partitions: no way to set 'boo o bin/164947 tee looses data when writing to non-blocking file desc o ports/164941 java [UPDATE] [NEW PORTS] java/classpath-initial, including o kern/164909 [cam] devfs does not create entries when removable med a ports/164896 portmgr [exp-run] add support for testing perl modules o kern/164861 Cannot boot from zfs built in degraded mode o ports/164855 rm [PATCH] textproc/py-chardet: adjust value of MASTER_SI o ports/164847 portmgr [bsd.port.mk] [patch] java/diablo-jdk16 does not build o kern/164844 [zfs] [mpt] Kernel Panic with ZFS and LSI Logic SAS/SA o bin/164834 cperciva freebsd-update(8) does not operate on mounted system o ports/164819 novel x11-wm/openbox package broken? o bin/164808 crontab(1) doesn't support usernames with spaces in th o docs/164803 doc Unclear manual page for mount_unionfs(8) a www/164799 gjb Outdated ports tree growth graph o stand/164793 'write' system call violates POSIX standard p stand/164787 standards dirfd() function not available when _POSIX_C_SOURCE is o amd64/164773 amd64 [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regress o kern/164763 Memory leak in VNET s bin/164752 sysinstall [request] bsdinstall(8): No option of ZFS in FreeBSD 9 o kern/164741 zvol always present as 512 bytes/sector regardless of f kern/164734 [quota] 9.0 quota not working [regression] o ports/164725 jhale graphics/opencv fails in Tinderbox p kern/164724 gnn [dtrace] [patch] Signal bug in Dtrace o kern/164721 wireless [ath] ath device timeouts o amd64/164707 amd64 FreeBSD 9 installer does not work with IBM uefi o ports/164695 kwm www/swfdec-plugin for firefox does not display the Fla o kern/164694 [ata] Regression in 3726 port multiplier support in 9. o kern/164674 standards [patch] [libc] vfprintf/vfwprintf return error (EOF) o o kern/164656 [headers] [patch] Add size_t declaration to ucontext.h o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o ports/164638 portmgr [bsd.port.mk] [patch] architecture and OS version depe o kern/164637 [libc] Problem with vsnprintf in libc.so when compiled o kern/164630 xen [xen] XEN HVM kernel: run_interrupt_driven_hooks: stil o docs/164620 doc Raid 1 issues o amd64/164619 amd64 when logged in as root the user and group applications o ports/164618 lx [patch] textproc/scim: building with clang failed o bin/164604 [patch] tftp(1): TFTP pxeboot: should use root-path pr o bin/164585 ping(8) should use clock_gettime instead of gettimeofd p kern/164569 yongari [msk] [hang] msk network driver cause freeze in FreeBS o kern/164565 [padlock] [panic] kernel crash when kldunload'ing padl o kern/164536 [modules] [request] disable building kernel modules th o bin/164535 [patch] ps(1) truncates command to screen size even wh o kern/164534 csjp [bpf] net.bpf.zerocopy_enable=1 makes pflogd eat cpu a o bin/164526 kill(1) can not kill process despite on -KILL o kern/164495 net [igb] connect double head igb to switch cause system t o kern/164490 net [pfil] Incorrect IP checksum on pfil pass from ip_outp o kern/164475 net [gre] gre misses RUNNING flag after a reboot o kern/164474 The system couldn't turn on a monitor connected via Di o kern/164472 fs [ufs] fsck -B panics on particular data inconsistency f kern/164462 rmacklem [nfs] NFSv4 mounting fails to mount; asks for stronger o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o ports/164453 danfe graphics/luxrender: libpng warning: Application built o kern/164450 xen [xen] Failed to install FreeeBSD 9.0-RELEASE from CD i s kern/164425 [libc] stat(2) doesn't work in 32bit mode on amd64 o ports/164423 portmgr [bsd.port.mk] [patch] Pass MAKE_ENV to recursive make o kern/164402 pf [pf] pf crashes with a particular set of rules when fi o bin/164399 sysinstall bsdinstall(8): 9.0 installer failures o misc/164396 bugmeister [GNATs] add 'enhancement' class o misc/164395 bugmeister [GNATs] add support for .patch attachments o misc/164394 bugmeister [GNATS] Change some fields to 'unset' to prevent misca o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o ports/164390 portmgr [bsd.port.mk] make package-recursive fails with noise o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/164370 fs [zfs] zfs destroy for snapshot fails on i386 and sparc o kern/164369 adrian [if_bridge] [patch] two STP bridges have the same id o kern/164365 wireless [iwi] iwi0: UP/DOWN in f ports/164362 linimon sysutils/pftop fails to compile f ports/164351 portmgr [bsd.port.mk] [patch] fix simple race condition in mak o bin/164348 ntpd(1): ntp.conf restrict default ignore option doesn o ports/164345 tabthorpe Mk/bsd.licenses.mk framework not suitable for linuxula o kern/164329 acpi [acpi] hw.acpi.thermal.tz0.temperature shows strange v o bin/164302 [patch] mail(1) expands aliases beyond # o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o ports/164293 rea print/cups-pstoraster failed o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o kern/164271 pf [pf] not working pf nat on FreeBSD 9.0 [regression] o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o kern/164265 net [netinet] [patch] tcp_lro_rx computes wrong checksum i o kern/164261 fs [nullfs] [patch] fix panic with NFS served from NULLFS o kern/164256 fs [zfs] device entry for volume is not created after zfs o kern/164254 geom [geom] gjournal not stopping on GPT partitions o kern/164252 geom [geom] gjournal overflow o ports/164242 bjk net/openafs port breaks with KERNCONFDIR and include o ports/164239 gecko [PATCH] mail/thunderbird: crash with nss_ldap o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 s sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o power/164225 ppc Boot fails on IBM 7028-6E1 (heap memory claim failed) o kern/164220 sound preferences does not allow continuous adjustment f bin/164210 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at us f bin/164209 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at us o kern/164208 dteske [build] [patch] buildworld WITHOUT_OPENSSL stops at li o kern/164206 kientzle [build] [patch] buildworld WITHOUT_OPENSSL stops at li o kern/164203 [smp] usr/src/sys/sys/smp.h:124: warning: comparison b o ports/164197 smsd(comms/smstools3) doesn't read some configurations o ports/164190 mm [PATCH] devel/liboil: Fix build with clang o kern/164189 [pccard] FreeBSD 9.0-RELEASE on Toshiba Satellite Pro o kern/164184 fs [ufs] [panic] Kernel panic with ufs_makeinode o kern/164145 [netisr] when one of netisr threads take 100% system i o kern/164143 geom [geom] Partition table not recognized after upgrade R8 o bin/164137 tunefs(8): issues inappropriate error-message o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o kern/164132 [xpt] "xptioctl: pass device not in the kernel" noise o bin/164131 cperciva freebsd-update(8) does not check for failed install co o kern/164130 rwatson [netisr] broken netisr initialization o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o ports/164115 sem net-mgmt/cacti - cacti.sql does have old fashioned TYP o bin/164102 wireless hostapd not configured for 802.11n o docs/164099 doc gparm(8): man page for gparm set is incorrect and inco o bin/164097 sysinstall bsdinstall(8): always installs GPT f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o kern/164082 recurring problem wirh /dev/console and syslog handlin p bin/164081 jilles sockstat(1) not reporting all open sockets o amd64/164073 amd64 /etc/rc warning after booting o usb/164058 usb [umass] Lexar 8GB USB flash drive doesn't work by defa o stand/164049 [patch] getconf(1) returns bad value for ULLONG_MAX o conf/164048 /etc/rc.d/hostid is not symlink aware o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o docs/164034 doc acl(9) documentation lacking o ports/164017 bf [NEW PORT] math/plasma: Parallel Linear Algebra Softwa o ports/164010 timur [patch] net/samba36: Split up samba scripts into more o kern/163986 [modules] [patch] avoid reloading modules in devd for o kern/163985 [boot0] Incorrect operand size in boot0 f kern/163978 [hwpmc] [patch] Loading hwpmc with an unknown cpuid ca o kern/163973 [ichwd] ichwd(4) no longer appears to function a ports/163963 portmgr Mk/bsd.port.mk, math/spooles-mpich, science/mpqc-mpich o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o kern/163926 [libkvm] libkvm.so.5 exports private symbols o ports/163909 bf [MAINTAINER-UPDATE][PATCH] please update math/lapacke o ports/163908 fluffy [patch] filesystem based race condition in multimedia/ o kern/163905 [panic] FreeBSD 9x kernel panic without acpi && event o kern/163903 net [igb] "igb0:tx(0)","bpf interface lock" v2.2.5 9-STABL f kern/163890 gavin ps2 keyboard not detected by kernel? [regression] o docs/163879 doc [handbook] handbook does not say about how to force to o ports/163850 New port: cad/linux-bricscad o bin/163837 cperciva freebsd-update(8): i386 lastest.ssl freebsd-update fil o docs/163830 doc device smbios: missing documentation, no manpage o bin/163822 kgdb(1): kgdb -w opens symbols file, not just core, wr o kern/163815 [ahci] [zfs] HDD timeout on ZFS + SB7x0 SATA Controlle o kern/163803 vlan does not work o kern/163801 fs [md] [request] allow mfsBSD legacy installed in 'swap' o ports/163799 delphij net/openldap24-server: slapd not started earlier o conf/163798 [nsswitch.conf] nsswitch.conf with nss_ldap ignore [su o conf/163778 imp [patch] Conditionalize tools in the source tree o bin/163775 [patch] sfxge(4) explitly sets -g -DDEBUG=1; infects k o kern/163770 fs [zfs] [hang] LOR between zfs&syncer + vnlru leading to o bin/163769 [patch] fix zpool(8) compile time warnings o misc/163768 [patch] [boot] fix non-ficl compile time warnings o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode a ports/163749 joerg devel/avrdude fails to reset RTS/DTR properly for Ardu o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/163719 wireless [ath] ath interface do not receive multicast o amd64/163710 amd64 setjump in userboot.so causes stack corruption o kern/163701 ifconfig: group parameter makes impossible to restart o bin/163700 logger(1): broken logic when -f option && long lines i o conf/163690 FreeBSD 10.0-CURRENT/amd64: Set WITH_BIND_LIBS=YES doe o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o bin/163680 vmstat(8): negative values in vmstat -z p kern/163670 mips [mips][arge] arge can't allocate ring buffer on multip f ports/163636 mi net/opal fails to build o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC o kern/163618 panic: vm_fault: fault on nofault entry, addr: c278100 o kern/163608 [lor] Two seemingly vfs-related LORs o bin/163602 pmcstat(8) doesn't search symbols under /boot/modules o kern/163587 [sched_ule] The ULE scheduler does not load in the fou o kern/163585 cpuset(1) by twice kill SMP functionality o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o conf/163572 [periodic] not full output in daily run output is ambi o misc/163571 The system may hang after typing reboot o amd64/163568 amd64 hard drive naming o bin/163567 make(1): add option to disable object directory o kern/163559 wireless [ath] kernel panic AH_DEBUG o bin/163547 vmstat(8): vmstat -i show AVG rate instead of rate o bin/163515 [patch] b64encode(1)/uuencode(1) create files with no o ports/163514 itetcu [PATCH] ports-mgmt/tinderbox-devel: Report the proper o threa/163512 threads libc defaults to single threaded o ports/163511 portmgr [PATCH] bsd.port.mk: Allow existing users on system to o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o kern/163501 fs [nfs] NFS exporting a dir and a subdir in that dir to o kern/163493 FreeBSD 9x amd64 unstable while work with RAM o ports/163489 timur databases/tdb hangs frequently on larger CPU systems o conf/163488 rc Confusing explanation in defaults/rc.conf a bin/163487 markj syslog.conf filtering syntax broken in 9.0-RC3 (was wo o kern/163481 net freebsd do not add itself to ping route packet o bin/163470 bad cksum in tcpdump(1) output o conf/163469 FreeBSD 10.0-CURRENT/CLANG: WITH_LIBCPLUSPLUS= YE o ports/163467 python lang/python27: Ports using python 2.7 and "waf" interm o kern/163464 Invalid compiler flag in /sys/conf/kern.mk o kern/163461 [vfs] vfs.zfs.arc_max/vfs.zfs.arc_meta_limit defaults o bin/163455 [ath] "bssid" in wlanN create_args does not change wla o kern/163410 panic (page fault) when using mfsroot on i386 with 4 G o kern/163370 csjp [bpf] [request] enable zero-copy BPF by default o ports/163339 sunpoet ftp/pure-ftpd: rc script not supports pure-authd f usb/163328 usb [usb] Support for Atheros USB abgn devices a ports/163323 perl x11/rxvt-unicode fails to build with perl-5.12.4_3 and o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o kern/163318 wireless [ath] ath(4) stops working p kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163310 Panics, sudden reboots and file system corrupts with s o misc/163304 complete LLVM toolset in the source tree made availabl o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly p kern/163268 jhb [acpi_hp] [patch] fix driver detach in absence of CMI o misc/163263 grog crash on VirtualBox when ACPI is enabled o kern/163245 marcel kernel panic if set /boot/loader.conf vfs.root.mountfr o kern/163240 marius Power down PHY when "none" media is selected o kern/163237 wireless [ath] AR5416 as HostAP. Delays among clients when a cl o ports/163226 obrien [patch] vietnamese/libviet: respect CC/CFLAGS a bin/163219 [patch] man: fix 'zcat: standard input is a terminal - o kern/163208 pf [pf] PF state key linking mismatch o conf/163168 JIS X0208 space should be treated as printable in ja_J o kern/163164 FreeBSD 9.0-RC3 amd64 freezes on boot o kern/163154 [iwn] fatal firmware error on 9.0-RC3 o docs/163149 doc [patch] Red Hat Linux/i386 9 HTML format sudo man page o ports/163142 vbox emulators/virtualbox-ose: virtualbox doesn't work on n o bin/163127 brooks sshd(1): SSHD_config Bad configuration option: NoneEna o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o kern/163117 sporadic boot-time panics on 9.0-RC2 and 9.0-RC3 w/ ce o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 p bin/163095 bz Add WITH_OPENSSH_NONE_CIPHER src.conf(5) knob o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o kern/163091 usb [panic] Fatal trap 12: page fault while in kernel mode o kern/163082 wireless [ath] ar9285 diversity fixes o kern/163065 UDF support for symbolic links with absolute path is b o bin/163062 csplit(1) includes extra lines in inner context o misc/163051 Small disk sizes with 4k sectors have far too few inod o amd64/163048 amd64 normal user cant mount ntfs-3g s kern/163033 [request] 'out of swap space' message should be ammend o ports/163022 sunpoet New port: databases/p5-bucardo Asynchronous PostgreSQL a kern/163020 geom [geli] [patch] enable the Camellia-XTS on GEOM ELI o ports/163015 bf [restore port] new port math/it++ (restore port from A o ports/162991 java java/openjdk6 fails to build f ports/162990 mi net/minidlna - requires elevated privileges o kern/162976 [libc] cron fails unnecessarily via setlogin(2) with s o kern/162952 [headers] Problems including netinet/tcp_var.h o ports/162948 bapt [exp-run] 10.0 exp-run without libreadline in base sys o kern/162944 fs [coda] Coda file system module looks broken in 9.0 o kern/162943 uClibc explicit runtime loader segfaults under FreeBSD o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o kern/162927 net [tun] Modem-PPP error ppp[1538]: tun0: Phase: Clearing o kern/162926 cy [ipfilter] Infinite loop in ipfilter with fragmented I o ports/162924 portmgr [bsd.port.mk] [patch] report more information at port/ o bin/162905 -E flag in newfs(8) has no effect o conf/162884 FreeBSD's termcap ships monochrome rxvt-unicode entry o kern/162867 better zfs_cv_init o misc/162866 [build] [patch] extract revision from hg in newvers.sh o kern/162860 fs [zfs] Cannot share ZFS filesystem to hosts with a hyph o kern/162859 acpi [acpi] ACPI battery/acline monitoring partialy working o bin/162798 add p flag to newsyslog.conf o conf/162794 I experience problem with my network ethernet adapter p kern/162789 glebius [PATCH] if_clone may create multiple interfaces with t o ports/162780 office editors/libreoffice without GUI o docs/162775 mm zpool(1): Document some undocumented zpool import opti o docs/162765 doc [patch] lseek(2) may return successful although no see o kern/162751 fs [zfs] [panic] kernel panics during file operations o kern/162736 r214955 (nanobsd) broke build with whitespace in KERNC o misc/162724 make whereobj doesn't work after make buildenv o ports/162721 portmgr [PATCH] bsd.port.mk: config target should complain if o bin/162715 pam_krb5(8): pam_krb5 not storing tickets in /tmp o ports/162706 maho math/suitesparse port does not properly detect or link o kern/162690 geom [geom] gpart label changes only take effect after a re o bin/162681 portmgr pkg_add(1): new installer does not add doc packages o kern/162677 xen [xen] FreeBSD not compatible with "Current Stable Xen" o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o bin/162645 zfs(1): Option parse failure for 'aclmode' when creati o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s o kern/162620 [ata] SATA device lost when changing brightness on Len o kern/162609 [ata] Cannot write to Sony DRU-835A DVD drive o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o kern/162591 fs [nullfs] cross-filesystem nullfs does not work as expe f bin/162588 dim libz partially broken when compiled with clang [was: n o docs/162587 doc unclear/incomplete description of per-interface statis o kern/162558 net [dummynet] [panic] seldom dummynet panics o kern/162524 No full shutdown in FreeBSD 9.0-RC1 o java/162522 java OpenJDK 6 is not setting close on exec o kern/162519 fs [zfs] "zpool import" relies on buggy realpath() behavi o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i f kern/162509 yongari [re] [panic] Kernel panic may be related to if_re.c (r o bin/162503 makefs(8) creates a bad image for UFS2 o kern/162502 [md] mount -t mfs on vnode-based md device destroy him o ports/162500 maho math/suitesparse: gmake[2]: *** run: Segmentation faul o bin/162495 dc(1): dc -e "5 3 %p 1k 5 3 %p" o amd64/162489 amd64 After some time X blanks the screen and does not respo p kern/162475 bschmidt [ath] functions with return type HAL_BOOL (might) retu f ports/162463 edwin lang/perl5.12: perldoc shows escape codes o misc/162455 FreeBSD 9x unstable with file-based swap o stand/162434 standards getaddrinfo: addrinfo.ai_family is an address family, o docs/162433 gavin [handbook] QEMU instructions for FreeBSD guests s www/162430 bugmeister gnats pr-submission mechanism suxx o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o docs/162419 doc [request] please document (new) zfs and zpool cmdline o docs/162404 doc [handbook] IPv6 link-local address compared with IPv4 p threa/162403 davidxu regression in FreeBSD/9 regarding pthread timeouts in o kern/162396 [libc] [patch] remove loop in globpexp1()@lib/libc/gen o kern/162382 [swap] Orphaned swap references not garbage collected; o ports/162381 sunpoet [PATCH] audio/icecast2 upgrade to kh development branc o kern/162373 VESA framebuffer memory mapping fails with EINVAL for o kern/162369 kernel problem at shutdown is system has no keydoard o kern/162367 SATA 3.0Gb/s not enabled on Nvidia nForce 430 o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o docs/162354 gjb Improve wording in rc.conf(5) regarding network-interf o kern/162347 stas [kernel] [patch] remove the extra variable in /sys/lib o kern/162342 FreeBSD hides gpt labels after mounting ZFS partitions o misc/162338 POLA: mkisoimages.sh does not support extra-bits-dir p o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o ports/162313 acm print/foo2zjs: example devd rules f usb/162306 usb usb devices cant get address asignation, no memories, o kern/162294 Reading DMI memory parts using mmap freeze the system o kern/162277 Repeatable system crash when offlining a zpool vdev o kern/162267 qingli [mpd] mpd kernel panic o bin/162258 sysinstall sysinstall(8): long-time bugs f kern/162256 scsi [mpt] QUEUE FULL EVENT and 'mpt_cam_event: 0x0' o kern/162250 problems with the work with hard drives Hitachi HDS721 o kern/162228 Panic in ufsdirhash_build() o bin/162211 Calendar no longer handles first/last day events in 8. o ports/162207 danfe audio/cdparanoia: crash while building the port. o kern/162201 zec [ip] [patch] multicast forwarding cache hash always al o kern/162195 panic with soft updates journaling during umount -f o bin/162189 kientzle FreeBSD unzip does not restore file permissions proper o kern/162182 Extreme slowness from HighPoint RocketRaid 622 o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s s ports/162178 portmgr [bsd.port.mk] Add bsd.clang.mk with Clang/LLVM support o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o kern/162160 9-RC1 over IPMI Virtual CD causes unexpected behaviur o arm/162159 arm [panic] USB errors leading to panic on DockStar 9.0-RC o kern/162153 net [em] intel em driver 7.2.4 don't compile o kern/162110 net [igb] [panic] RELENG_9 panics on boot in IGB driver - o usb/162054 usb usbdump just hangs on 9.0-RC1 f amd64/162043 gavin dev.cpu.0.freq is missing [regression] o ports/162042 bapt [patch] multimedia/libass: add HARFBUZZ option o kern/162036 [geom] Fatal trap 12: page fault while in kernel mode o kern/162028 net [ixgbe] [patch] misplaced #endif in ixgbe.c o kern/162010 geom [geli] panic: Provider's error should be set (error=0) o kern/162009 [patch] [kerberos] getpwnam_r buf too small nfs assign o bin/161986 [patch] netstat(1): Interface auto-width in "netstat - o ports/161984 autotools [patch] devel/libtool: don't split INFO doc (install) o kern/161979 geom [geom] glabel doesn't update after newfs, and glabel s s ports/161976 zi net-mgmt/net-snmp: ifSpeed for lagg interface is not a o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/161968 fs [zfs] [hang] renaming snapshot with -r including a zvo o kern/161949 [kernel] 64-bit structures are used even with 32-bit c o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o ports/161938 rm New port www/pyLoad a fast, lightweight and full featu o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o misc/161915 pjd pjdtests don't articulate requirements very well p kern/161912 jh [kernel] [patch] kernel sends incorrect notify to devc o kern/161908 melifaro [netgraph] [patch] ng_vlan update for QinQ support o kern/161901 smh [cam] [patch] cam / ata timeout limited to 2147 due to p kern/161897 ae [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161888 [kerberos] nfs -sec=krb5x/ldap/krb5-heimdal fix/upgrad o kern/161887 [vm] [panic] panic at vm_page_wire with FreeBSD 9.0 Be o kern/161886 [kerberos] [patch] der_xx_oid not declared before use o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o bin/161807 geom [patch] add option for explicitly specifying metadata o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod f usb/161793 usb poor EHCI usb2 i/o performance o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o kern/161768 [ahci] [panic] Panics after AHCI timeouts o ports/161765 mm net/relayd: relayd fails to initialize on systems with o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico p bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks o kern/161755 Kernel fails to report negative malloc type statistics o docs/161754 doc p4tcc(4), est(4) and qpi(4) are not documented o kern/161752 geom [geom] glabel(8) doesn't get gpt label change o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o bin/161677 geom gpart(8) Probably bug in gptboot o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o bin/161540 cperciva gzippped kernel is not updated by freebsd-update(8) o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o bin/161528 tftpd(8): tftpd[86572]: Timeout #3 on ACK 2 o bin/161526 script(1) outputs corrupt if input is not from a termi o bin/161515 systat(8) does not show Disk MB/s for md devices o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o bin/161475 [patch] man(1), treat pipe & files w/o slash o kern/161456 [libpam] on a system bound to an LDAP server, top trie o bin/161439 umount(8): umount -a -t doesn't work with nested o kern/161438 fs [zfs] [panic] recursed on non-recursive spa_namespace_ o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161390 wen [maintainer] chinese/cxterm broken because does not co o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o kern/161318 xen [xen] sysinstall crashes with floating point exception o kern/161293 wireless [iwn] hang at startup when starting network o kern/161280 fs [zfs] Stack overflow in gptzfsboot f ports/161278 anders net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC s kern/161251 [request] Port otus driver from OpenBSD. o kern/161248 [ahci] Time out, extremly slow response while copying o kern/161233 [build] update RELENG_8 make buildworld error gcc. o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o ports/161197 kuriyama cannot portupgrade ports/textproc/jade with CLANG o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty p ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 o arm/161110 arm /usr/src/sys/arm/include/signal.h is bad o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o kern/161097 [sched_ule] Unkillable process hanging waiting for "ex o kern/161094 virtualization[vimage] [pf] [panic] kernel panic with pf + VIMAGE wh o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o power/161045 ppc X doesn't detect ADB mouse up event until another even o arm/161044 arm devel/icu does not build on arm a kern/161043 jhb [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o bin/161028 [PATCH] service(8) -- Minor improvements f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during o kern/160994 buf_ring(9): MD assumption in MI code o kern/160992 buf_ring(9) statistics accounting not MPSAFE o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o misc/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE f kern/160860 fs [ufs] Random UFS root filesystem corruption with SU+J o ports/160856 jhale graphics/opencv-core: CLANG build fails o kern/160838 acpi [acpi] ACPI Battery Monitor Non-Functional o bin/160834 [patch] grep(1): fixes for POSIX conformance o kern/160833 amd64 Keyboard USB doesn't work o ports/160829 timur devel/talloc hangs during configure on FreeBSD 9.0-BET o bin/160803 wpa_cli(8): (malloc) /usr/src/lib/libc/stdlib/malloc.c o kern/160802 [install] USB installation image fails to boot if BIOS o kern/160801 fs [zfs] zfsboot on 8.2-RELEASE fails to boot from root-o o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE o kern/160786 [ahci] [ata] Drive not detected when using AHCI on Mar o kern/160777 fs [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/impo o kern/160760 (Kernel) Log messages garbled/interleaved o kern/160750 net Intel PRO/1000 connection breaks under load until rebo o bin/160745 sed(1) appends '\n' at the end of binary data (unlike o threa/160708 threads possible security problem with RLIMIT_VMEM o kern/160706 fs [zfs] zfs bootloader fails when a non-root vdev exists o ports/160695 rafan devel/ncurses libncurses.a doesn't contain libtinfo.a o kern/160693 net [gif] [em] Multicast packet are not passed from GIF0 t f kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o kern/160652 siba_bwn in GENERIC o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 o kern/160611 lzjb_uncompress possible access violation? o kern/160591 fs [zfs] Fail to boot on zfs root with degraded raidz2 [r o bin/160586 newsyslog(8) can't properly rotate log files when ther o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o misc/160517 X pseudo-terminals are not registered in utmp and wtmp o kern/160496 virtualization[vimage] [pf] [patch] kernel panic with pf + VIMAGE o docs/160460 doc [handbook] Network setup guide suggestion o docs/160446 doc [handbook] Handbook sound setup seems outdated o misc/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 melifaro [patch] syslogd(8) receiver buffer sizes set incorrect p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa o bin/160412 wrong value in systat(1) o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o docs/160399 doc Man page for re(4) missing jumbo frames info o kern/160392 [panic] double fault on configuring for php5-filter-5. o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o ports/160387 gecko security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o kern/160370 pf [pf] Incorrect pfctl check of pf.conf o bin/160320 netstat(1): netstat -f inet6 does not output properly o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160299 usb MicroSDHC-to-USB adapters do not work in FreeBSD 8.x o bin/160298 sysinstall(8) does not allocate enough space in / for o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o bin/160295 hrs [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160293 net [ieee80211] ppanic] kernel panic during network setup o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) o bin/160275 rstone [patch] dtrace(1): dtrace -lv causes "unknown function f ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o usb/160192 usb [install] Installation from USB-Stick doesn't find the o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o misc/160011 [boot] Installer Disk will not boot o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159943 delphij openldap slapd ignores rc.conf slapd_krt5_ktname f ports/159938 lx graphics/shotwell received an X Window System error. o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 o kern/159918 jail [jail] inter-jail communication failure f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159912 [new driver] [request] Port urtwn from OpenBSD to Free o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o ports/159839 wen graphics/mapserver: bump Python version o ports/159838 wen graphics/mapserver: PDF output doesn't work o misc/159837 bugmeister Ports PR autoassigner does not understand long lines o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali f ports/159807 hrs RC file for net/mrouted causes kernel panic by running o kern/159795 andre [tcp] excessive duplicate ACKs and TCP session freezes a ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 a bin/159665 [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o kern/159629 net [ipsec] [panic] kernel panic with IPsec in transport m o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o kern/159621 net [tcp] [panic] panic: soabort: so_count p kern/159612 gnn [dtrace] [patch] walltimestamp and timestamp functions o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re f kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/159511 [ata] ad0 disappear after upgrading to 8.2-STABLE, roo f kern/159414 geom [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/159402 fs [zfs][loader] symlinks cause I/O errors a ports/159398 delphij security/openssl: openssl slapd tls init def ctx faile o misc/159395 [boot] Incorrect implementation of strncmp in boot cod s ports/159378 lwhsu [NEW PORT] lang/php-plua: PLua is a PHP extension whic o bin/159377 [request] system vi(1)/nvi(1) does not display wide ch o kern/159357 fs [zfs] ZFS MAXNAMELEN macro has confusing name (off-by- o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o misc/159344 Installing FreeBSD causes computer not to boot o kern/159326 [ata] [panic] kernel panics when accessing spindowned o docs/159307 doc [patch] lpd smm chapter unconditionally installed o bin/159305 [request] make syslogd(8) bind to multiple specific IP o kern/159294 net [em] em watchdog timeouts o www/159291 www Error 404 - when I try to send-pr over freebsd.org/es/ o usb/159274 usb USB 3.0 Etron EJ168A does not work. o kern/159251 fs [zfs] [request]: add FLETCHER4 as DEDUP hash option o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/159226 [libedit] [patch] libedit does not always restore its o kern/159222 [boot0] unusual behavior writing boot0 from single use o kern/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS f usb/159191 usb [fusefs-ntfs] write on fusefs-ntfs mounted partition r o kern/159179 [libc] close(2) emitting ECONNRESET is not POSIX compl o bin/159178 rmuser(8): cannot work from stdin and generates wrong o kern/159103 ping local address on box shows source address 0.0.0.0 o ports/159102 gnn sysutils/fusefs-kmod: fusefs daemonizes before mount i o kern/159099 [ioctl] ioctl SIOCGIFCONF reports interface names whic o misc/159095 when /var is full can not connect to server through ss o ports/159087 perl lang/perl5.14: perl package conflicts with JSON::PP an o kern/159077 fs [zfs] Can't cd .. with latest zfs version o kern/159063 [psm] ALPS touchpad recognized as PS mouse (no scrl, n o kern/159048 fs [smbfs] smb mount corrupts large files p kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159045 fs [zfs] [hang] ZFS scrub freezes system f kern/159013 gnn [dtrace] kldunload dtraceall crashing if userland dtra o ports/158983 [NEW PORT] devel/pecl-dtrace: PHP DTrace provider o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi o arm/158950 arm arm/sheevaplug fails fsx when mmap operations are enab o bin/158942 Interactive wpa_cli(8) does not terminate after "quit" o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o kern/158802 fs amd(8) ICMP storm and unkillable process. o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 Update security/openvas-* o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK o conf/158734 netif stop don't destroy cloned_interfaces o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne o kern/158665 net [ip6] [panic] kernel pagefault in in6_setscope() o i386/158653 i386 installing PC-BSD 9 Current with legacy USB Keyboard d f ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver p bin/158580 edwin [patch] Disable ncal(1)s date highlighting if stdout i f kern/158569 gavin [ahci] ROOT MOUNT ERROR (caused by AHCI module) o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158551 [patch] Enhance periodic 800.scrub-zfs script to handl o ia64/158547 ia64 [ia64] Epilog counter (ar.ec) needs to be saved and re o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o bin/158500 [patch] Add -p to arp(8) to hide permanent entries o kern/158432 [panic] gssd(8) generate much network traffic and led o kern/158418 [includes] /usr/include librarys broken by unnecessary p kern/158398 geom [headers] [patch] includes f kern/158391 gavin [pci] Resource allocation issues with hda/ath o docs/158388 doc Incorrect documentation of LOCAL_SCRIPT in release(7) o docs/158387 doc The tree(3) man should mention the RB_FOREACH_SAFE() A o docs/158378 kientzle cpio/bsdcpio(1) man page does not document -0 and --nu o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o kern/158351 [cam] [patch] missing #includes in o kern/158340 [rpc] Possible dereference of null pointer by code tha p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null p kern/158307 hrs [ip6] ipv6_pktinfo breaks IPV6_USE_MIN_MTU o bin/158296 portmgr pkg_add(1) does not search entire PKG_PATH for depende o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 f i386/158264 gavin Intel Motherboard S5500BCR shut down and power on afte o kern/158231 fs [nullfs] panic on unmounting nullfs mounted over ufs o o kern/158230 libdisk(3) segfault in Open_Disk() with "ada0" f kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o i386/158200 i386 wifi doesn't work on Acer AO751h, maybe WMI needs to b o kern/158197 geom [geom] geom_cache with size>1000 leads to panics f ports/158192 sunpoet devel/nant: NAnt 0.90 fails to build from ports o kern/158185 bz [ip6] IPv6 does not manage the NIC's route when doing o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158098 pjd [hast] problem with copying data on hast-device o kern/158086 [digi] [patch] Update digi(4) to work with TTYng o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157946 [patch] 'BSM conversion requested for unknown event' g f kern/157932 gavin [cas] loading CAS4 at boot hangs system f kern/157929 fs [nfs] NFS slow read o docs/157908 doc [handbook] Description of post-install should include o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] [regression] ABI change without version bump f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o kern/157869 easy to create zvols that cannot be forgotten o kern/157863 geom [geli] kbdmux prevents geli passwords from being enter f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157764 jfbterm + mplayer = hang o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o bin/157748 calendar(1): Patch for src/usr.bin/calendar/calendars/ o kern/157739 geom [geom] GPT labels with geom_multipath o kern/157724 geom [geom] gpart(8) 'add' command must preserve gap for sc o kern/157723 geom [geom] GEOM should not process 'c' (raw) partitions fo p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o bin/157700 tftpd(8) in 8.2-RELEASE expects more data after EOF o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o ports/157544 gblach Updates for databases/linux-oracle-instantclient-* o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE o bin/157500 posible chsh(1) bug on systems using nss_ldap/pam_ldap o bin/157499 fetch(1) confused me with its error message o conf/157466 osa [patch] add src to create /usr/share/calendar/calendar o kern/157449 wireless [ath] MAC address conflict causes system to freeze f kern/157429 yongari [re] Realtek RTL8169 doesn't work with re(4) o bin/157424 inconsistent output from ldd(1) o kern/157418 net [em] em driver lockup during boot on Supermicro X9SCM- o kern/157410 net [ip6] IPv6 Router Advertisements Cause Excessive CPU U o kern/157399 fs [zfs] trouble with: mdconfig force delete && zfs strip o kern/157397 [ada] ahci/ada/cam NCQ timeouts on Samsung and non-dis f ports/157392 marius sysutils/cdrtools can't burn DVDs correctly o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o usb/157376 usb LaCie USB disk not recognized o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157316 doc [patch] update devstat(9) man page o bin/157308 getextattr(8) incorrect listing of attibutes with glob o bin/157289 repquota(8) does not mark overquota users with a "+" s o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f s ports/157261 itetcu net-im/skype: Cannot Visit account page o bin/157244 dump(1): dump/restore: unknown tape header type -2307 o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o docs/157234 [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o conf/157189 sysinstall bsdinstall(8): Default /etc/sysctl.conf should be remo o kern/157182 net [lagg] lagg interface not working together with epair o kern/157179 fs [zfs] zfs/dbuf.c: panic: solaris assert: arc_buf_remov o bin/157177 primes(1) prints non-prime for numbers > 2^32 o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157118 [igb] cleanup error in igb driver - igb_setup_receive_ o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o usb/157074 usb [boot] [usb8] vfs_mountroot_ask is called when no usb o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o conf/156945 [nsswitch.conf] Name service Switch does not work as d o docs/156920 doc isspecial(3) is not helpful o bin/156908 dumpfs(8) incorrectly displays ufsid o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces o ia64/156900 ia64 ia64 -current r221488 panic if kern.maxssiz=536748033 o usb/156898 usb [keyboard] usb keyboard does not work while boot (ps2 o kern/156884 wireless [ath] ath instablity o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o ports/156834 New port: games/fairymax-devel latest version of games o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 hrs OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP f kern/156799 gavin HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 melifaro [ipfw] [dummynet] [patch]: performance improvement and o bin/156768 [patch] sockstat(1): missing spaces between long field o misc/156767 joerg Installation Media do not include current list of mirr o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX o kern/156749 [vmware] FreeBSD 8.2 does infinite disk access in VMwa p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr f usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o usb/156726 usb [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss o kern/156716 [hang] System freeze during reboot o gnu/156704 Improper behaviour of GNU grep(1) o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o docs/156689 doc stf(4) output-only documentation gives bad configurati o kern/156684 [libc] getaddrinfo(3) returns improper error o kern/156667 net [em] em0 fails to init on CURRENT after March 17 o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/156637 [headers] [patch] sys/types.h can't be included when _ o usb/156596 usb [ehci] Extremely high interrupt rate on ehci/uhci IRQ1 o kern/156584 bz [jail] ipv4 packet is not forward to v4-mapped binding o kern/156556 kan [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o ports/156492 perl Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time p kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156463 [panic] kernel panic at pcpu.h:224 o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e s ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 hiren [kernel] [patch] misleading "maxproc limit exceeded by o kern/156328 net [icmp]: host can ping other subnet but no have IP from o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156286 snb sysutils/apt port tries to pull from incorrect URL o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o kern/156279 net [if_bridge][divert][ipfw] unable to correctly re-injec o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile f kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o i386/156229 i386 [hang] Server IBM x3400 is hangs with option SMP in Ke o kern/156226 net [lagg]: failover does not announce the failover to swi o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156193 fs [ufs] [hang] UFS snapshot hangs && deadlocks processes f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/156111 jail [jail] procstat -b not supported in jail o amd64/156106 amd64 [boot] boot0 fails to start o gnu/156082 gcc(1) makes incorrect code when swapping array elemen o docs/156081 doc troff falls with troff.core with UTF-8 man with incorr o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/156030 net [ip6] [panic] Crash in nd6_dad_start() due to null ptr o kern/156016 [ncurses] Arrow keys don't work with any ncurses based o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke f usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr o bin/155985 tcpd(8) does not perform a access-control o docs/155982 doc [handbook] reaper of the dead: remove reference to flo o kern/155964 [hang] OS hangs completely when suspend\resume with ac f ports/155949 gecko www/firefox: firefox 4, WITH_PGO, better Text against f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o bin/155886 bc(1) sometimes mangles hexidecimal numbers p bin/155873 edwin calendar(1) recurring date not working o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o usb/155784 usb Problem with Transcend StoreJet 25M3 (2AJ1) on Asus M2 o bin/155778 awk(1) doesn't set error exit status on errors p kern/155772 melifaro ifconfig(8): ioctl (SIOCAIFADDR): File exists on direc o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o bin/155757 problems with setfib(1) behavior o kern/155752 [uart] tcdrain(3) does not work with uart(4) driver o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o i386/155695 i386 AMD Vision ultimate notebook HP Pavilion DV6 3109ER ov o kern/155680 net [multicast] problems with multicast o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [new driver] [request] Add driver for Realtek RTL8191S o kern/155628 [ahci] ahci disables dvd device o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155597 net [panic] Kernel panics with "sbdrop" message o ports/155593 crees audio/musicpd .16.1 ignores embedded cue sheets in FLA o kern/155587 fs [zfs] [panic] kernel panic with zfs o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o conf/155480 [login.conf] maxproc does not work when command runnin o kern/155468 xen [xen] Xen PV i386 multi-kernel CPU system is not worki o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155420 net [vlan] adding vlan break existent vlan p kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No o bin/155374 [patch] grdc(6) timing loop still broken f kern/155370 wxs [libpcap] [patch] description string is broken o ports/155354 bf New port: math/cmlib NIST core maths library o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver f ports/155335 mi multimedia/vic is out of date o kern/155320 [hang] cpufreq/powerd + xorg-7.5.1 + xf86-video-intel- o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o kern/155303 firewire [firewire] Mounted firewire disks prevent reboot f ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera f ports/155268 danfe games/warsow 0.6 does not work as dedicated server p arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o kern/155199 fs [ext2fs] ext3fs mounted as ext2fs gives I/O errors o kern/155196 [uart] uart cannot identify internal modem or its chip o kern/155177 net [route] [panic] Panic when inject routes in kernel o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) o ports/155105 stephen Port science/vis5d+ does not build. o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" o ports/155083 netchild devel/linux_kdump update o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa p bin/155028 init(8): "init q" in single user causes segfault o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel f kern/155004 yongari [bce] [panic] kernel panic in bce0 driver o bin/155000 make(1) doesn't handle .POSIX: correctly o conf/154999 Problems with ARP table o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o kern/154955 acpi [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3 o kern/154943 net [gif] ifconfig gifX create on existing gifX clears IP o kern/154930 fs [zfs] cannot delete/unlink file from full volume -> EN f ports/154897 swills emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate s kern/154851 net [new driver] [request]: Port brcm80211 driver from Lin o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o docs/154838 doc update cvs-tags information on releng_* to reflect sup o kern/154833 xen [xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. o kern/154828 fs [msdosfs] Unable to create directories on external USB o kern/154814 [lor] LOR between bufwait/dirhash o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o bin/154769 make(1): :L modifier broken in quoted strings o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice-3 3.0 fails o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o kern/154609 ed [ncurses] END key under screen not sending correct cod o ports/154607 az Symlinking leads to hashing fail in net-p2p/rtorrent [ o kern/154600 net [tcp] [panic] Random kernel panics on tcp_output p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user f i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 geom [patch] gvinum(8) can't be built as part of the kernel o kern/154567 wireless [ath] ath(4) lot of bad series(0) o bin/154562 make(1): corrupted stack access when provided invalid o kern/154557 net [tcp] Freeze tcp-session of the clients, if in the gat o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 x11 x11/xdm authorization failure when used with E17 windo o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase o kern/154473 xen [xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not o kern/154472 xen [xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154299 [arcmsr] arcmsr fails to detect all attached drives f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154286 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154255 net [nfs] NFS not responding o ports/154249 bf [NEW PORT] math/sprng: Scalable Parallel Pseudo Random o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin p kern/154228 fs [md] md getting stuck in wdrain state o arm/154227 arm [geli] using GELI leads to panic on ARM o kern/154226 geom [geom] GEOM label does not change when you modify them o gnu/154225 The rcsintro manpage should not be in section 1 o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o kern/154185 net race condition in mb_dupcl o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 p kern/154169 net [multicast] [ip6] Node Information Query multicast add o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/154134 net [ip6] stuck kernel state in LISTEN on ipv6 daemon whic o misc/154133 [build] device.hints not updated on upgrade == serial o kern/154091 net [netgraph] [panic] netgraph, unaligned mbuf? o ports/154086 office libsicui18n.a in devel/icu constains no symbols p bin/154073 delphij [libz] libz causes perl to exit on signal 11 o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154060 host(1): Server Unknown Error while resolve ip by the o kern/153996 fs [zfs] zfs root mount error while kernel is not located o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o docs/153958 doc ksu man-page documented, but not installed o kern/153937 net [ral] ralink panics the system (amd64 freeBSDD 8.X) wh o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o i386/153851 usb [keyboard] keyboard issues on new Intel Mother boards. a kern/153848 bz [carp] [ipv6] backup host can't connect to master host o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o kern/153816 net [ixgbe] ixgbe doesn't work properly with the Intel 10g o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o kern/153771 Unkillable process after a SCSI tape write error o kern/153757 Kernel panic using openchrome Xorg driver on 9-CURRENT o kern/153753 fs [zfs] ZFS v15 - grammatical error when attempting to u o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 a ports/153735 multimedia multimedia/vlc: install error: `Permission denied' for o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153716 fs [zfs] zpool scrub time remaining is incorrect o usb/153703 usb [keyboard] My USB keyboard can not be used in 8-STABLE o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/153674 xen [xen] i386/XEN idle thread shows wrong percentages o misc/153673 [build] tic (the terminfo compiler) not being created o kern/153672 xen [xen] [panic] i386/XEN panics under heavy fork load o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153659 awk(1) segfaults when trying to extract a combination o ports/153632 hrs textproc/xmlcharent fails to build o kern/153620 xen [xen] Xen guest system clock drifts in AWS EC2 (FreeBS o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153609 usb [zyd] [panic] kernel: Fatal trap 12: page fault while o bin/153600 Path length restrictions in mount/umount tools prevent o kern/153594 wireless [wlan] netif/devd race o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping f kern/153514 usb [cam] [panic] CAM related panic o bin/153502 [libc] regex(3) bug with UTF-8 locale o kern/153497 net [netgraph] netgraph panic due to race conditions o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o kern/153477 xen [xen] XEN pmap code abuses vm page queue lock o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes o kern/153448 wireless [ath] ath networking device loses association after a o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o kern/153418 fs [zfs] [panic] Kernel Panic occurred writing to zfs vol o arm/153380 arm Panic / translation fault with wlan on ARM o amd64/153372 amd64 [panic] kernel panic o kern/153351 fs [zfs] locking directories/files in ZFS o kern/153308 net [em] em interface use 100% cpu o kern/153307 pf [pf] Bug with PF firewall o kern/153303 [amr] amr device driver dont detect logical drive amrd f kern/153289 gavin Modem Ring Signal not reliably detected o ports/153281 ashish editors/emacs: glib warning when starting emacs o ports/153277 pgsql databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o kern/153244 net [em] em(4) fails to send UDP to port 0xffff o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w o kern/153205 [ahci] PIONEER DVD-RW: timeout with ahci(4), OK with a o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 s kern/153173 fs [zfs] booting from a gzip-compressed dataset doesn't w o kern/153161 ipfw [ipfw] does not support specifying rules with ICMP cod o misc/153157 [build] [patch] Add support for generating userland de o bin/153156 When watch(1) is invoked incorrectly it trashes the tt o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o bin/153142 fs [zfs] ls -l outputs `ls: ./.zfs: Operation not support o kern/153126 fs [zfs] vdev failure, zpool=peegel type=vdev.too_small o bin/153124 grep(1): "grep foo * > somefile" goes into an infinite o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error o misc/153049 [build] PORTS_MODULES= seriously broken if port depend a docs/153012 doc [patch] iostat(8) requires an argument to -c option f i386/153003 gavin [panic] Cant boot PCBSD-CURRENT-20101204x86CD.iso Dec0 o kern/152991 [ufs] false disk full with a too slow flash module o i386/152942 mav [install] "acd0[READ(offset=32768, length=2048)]error= o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o kern/152922 adrian Routerstation Pro different flash model investigation f bin/152909 gavin scp mistake file to directory a ports/152899 bdrewery devel/valgrind: unhandled syscall: 506 o kern/152893 net [netgraph] [panic] 8.2-PRERELEASE panic in netgraph o ports/152877 portmgr [bsd.port.mk] Patch to add locking to ports make opera o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 koobs [patch] port/buildbot-slave could use a startup script o kern/152828 net [em] poor performance on 8.1, 8.2-PRE o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re o ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152796 fcntl(2) audit records should not be labeled "file att o kern/152792 [acpica] [patch] move temperature conversion macros to o kern/152791 bz [icmp] ND, ICMPv6 Redirect vs Destination Cache failed o kern/152750 wireless [ath] ath0 lot of bad series hwrate o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w o kern/152662 [rtld] load libraries with address hint (cf. prelink) o bin/152661 parallel make sometimes gets working dir confused o misc/152636 [install] 8.1 Boot Only ISO doesn't support install vi o kern/152622 multimedia [pcm] uaudio recording problem o misc/152613 FreeBSD 8.x can not find logical drives on extended pa p kern/152609 pjd [geli] geli onetime on gzero panics o kern/152604 FreeBSD 7.2/7.3 installation CD panics on HP Proliant o kern/152569 net [net]: Multiple ppp connections and routing table prob o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152485 arundel [patch] seek offset for /dev/null(4) and /dev/zero(4) o ports/152474 mi Upgrading 'gdb-6.6_1' to 'gdb-6.6_2' (devel/gdb6) fail o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules f bin/152458 hrs rtadvd(8) needs to allow RA without a prefix info opti o bin/152446 cperciva portsnap(8) error o kern/152438 hiren [acpi]: patch to acpi_asus(4) to add extra sysctls for o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o stand/152415 kargl [libm] implementation of expl() o kern/152405 wrong user time is reported when CPU frequency throttl o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x o kern/152293 [libstdc++] SEGV in libstdc++.so.6 o bin/152259 ae bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152235 net [arp] Permanent local ARP entries are not properly upd o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o bin/152229 b64decode(1)/b64_pton(3) should decode common variant o kern/152228 xen [xen] [panic] Xen/PV panic with machdep.idle_mwait=1 o kern/152162 [syscons] On syscons, pressing delete key results in p o bin/152154 script(1) -k malfunctions with certain shells (e.g. tc s kern/152148 bz [pfil] vnet_pfil_init() happens too late if pfil_head_ o kern/152141 net [vlan] [patch] encapsulate vlan in ng_ether before out o bin/152132 script(1): [patch] Useless code in script.c (part 2) o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo o kern/152098 acpi [acpi] Lenovo T61p does not resume f amd64/152097 gavin Sound button in Lenovo T61p mutes sound in kde o bin/152084 [patch] pw(8) does not allow @ or ! in gecos o usb/152075 usb [usb8] [ehci] [request] Add quirk for CS5536 USB o kern/152036 net [libc] getifaddrs(3) returns truncated sockaddrs for n o kern/152022 fs [nfs] nfs service hangs with linux client [regression] o bin/151996 [patch] new tcpdrop(8) option to select interactively o bin/151976 [patch] mount_nullfs(8) patch to add support for expos o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151937 [patch] netstat(1) utility lack support of displaying o kern/151924 very slow boot from disk: 15m+ f kern/151910 pjd [zfs] booting from raidz/raidz2 on ciss(4) doesn't wor o kern/151905 fs [zfs] page fault under load in /sbin/zfs o ports/151884 office editors/openoffice-3-devel port misbehaviour o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages f threa/151767 davidxu pthread_mutex_init returns success with bad attributes o docs/151752 doc pw.conf(5) doesn't define format for file clearly s gnu/151716 gcc(1) fail with internal compiler error when using -f o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp o bin/151713 fs [patch] Bug in growfs(8) with respect to 32-bit overfl p misc/151698 imp [nanobsd] [patch] Add two new options to nanobsd.sh to p misc/151697 imp [nanobsd] [patch] nanobsd.sh copy links to packages as p misc/151696 imp [nanobsd] [patch] nanobsd.sh doesn't run "make_conf_bu o misc/151695 imp [nanobsd] [patch] Enhance tools/nanobsd/fill_pkg.sh o kern/151690 net [ep] network connectivity won't work until dhclient is o kern/151681 net [nfs] NFS mount via IPv6 leads to hang on client with o bin/151663 grdc(1): games/grdc: -s does not scroll o kern/151650 FreeBSD9-CURRENT can't boot when recompile KERNEL. o kern/151648 fs [zfs] disk wait bug o kern/151629 fs [fs] [patch] Skip empty directory entries during name o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o ports/151472 ume mail/cyrus-imapd23 failed to compile o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad o kern/151444 [kerberos] Kerberos5 is broken in the base system from o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151336 scsi Missing documentation of scsi_ and ata_ functions in c o kern/151330 fs [zfs] will unshare all zfs filesystem after execute a o kern/151326 fs [nfs] nfs exports fail if netgroups contain duplicate o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o bin/151264 bsnmpd(1): pf counters aren't updated on some SNMP que o kern/151251 fs [ufs] Can not create files on filesystem with heavy us o kern/151226 fs [zfs] can't delete zfs snapshot o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o bin/151187 pkg_add(1): allow different pkgdep location o bin/151186 [patch] routed(8) turns RIP off if just one network ca o bin/151168 pkg_add(1): pkg_add -K should preserve file metadata f ports/151154 kde audio/amarok-kde4 crashes on network activity if ports o misc/151141 [tools] [patch] include daily script in !MK_PKGTOOLS c o ports/151124 hrs net/openbgpd: OpenBGPD exists if an interface is remov o i386/151122 i386 [boot] BTX 1.02 crashes on boot o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o bin/151023 [patch] ping6(8) exits before all ICMPv6 echo replies o bin/150995 sysinstall sysinstall(8): corruption of partition table o ports/150994 maho math/suitesparse can not compile with atlas o docs/150991 doc [patch] Install upgtfw using pkg_add as advised in upg o bin/150988 adduser(8) problem of directory mode o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc o kern/150920 net [ixgbe][igb] Panic when packets are dropped with heade o docs/150917 doc [patch] icmp.4, wrong description of icmplim and icmpl o usb/150892 usb [zyd] Whenever network contacted in any shape, way or p bin/150890 kientzle [patch] bsdtar(1) does not always dive into subdirecto o docs/150877 doc ambiguity in newsyslog(8) man page about zfs with comp o kern/150858 geom [geom] [geom_label] [patch] glabel(8) is not compatibl o ports/150794 glewis tomcat7's rc.d script wont shutdown tomcat with java/o o bin/150771 [patch] csup(1) GNUmakefile missing o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 o bin/150723 ae bsnmpd(1): add knowledge of "ada" disks (ATA via SCSI o ports/150691 portmgr [patch] Templates/BSD.local.dist: add conf.{avail,d} f o bin/150648 [patch] rshd(8): Incorrect determination of length of f kern/150640 [panic] Fatal Trap 9 - 8.1-release o kern/150628 [acd] [ata] burncd(1) can't write to optical drive o kern/150626 geom [geom] [gjournal] gjournal(8) destroys label s bin/150620 [request] Please include utility programs for ncurses o misc/150590 Screen goes blank when PC-BSD graphic install is loade o arm/150581 arm [irq] Unknown error generates IRQ address decoding err o kern/150557 net [igb] igb0: Watchdog timeout -- resetting o kern/150555 geom [geom] gjournal unusable on GPT partitions o kern/150516 jfv [em] e1000 receive queue handling problem o kern/150503 fs [zfs] ZFS disks are UNAVAIL and corrupted after reboot f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150501 fs [zfs] ZFS vdev failure vdev.bad_label on amd64 o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o kern/150390 fs [zfs] zfs deadlock when arcmsr reports drive faulted o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o docs/150365 arundel [make.conf] [patch] remove BDECFLAGS from make.conf(5) o kern/150336 fs [nfs] mountd/nfsd became confused; refused to reload n o kern/150334 geom [geom] [udf] [patch] geom label does not support UDF o kern/150315 [ata] sizeof(union ccb) changed between 7.x and 8.x o kern/150284 multimedia [snd_hda] No gain with Audio o ports/150265 doceng [patch] print/ghostscript8 disable bogus port conflict a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the o docs/150255 doc dtrace description should mention makeoptions DEBUG=-g o kern/150251 net [patch] [ixgbe] Late cable insertion broken o kern/150249 net [ixgbe] Media type detection broken s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o kern/150206 [patch] nmount(2): can't switch root partition to rw u o conf/150195 [patch] [rc.d] startup script for pfstatd(8) o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o kern/150176 [libpcap] [patch] pcap(3): pcap_read_bpf() p->cc can g p kern/150138 davidxu [patch] signal sent to stopped, traced process not imm o kern/150095 mav [patch] Account for reserved itimers which shouldn't c o stand/150093 standards C++ std::locale support is broken o kern/150036 hrs [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' o bin/149972 [patch] pw(8): usermod -u should error f kern/149969 net [wlan] [ral] ralink rt2661 fails to maintain connectio o kern/149960 [headers] syntax error /usr/include/machine/endian.h o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 cy [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP s kern/149898 [ata] [request] add LSI AOC-USAS2-L8e support o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o bin/149828 kientzle tar(1) poor (empty) error message when extracting trun o bin/149806 [patch] OpenBSM auditd(8) fails to expire trails if ho f kern/149803 vwe [patch] loader: set vfs.mount.rootfrom using label o kern/149797 [kernel] [panic] mutex sleepq chain not owned at /usr/ o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem o kern/149762 geom volume labels with rogue characters o ports/149743 x11 x11/xorg: garbled window since Xorg-7.5 o gnu/149712 [build] -fno-builtin in CFLAGS will cause gcc(1) to se p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o kern/149643 net [rum] device not sending proper beacon frames in ap mo o misc/149633 bugmeister Problem with replying to PR o kern/149609 net [panic] reboot after adding second default route o kern/149591 [kernel] struct callout:c_flags should be volatile o kern/149587 [vm] Lockup on 8.1-RC2 system enabling vm.idlezero o kern/149586 [kernel] _callout_stop_safe prematurely unsets CALLOUT o kern/149580 mav [ata] [patch] When using an SIIG SATA card the error " o docs/149574 doc [patch] update mi_switch(9) man page o bin/149569 [patch] rtld(1): runtime linker unable to load needed o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o kern/149479 [panic] 8.1-RELEASE kernel panic o www/149446 www [patch] improve misleading title of "report a bug" o bin/149412 bdes(1) in CFB/OFB modes can't decrypt own output o kern/149373 wireless [realtek/atheros]: None of my network card working o bin/149363 tcsh(1) cause situation when ssh connection closed o misc/149360 gavin [PATCH] update for tools/build/mk/OptionalObsoleteFile o kern/149323 [libc] Applications with large memory footprint failin o kern/149308 [ata] 8.1-RELEASE kernel panic on Windows 7 Virtual PC o usb/149283 usb [uftdi] avrdude unable to talk to Arduino board (via u o kern/149266 [new driver] [patch] rpi(4) - Comtrol Infinity/Express o ports/149250 hrs japanese/FreeWnn-server: /etc/rc: WARNING: $wnn_enable o bin/149215 geom [panic] [geom_part] gpart(8): Delete linux's slice via o kern/149208 fs mksnap_ffs(8) hang/deadlock o kern/149201 [ata] DVD/CD Drive Error o kern/149173 fs [patch] [zfs] make OpenSolaris installa o ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR o usb/149162 usb [ural] ASUS WL-167g doesn't work in 8.1 (continue of 1 o bin/149152 gabor [patch] grep(1): BSD grep loops with EISDIR trying to o kern/149117 net [inet] [patch] in_pcbbind: redundant test o kern/149086 net [multicast] Generic multicast join failure in 8.1 o ports/149031 csjp Not work security/termlog o kern/149015 fs [zfs] [patch] misc fixes for ZFS code to build on Glib o kern/149014 fs [zfs] [patch] declarations in ZFS libraries/utilities o kern/149013 fs [zfs] [patch] make ZFS makefiles use the libraries fro a kern/149012 gavin [headers] [patch] please replace '#include 4.1 does not connect to BSD in hostap wit o kern/144874 net [if_bridge] [patch] if_bridge frees mbuf after pfil ho p kern/144869 jfv [em] [panic] Instant kernel panic when adding NAT rule o kern/144843 firewire [firewire] [panic] fwcontrol(8) -S causes kernel panic p conf/144842 hrs [ip6] ipv6_default_interface causes route complaints f o kern/144824 [boot] [patch] boot problem on USB (root partition mou s docs/144818 doc all mailinglist archives dated 19970101 contain traili o kern/144809 [panic] Fatal trap 12: page fault while in kernel mode o conf/144804 ntpd(8) cannot resolve hostnames at system start s kern/144770 [ata] hard drive spindown functionality broken? o kern/144755 wireless [wlan] netif/devd race o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o conf/144726 hrs network.subr functions accumulate output before r19713 o bin/144723 [patch] port over coverity SA NULL deref warning fix f o www/144704 brd svn-src-release mailing list page has broken link to a o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o kern/144696 ed [uart] tcdrain(3) does not work right with uart(4) dri o kern/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/144680 jfv [em] em(4) problem with dual-port adapter o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o bin/144652 [PATCH] pwd_mkdb(8) copies comments to /etc/passwd o kern/144648 scsi [aac] Strange values of speed and bus width in dmesg o bin/144641 [ata] burncd(8) freezes whole system while trying to b o kern/144629 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/144616 net [nat] [panic] ip_nat panic FreeBSD 7.2 p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o kern/144561 jfv [ixgbe] [patch] ixgbe driver errors p misc/144553 imp [nanobsd] NanoBSD's updatep* scripts fail with boot0cf o conf/144548 brian [boot] [patch] Enable automatic detection of amd64/i38 s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta o bin/144531 [patch] cp(1) show percentage complete o docs/144515 doc [handbook] Expand handbook Table of contents o kern/144492 yongari [fxp] The fxp driver does not handle Frame Check Seque p kern/144447 fs [zfs] sharenfs fsunshare() & fsshare_main() non functi o misc/144442 [build] [patch] remove unnecessary group and passwd en o i386/144437 [boot] BTX loader halts on HP DC5850 o kern/144416 fs [panic] Kernel panic on online filesystem optimization s kern/144415 fs [zfs] [panic] kernel panics on boot after zfs crash o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o bin/144388 [patch] different behavior of make(1) between command o usb/144387 usb [run] [panic] if_run panic o bin/144343 hrs The rtadvd cannot avoid the prefix that doesn't want t o kern/144325 [libpcap] tcpdump compiles complex expression to incor o bin/144322 truss(1) fails on 'assistant-qt4' from the port qt4-as f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o bin/144285 hiren [patch] ps(1): ps -axo user,%cpu,%mem - most processes o conf/144243 [patch] Add NIS related files to OptionalObsoleteFiles o kern/144234 fs [zfs] Cannot boot machine with recent gptzfsboot code o kern/144231 net bind/connect/sendto too strict about sockaddr length a ports/144224 mono [PATCH] lang/mono Fix build with new GCC o ports/144203 clsung textproc/refdb: network clients loop indefinitely when o bin/144139 x11/xscreensaver-gnome can't build because of bug in G o docs/144127 ed termios(4) man page wrongly claims CCTS_OFLOW/CRTSCTS o ports/144120 glewis java/openjdk6: games/pcgen doesn't fully work with ope o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but p kern/144061 rwatson [socket] race on unix socket close o kern/144055 [ata] [panic] kernel panic on IBM x226 with SATA drive o ports/144044 gecko [PATCH] www/firefox: Makefile.webplugins target order o usb/144043 usb [umass] [usb8] USB DLT tape drive throws random errors o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem f kern/143973 ipfw [ipfw] [panic] ipfw forward option causes kernel reboo o bin/143962 fstat(1) doesn't work on UNIX sockets o ports/143949 office editors/openoffice-3: system unzip pickiness unhelpful o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb o kern/143825 fs [nfs] [panic] Kernel panic on NFS client s kern/143808 virtualization[pf] pf does not work inside jail o kern/143805 [ata] WARNING - READ_DMA48 UDMA ICRC error with 63XXES o kern/143800 [boot] ping of local ip failed with network boot o i386/143798 acpi [acpi] shutdown problem with SiS K7S5A a usb/143790 usb [boot] [cam] can not boot from usb hdd o misc/143785 [build] [patch] add passive mode to pkg_add cdrtools i o bin/143732 [patch] mtree(8) does a full hierarchy walk when reque o kern/143703 qingli [route] [patch] ECMP Phase 1 fixes for FreeBSD 7.2 s bin/143699 [patch] extend brandelf's OS knowledge o bin/143698 portmgr pkg_add(1) probably behaving incorrectly s www/143697 linimon [portsmon.freebsd.org] Error: could not connect to the s kern/143673 net [stf] [request] there should be a way to support multi s kern/143666 net [ip6] [request] PMTU black hole detection not implemen o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143623 firewire [firewire] firewire fails to attach DV camera and down o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op o kern/143593 net [ipsec] When using IPSec, tcpdump doesn't show outgoin o kern/143591 net [ral] RT2561C-based DLink card (DWL-510) fails to work o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o kern/143573 jfv [em] em(4) NIC crashes intermittently o bin/143572 fs [zfs] zpool(1): [patch] The verbose output from iostat o bin/143570 ed [patch] stock ftpd(8) does not handle "filesize" limit o bin/143568 secteam ktrace(1) is limited with other user's "filesize" limi o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml o kern/143543 pf [pf] [panic] PF route-to causes kernel panic o bin/143533 [patch] Changes to support Sun jumpstart via bootparam o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o bin/143504 pf [patch] outgoing states are not killed by authpf(8) o docs/143472 doc gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143420 acpi [acpi] ACPI issues with Toshiba o docs/143416 doc [handbook] IPFW handbook page issues o docs/143408 doc man filedesc(9) is missing o kern/143398 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o bin/143389 [2tb] [patch] fdisk(8) cannot handle above 1TB under i o bin/143375 [patch] awk(1) trashes memory with regexp and ^ anchor o bin/143373 [patch] awk(1) tolower/toupper functions don't support o bin/143369 [patch] awk(1) doesn't handle RS as a regexp but as a o bin/143368 [patch] awk(1): number of open files is limited to sma o bin/143367 [patch] awk(1) treats -Ft as -F o bin/143365 [patch] incorrect regexp matching in awk(1) o bin/143363 [patch] incorrect handling of \ at the end of line in o bin/143362 awk(1) incorrect matching o bin/143351 bapt [request] update flex(1) to at least 2.5.33 o kern/143349 [panic] vm_page_free: freeing busy page o kern/143340 xen [xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor o kern/143324 [panic] vm_fault: fault on nofault entry, addr: c10a50 f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o kern/143285 jfv [em] [regression] jumbo frames broken in 8.0 o gnu/143254 [patch] groff(1) build in base system does not honor P o kern/143227 [panic] [cpufreq] free: address has not been allocated o kern/143212 fs [nfs] NFSv4 client strange work ... o kern/143208 net [ipsec] [gif] IPSec over gif interface not working p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google o kern/143184 fs [zfs] [lor] zfs/bufwait LOR s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J o kern/143126 [ata] Data loss on read timeout o bin/143090 [PATCH] Let indent(1) handle widecharacter literals co o kern/143088 [hang] FreeBSD 9.0-CURRENT freezes while starting kern o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances o i386/143082 [install] Unable to install 8.0-RELEASE on Dell 2950 w o conf/143079 wireless hostapd(8) startup missing multi wlan functionality o kern/143073 [patch][panic] unp_gc panic (race with uipc_detach) f kern/143069 xen [xen] [panic] Xen Kernel Panic - Memory modified after o bin/143058 [patch] mdconfig(8): make mdconfig -o reserve default p usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d a docs/143041 blackend [handbook] [patch] doc/en__US.ISO8859-1 refers to slip o kern/143040 [sysctl] sysctl -a hangs, as a side effect it breaks o kern/143034 net [panic] system reboots itself in tcp code [regression] o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s a conf/142973 rc [jail] [patch] Strange counter init value in jail rc s conf/142972 jail [jail] [patch] Support JAILv2 and vnet in rc.d/jail o conf/142961 pf [pf] No way to adjust pidfile in pflogd f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted o bin/142932 adduser(8) script add bogus symbol at "full name" fiel p kern/142927 thompsa [vlan] [patch] handle parent interface link layer addr o docs/142917 arundel [patch] top(1) man page does not include information a o bin/142913 [patch] netstat(1) -w should produce error message if o bin/142912 [patch] nfsstat(1) -w should produce error message if o bin/142911 [patch] vmstat(8) -w should produce error message if f o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142877 net [hang] network-related repeatable 8.0-STABLE hard hang o kern/142872 pjd [zfs] ZFS ZVOL Lockmgr Deadlock o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o conf/142817 pf [patch] etc/rc.d/pf: silence pfctl o bin/142814 [patch] add beginning and end offset options to md5(1) o stand/142803 kargl j0 Bessel function inaccurate near zeros of the functi o kern/142802 [ata] [panic] on removing drive: recursed on non-recur s bin/142786 [request] [geom_part] gpart(8) should recognize NAND m o kern/142781 [lor] New LOR: process lock / system map o kern/142774 net Problem with outgoing connections on interface with mu o kern/142772 net [libc] lla_lookup: new lle malloc failed o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn o kern/142563 geom [geom] [hang] ioctl freeze in zpool f kern/142518 net [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o kern/142466 fs Update 7.2 -> 8.0 on Raid 1 ends with screwed raid [re o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o i386/142421 i386 [ata] optical drives not found o kern/142390 [keyboard] 30th console switch hangs computer complete o kern/142351 scsi [mpt] LSILogic driver performance problems o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o kern/142306 fs [zfs] [panic] ZFS drive (from OSX Leopard) causes two o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P o kern/142198 SSLv3 failure with irc/xchat on FreeBSD 8.0 o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o kern/142173 [libc] localeconv(3): two-byte ascii thousands_sep o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 o conf/142114 periodic(8): security report from 'periodic daily' doe o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142068 fs [ufs] BSD labels are got deleted spontaneously o kern/142019 jfv [em] em needs "ifconfig em0 down up" when link was gon o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/142009 acpi [acpi] [panic] Panic in AcpiNsGetAttachedObject o kern/141950 fs [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o kern/141928 ed [libteken] either xterm -C or ioctl TIOCCONS is broken o bin/141920 sort(1): sort -k 3,1g is very slow o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller o kern/141915 [hang] Unspecified lockup/deadlock with 7.2 on AMD64 o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o kern/141905 pf [pf] [panic] pf kernel panic on 7.2-RELEASE with empty o kern/141897 fs [msdosfs] [panic] Kernel panic. msdofs: file name leng o bin/141890 [patch] slapd(8): The slapd server starts/restarts way o kern/141861 net [wi] data garbled with WEP and wi(4) with Prism 2.5 o kern/141843 jfv [em] [vlan] Intel txcsum and assigned vlan invoke wron o kern/141841 [ata] Controller ST-Lab A-173 (Sil3512) lost the HDD d o kern/141826 multimedia [snd_hda] load of snd_hda module fails f kern/141756 gavin [mmc] MMC card attached to blocks keybo f kern/141741 net Etherlink III NIC won't work after upgrade to FBSD 8, o kern/141740 geom [geom] gjournal(8): g_journal_destroy concurrent error o threa/141721 threads rtprio(1): (id|rt)prio priority resets when new thread f kern/141718 pjd [zfs] [panic] kernel panic when 'zfs rename' is used o f usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi o kern/141655 [sio] [patch] Serial Console failure on Dell servers o kern/141653 [ata] [panic] Panic in ata? f misc/141652 gavin [install] 8.0 install fails from USB memstick because o ports/141641 portmgr [bsd.port.mk] [patch] make 'config-recursive' finish i o kern/141632 ed [libteken] vidcontrol -T cons25 doesn't work with 'mod o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o kern/141463 fs [nfs] [panic] Frequent kernel panics after upgrade fro p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o conf/141317 jail [patch] uncorrect jail stop in /etc/rc.d/jail o kern/141314 andre Network Performance has decreased by 30% [regression] f usb/141313 thompsa [usb8] nvidia USB 2.0 controller - stops copying on US o bin/141264 ntpd(8) crashes when tries to use an oncore reference o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o kern/141150 [pty] [hang] TIOCDRAIN ioctl on pts/pty master hangs o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot o kern/141086 fs [nfs] [panic] panic("nfs: bioread, not dir") on FreeBS o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se o bin/141016 [libpam] PAM checks in sshd too few? o kern/141011 usb [usb8] Encrypted root, geli password at boot; enter ke o kern/141010 fs [zfs] "zfs scrub" fails when backed by files in UFS2 o bin/140972 sysinstall sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o conf/140965 [terminfo] Cannot create terminfo database because ncu o kern/140932 fork+exec from threaded FreeBSD 7.2 application o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS a docs/140918 blackend [handbook] update 8.0 handbook about serial port /dev f bin/140900 gavin [geom_part] sysinstall(8) problems: "unable to make de o ports/140895 hrs net/openbgpd exit, when kernel table change o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b o kern/140888 fs [zfs] boot fail from zfs root while the pool resilveri o amd64/140873 gavin [install] Cannot install 8.0-RELEASE on Thinkpad SL300 o bin/140863 cperciva freebsd-update(8) fails to check that writes will succ o kern/140858 [hang] System freeze during boot when PC-Card NIC inst o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0- s docs/140847 doc [request] add documentation on ECMP and new route args o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. f kern/140836 gavin [geom_part]? - failed to upgrade to 8.0-RELEASE o kern/140835 des [libfetch] fetchParseURL(3) returns success with inval a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl o kern/140778 jfv [em] randomly panic in vlan/em o kern/140742 net rum(4) Two asus-WL167G adapters cannot talk to each ot o kern/140728 jfv [em] [patch] Fast irq registration in em driver o kern/140697 pf [pf] pf behaviour changes - must be documented o kern/140682 net [netgraph] [panic] random panic in netgraph o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- o kern/140658 [cpufreq] dev.cpu.0.cx_lowest=C3 from /etc/sysctl.conf o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o kern/140654 [umass] growisofs/mkisofs PERFORM OPC and GET EVENT C o kern/140647 jfv [em] [patch] e1000 driver does not correctly handle mu o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o kern/140640 fs [zfs] snapshot crash f kern/140634 net [vlan] destroying if_lagg interface with if_vlan membe o ports/140621 edwin Add support for /etc/cron.d and /usr/local/etc/cron.d o kern/140619 net [ifnet] [patch] refine obsolete if_var.h comments desc o kern/140597 andre [netinet] [patch] implement Lost Retransmission Detect o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o docs/140583 hrs ports/print/acroread9 - handbook and port fail to ment s www/140580 www svnweb file logs are useless p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o ports/140542 edwin sysutils/isc-cron should be compatible with cron from o kern/140514 des [pam] PAM can give PAM_SUCCESS when infact it should g o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d o bin/140462 devd(8): [regression] devd.pid locked by /etc/rc.d and o kern/140461 [vm] Fail to read from swap. The swap_pager.c contains o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o docs/140444 doc [patch] New Traditional Chinese translation of custom- o conf/140440 rc [patch] allow local command files in rc.{suspend,resum p misc/140436 imp [nanobsd] pkg-add process fails when there is no /usr/ o docs/140435 ls(1), section STANDARD: the -A is exception from POSI o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o kern/140361 [cpufreq] speed-stepping broken on PhenomII (acpi?) o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140352 geom [geom] gjournal + glabel not working o kern/140349 hiren [libpcap] [patch] libpcap's parser doesn't recognize n o kern/140346 net [wlan] High bandwidth use causes loss of wlan connecti o kern/140326 jfv [em] em0: watchdog timeout when communicating to windo p usb/140325 thompsa [libusb] [usb8] Missing/incorrect initialisation and m a bin/140309 bapt [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US o kern/140185 [patch] expand_number(3) does not detect overflow in n o ports/140162 hrs print/teTeX listings module bug o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A o kern/140156 emulation [linux] cdparanoia fails to read drive data o bin/140151 [patch] hexdump(1): Fix potential setlocale(3) in hexd o bin/140143 [patch] [rtld] dlopen(3) doesn't promote RTLD_GLOBAL f o kern/140142 net [ip6] [panic] FreeBSD 7.2-amd64 panic w/IPv6 o docs/140082 bland [handbook] handbook/jails: russian translation is miss o kern/140068 fs [smbfs] [patch] smbfs does not allow semicolon in file o kern/140067 [boot] 8.0-RC2 from ISO, after install, hangs on boot o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) o kern/140018 [boot] locks up during boot on cpu error on Dell Power o conf/140009 configuration issue NIS in nsswitch.conf(5) o java/140002 java java/openjdk6: jconsole dumps tomcat when contacting j o i386/139999 i386 [panic] random freeze and crash o gnu/139982 ld(1): BFD internal error f kern/139811 gavin FreeBSD did not recognize Intel Gigabit ET Dual Port S o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o kern/139743 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139725 fs [zfs] zdb(1) dumps core on i386 when examining zpool c o kern/139718 trasz [reboot] all mounted fs don't get synced during reboot o kern/139715 fs [zfs] vfs.numvnodes leak on busy zfs o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a o kern/139653 [ata] READ_BIG sluggish ata CD/DVD performance on HP D p bin/139651 fs [nfs] mount(8): read-only remount of NFS volume does n o bin/139601 [patch] make(1): variable substitution for $@ in depen f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139565 cy [ipfilter] ipfilter ioctl SIOCDELST broken p kern/139559 qingli [tun] several tun(4) interfaces can be created with sa o kern/139549 firewire [firewire] reconnecting a firewire disk does not cause f kern/139510 pjd [geom] [2tb] gmirror disappears after boot on 2T disks o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o kern/139407 fs [smbfs] [panic] smb mount causes system crash if remot o kern/139403 [headers] absense of AUE_NULL o bin/139389 [patch] Change top(1) to display thread IDs o kern/139387 net [ipsec] Wrong lenth of PF_KEY messages in promiscuous o bin/139346 net [patch] arp(8) add option to remove static entries lis o docs/139336 doc [request] ZFS documentation suggestion a bin/139314 [patch] install(1): install -d reports success on fail p kern/139312 gleb [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139268 net [if_bridge] [patch] allow if_bridge to forward just VL o conf/139255 8.0-RC1 network.subr calls route(8) with obsolete para o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef o bin/139181 sysinstall WITHOUT_LEGACY_CONSOLE=1 breaks sysinstall(8) o docs/139165 doc gssapi.3 man page out of sync with between crypto and o kern/139162 yongari [fwip] [panic] 8.0-RC1 panics if using IP over firewir o kern/139144 [keyboard] [patch] CapsLock LED should not depend on k o bin/139135 cperciva freebsd-update(8) misbehaves on upgrade and shows erro s sparc/139134 sparc64 kernel output corruption o kern/139127 [vfs] False negative vfs cache entry o kern/139117 net [lagg] + wlan boot timing (EBUSY) o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o kern/139088 acpi [acpi] ACPI Exception: AE_AML_INFINITE_LOOP error o kern/139058 cy [ipfilter] mbuf cluster leak on FreeBSD 7.2 s kern/139039 pjd [zfs] zpool scrub makes system unbearably slow o kern/139027 [ata] DVD RW is not recognized on ASUS K40IN laptop wh o docs/139018 doc translation of submitting.sgml from docproj/submitting o kern/139014 [null] /dev/null must be immunable to delete/unlink o kern/138967 [ata] HDD write error: g_vfs_done(): ... ]error = 1 o bin/138961 ldap groups don't work with su(1) o i386/138948 i386 [twa] [regression] da0: Fi f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138938 [psm] Synaptics Support dosn't work on Dell Latitude o bin/138926 cperciva [patch] freebsd-update(8): allow unattended upgrade o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138870 [apm] 8.0beta4 PnP problem? lost synaptics trackpad in o bin/138858 patch(1) assumes that a file appears only once in the o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o kern/138850 net [dummynet] dummynet doesn't work correctly on a bridge o docs/138845 doc Exceeding kern.ipc.maxpipekva refers to tuning(7) whic o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv o kern/138782 net [panic] sbflush_internal: cc 0 || mb 0xffffff004127b00 o ports/138772 nox emulators/qemu should build on SPARC o i386/138737 [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138688 net [rum] possibly broken on 8 Beta 4 amd64: able to wpa a o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 joel system(3) man page confuses users about "return value o kern/138662 fs [panic] ffs_blkfree: freeing free block o kern/138660 jfv [igb] igb driver troubles in 8.0-BETA4 o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o bin/138560 ifconfig(8): wpa_supplicant(8): Incorrect usage of str s bin/138547 vwe [request] improve dhcp behaviour with multiple network o kern/138537 [ata] [panic] Memory modified after free o docs/138485 doc bpf(4) and ip(4) man pages missing important corner ca p kern/138439 vanhu [IPSec] Tunnel with IPv4 and IPv6 o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138407 net [gre] gre(4) interface does not come up after reboot o kern/138392 jfv [em] [altq] ALTQ queuing not working on em(4) o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ f bin/138331 FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 usb [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 bdrewery [bsd.port.mk] [exp-run] New opt-in knob to compile por f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, p conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o kern/138202 fs mount_msdosfs(1) see only 2Gb o kern/138177 cy [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o kern/138046 andre [tcp] tcp sockets stay in SYN_SENT even after receivin f kern/138029 net [bpf] [panic] periodically kernel panic and reboot o bin/138025 sysinstall sysinstall(8) fails to create big partition o kern/138002 [lor] Three lock order reversals: ufs/devfs, bufwait/d o kern/137982 pf [pf] when pf can hit state limits, random IP failures o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow p bin/137841 net [patch] wpa_supplicant(8) cannot verify SHA256 signed o kern/137822 [vesa] [hang] System crashes leaving X when running ve p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o kern/137678 [libstand] [patch] libstand's bootp/dhcp code always u o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa o conf/137671 [patch][request] enhance beastie.4th: possibility to d s gnu/137665 [patch] dialog(1) goes into tight loop on encountering o bin/137641 net ifconfig(8): various problems with "vlan_device.vlan_i p conf/137629 crees [rc.d] background_dhclient rc.conf option causing doub o ports/137620 portmgr [NEW PORT] devel/p6-perl6-toys o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/137588 fs [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o bin/137514 cperciva freebsd-update(8) doesn't update the system under some o ports/137393 portmgr Remote Package Add of lang/gcc42 does not terminate o kern/137392 net [ip] [panic] crash in ip_nat.c line 2577 o usb/137377 usb [usb8] request support for Huawei E180 o kern/137372 net [ral] FreeBSD doesn't support wireless interface from f bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137346 ipfw [ipfw] ipfw nat redirect_proto is broken o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro o kern/137327 dfr [nfs] nfs nlm memery leak s bin/137318 [request] import options from NetBSD's lastlogin(1) o kern/137309 bz [ipsec] sequence number in a SADB_X_SPDGET response is o kern/137307 [libc] [patch] Enhance strptime(3) to support %U and % o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o kern/137246 [kqueue] kevents not generated for file writes through o kern/137232 ipfw [ipfw] parser troubles o kern/137228 [psm] synaptics support delays 'mouse up' events when f usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o kern/137181 [ata] Promise SATA controller SX4-M PDC20621 does not o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de o bin/136994 hiren [patch] ifconfig(8) print carp mac address o kern/136968 fs [ufs] [lor] ufs/bufwait/ufs (open) o kern/136946 firewire [fwohci] fwohci throws an"unrecoverable error" upon re o kern/136945 fs [ufs] [lor] filedesc structure/ufs (poll) o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o kern/136911 net [netgraph] [panic] system panic on kldload ng_bpf.ko t o misc/136889 imp [nanobsd] [patch] nanobsd error reporting and other re o kern/136888 [boot] boot0sio timeout much longer when DSR/CTS low o kern/136876 yongari [bge] bge will not resume properly after suspend o kern/136873 fs [ntfs] Missing directories/files on NTFS volume o kern/136865 fs [nfs] [patch] NFS exports atomic and on-the-fly atomic o bin/136857 hiren [patch] du(1): permit per directory only sum (no herit o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/136781 pf [pf] Packets appear to drop with pf scrub and if_bridg o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa o kern/136669 [libc] [patch] setmode(3) should always set errno on e o docs/136666 doc [handbook] Configure serial port for remote kernel deb o bin/136661 melifaro [patch] ndp(8) ignores -f option o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o kern/136618 net [pf][stf] panic on cloning interface without unit numb p kern/136470 fs [nfs] Cannot mount / in read-only, over NFS o kern/136356 [ata] SATA / ICH7 problems o bin/136354 [patch] powerd(8): Support for maxspeed in adaptive mo o conf/136336 [termcap] [patch] missing entry for "center of keypad" o kern/136327 firewire [sbp] [boot] Asus M3N78-EM motherboard cannot boot wit o kern/136216 [headers] Missing prototype declaration for setfib() o o kern/136168 jfv [em] em driver initialization fails on Intel 5000PSL m o kern/136159 [kthread] [patch] tsleep with PDROP in kthread_suspend o bin/136073 des recent nscd(8) changes cause client processes to die w o docs/136035 doc ftpchroot(5) omits an important option o kern/136013 [resolver] Resolver wrong diagnostics o i386/136008 acpi [acpi] Dell Vostro 1310 will not shutdown (Requires us f i386/135961 gavin [boot] booting WRAP and Soekris fails from PXE, boot0 o kern/135948 pf [pf] [gre] pf not natting gre protocol o kern/135898 geom [geom] Severe filesystem corruption - large files or l o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 f kern/135667 xen ufs filesystem corruption on XEN DomU system o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i o kern/135608 [patch] sysctl(8) should be able to handle byte values o power/135576 ppc gdb cannot debug threaded programs on ppc o ports/135569 portmgr `check-sanity` not documented in bsd.port.mk s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa o docs/135516 doc [patch] pax(1) manual not mentioning chflags unawarene a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 [patch] jot(1) manpage and behaviour differ o kern/135469 fs [ufs] [panic] kernel crash on md operation in ufs_dirb o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR o bin/135444 cperciva freebsd-update(8) failing should be more verbose f kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 sysinstall install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 jfv [igb] low speed routing between two igb interfaces o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe o usb/135206 usb machine reboots when inserted USB device f usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o bin/135159 portmgr [patch] pkg_delete(1) segfaults on empty @pkgdep lines s ports/135089 portmgr bsd.port.mk: Honor LOCALBASE for CFLAGS p kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o kern/134956 jfv [em] FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Se o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o kern/134922 ae [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 smh [patch] add information to truss(1) when tracing linux o conf/134918 rc [patch] rc.subr fails to detect perl daemons f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw s gnu/134604 [libgcc] [patch] Memory leak in gcclibs/libgomp o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o o bin/134569 [heimdal] krb5-config(1) does not return all libs nece o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134520 [ata] SAS HD not detected on LSI SAS1078 (Acer Altos R o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o kern/134391 [libc] dladdr(3) does effectively not work on main pro o bin/134389 cperciva portsnap(1): phttpget opens a new connections for ever o arm/134368 arm [new driver] [patch] nslu2_led driver for the LEDs on a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names s kern/134231 vwe [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi a kern/134225 [libexec] [patch] Reduce disk write load from save-ent o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o usb/134193 usb System freeze on usb MP3 player insertion f kern/134168 gavin [ral] ral driver problem on RT2525 2.4GHz transceiver o bin/134167 cperciva [request] freebsd-update(8) should be able to be run i o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] [patch] Adding usb quirk for Sony USB flash dr o kern/134079 jfv [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o bin/134022 host(1), dig(1) and nslookup(1) hang in _umtx_op sysca o kern/134011 [hang] swap_pager_getswapspace(4): failed o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133969 net [dummynet] [panic] Fatal trap 12: page fault while in o kern/133968 net [dummynet] [panic] dummynet kernel panic o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 adrian /usr/src/sys/dev/ath/if_ath.c:3414: error: 'const stru o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o bin/133860 [patch] lorder(1) misses symbols defined in read only o bin/133834 [patch] chat(8): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in o ports/133771 doceng print/ghostscript8: Ghostscript8-8.64 port not install f kern/133768 gavin [panic] MONITOR PANIC: vcpu-0:VMM64 DoubleFault src=MO o kern/133736 net [udp] ip_id not protected ... o kern/133732 pf [pf] max-src-conn issue o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [headers] net/bpf.h and netgraph/ng_message.h should i o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133595 net [panic] Kernel Panic at pcpu.h:195 s kern/133593 [ata] `atacontrol(8) spindown` won't affect disk until o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only o power/133503 ppc [sound] Sound stutter after switching ttys o kern/133495 [de] interface not properly initialized on boot o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o usb/133296 usb [rum] driver not working properly in hostap mode o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 edwin [patch] whois(1): add support for SLD whois server loo f kern/133213 net arp and sshd errors on 7.1-PRERELEASE p kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o conf/132851 net [patch] rc.conf(5): allow to setfib(1) for service run o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o bin/132845 geom [geom] [patch] ggated(8) does not close files opened a o docs/132839 doc [patch] Fix example script in ldap-auth article o bin/132798 pjd [patch] ggatec(8): ggated/ggatec connection slowdown p o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o bin/132735 Berkeley db: corrupted file has record with absurd siz o kern/132734 net [ifmib] [panic] panic in net/if_mib.c o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o docs/132718 doc [handbook] Information about adding a new mirror is ou o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o usb/132594 usb USB subsystem causes page fault and crashes o ports/132577 fjoe databases/oracle8-client: Appearence of connection (ph o ports/132576 delphij net/openldap24-server: multipying LDAP trees on the si o kern/132554 cy [ipfilter] There is no ippool start script/ipfilter ma f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo p conf/132483 hrs rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 hrs [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o kern/132331 fs [ufs] [lor] LOR ufs and syncer o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo p kern/132285 glebius [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o docs/132260 doc dhcpd(8) pid not stored in documented location o kern/132252 [ata] No CD/DVD devices found! o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 sysinstall [patch] add new 'docs' virtual category to sysinstall o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o kern/132107 glebius [carp] carp(4) advskew setting ignored when carp IP us o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o bin/132008 [patch] config(8) to allow using section/nosection in o kern/132001 [patch] [ixgb] driver update o docs/131918 doc [patch] Fixes for the BPF(4) man page o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte o kern/131784 [lor] triple LOR after hard reboot o kern/131781 net [ndis] ndis keeps dropping the link o kern/131776 net [wi] driver fails to init o bin/131774 cvs(1) commits files then aborts o ports/131758 itetcu net/tightvnc in a jail stopped working after multiple o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 cy [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp o bin/131598 cperciva freebsd-update(8) doesn't interact well with custom ke o kern/131597 [kernel] c++ exceptions very slow on FreeBSD 7.1/amd64 o usb/131583 usb [umass] Failure when detaching umass Device o ports/131579 kuriyama security/gnupg reads security/gnupg1 data incorrectly o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer o kern/131536 andre [netinet] [patch] kernel does allow manipulation of su o usb/131521 usb Registering Belkin UPS to usb_quirks.c o kern/131441 fs [unionfs] [nullfs] unionfs and/or nullfs not combineab o bin/131427 [patch] Add to fetch(1) an ability to limit a number o o bin/131415 geom [geli] keystrokes are unregulary sent to Geli when typ o docs/131370 keramida glabel(8): geom_label needs clarification in docs a bin/131369 delphij truss(1): truss -f fails to attach to child processes o bin/131365 net route(8): route add changes interpretation of network o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o bin/131359 cperciva freebsd-update(8): freebsd-update tag file not updated o bin/131358 cperciva freebsd-update(8): Update servers for freebsd-update a o kern/131353 geom [geom] gjournal(8) kernel lock o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o bin/131341 fs makefs: error "Bad file descriptor" on the mount poin o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o bin/131094 dhclient(8) sets wrong IP address f kern/131087 bschmidt [ipw] [panic] ipw / iwi - no sent/received packets; iw o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o bin/131013 pw(8) does not update NIS group file o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ f kern/130941 gavin [panic] [cd9660] [geom] unexpected crash due to page f o kern/130920 fs [msdosfs] cp(1) takes 100% CPU time while copying file o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130831 csh(1) core dumps after building libiconv-1.1x from s f kern/130820 net [ndis] wpa_supplicant(8) returns 'no space on device' o kern/130794 [ata] hw.ata.ata_dma_limit without any effect o kern/130749 des [libc] [patch] nscache.c/nscachedcli.c - return error o usb/130736 usb Page fault unplugging USB stick o kern/130726 [ata] DMA errors accessing multiple SATA channels o ports/130677 portmgr [exp-run] bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 sysinstall sysinstall(8): no IPV4 if answer "no" when "Do you wan o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 o conf/130555 cy [ipfilter] [rc.d] [patch] No good way to set ipfilter o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o bin/130504 [libc] Serious bug in regular expression library (rege a kern/130386 rwatson [patch] add locking for generic interface address mani o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 arundel Man page for top(1) needs explanation of CPU states o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa o kern/130286 [patch] hifn(4) changes o kern/130261 [kernel] [panic] kernel panic in/below sys_pipe.c:knli o bin/130251 nm(1): 'nm -C' doesn't demangle any 't' symbol names o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or o kern/130210 fs [nullfs] Error by check nullfs o usb/130208 usb Boot process severely hampered by umass0 error o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 brian [patch] ppp(8) fails to correctly set routes o usb/130122 usb [usb8] DVD drive detects as 'da' device o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o kern/130109 net [ipfw] Can not set fib for packets originated from loc f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree p kern/129861 glebius [pf] [patch] Argument names reversed in pf_table.c:_co o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi f usb/129766 usb [usb] [panic] plugging in usb modem HUAWEI E226 panics o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129713 [pci] pci-pci bridge quirk with ich7 chipset not handl o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di a docs/129684 trhodes gcache.8 man page missing o kern/129674 geom [geom] gjournal root did not mount on boot o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: f kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o bin/129541 [nis] passwd(1) cannot be forced to "yp" mode in some o kern/129517 net [ipsec] [panic] double fault / stack overflow f kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o kern/129488 fs [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o docs/129464 doc using packages system o bin/129431 cperciva freebsd-update(8) fetch fails because phttpget fails p o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y o bin/129378 csh(1) / tcsh(1) loses foreground process group [regre o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o kern/129352 yongari [xl] [patch] xl0 watchdog timeout o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o kern/129261 firewire [firewire] Kernel crash on boot with disconnected fire s bin/129248 [request] FreeBSD's syslog(8) can't support log encodi o kern/129245 geom [geom] gcache is more suitable for suffix based provid o kern/129231 fs [ufs] [patch] New UFS mount (norandom) option - mostly o kern/129219 net [ppp] Kernel panic when using kernel mode ppp o ports/129210 portmgr [patch] Instrument bsd.port.mk to detect unstripped bi o kern/129197 net [panic] 7.0 IP stack related panic o kern/129169 smh [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129053 [lor] lock order reversal with printf(9) syscons video o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements p bin/129014 gavin [regression] ftp(1) cannot bind to specific source IP o conf/128994 UPDATING falsly states DTrace bindings are built by de f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o threa/128922 threads threads hang with xorg running o bin/128886 ntpd(8): ntpd -L flag doesn't work s conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128840 jfv [igb] page fault under load with igb/LRO o java/128809 java JVM aborted when GNU RXTX write to serial port. p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o ports/128754 portmgr bsd.port.mk: implement master sites randomization f usb/128745 usb [zyd] zyd theoretically supported usb device makes ker o bin/128727 host(1) does not work properly with the -6 option o bin/128654 atacontrol(8) does not preserve rebuild status through o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128633 pjd [zfs] [lor] lock order reversal in zfs o conf/128632 security periodic 700.kernelmsg repeats messages p bin/128616 kientzle [patch] bsdtar(1) error message typo p misc/128610 kensmith [patch] /usr/src: the iso.1 target of make release do o kern/128608 imp [pccbb] [patch] add support for powering down and up C o bin/128605 [patch] dhclient(8) - security issue o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when p bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness f kern/128514 pjd [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o bin/128501 cperciva freebsd-update(8) does not work on netbooted machines o bin/128493 [patch] find(1) exits if -fstype test fails with EACCE o usb/128485 usb [umodem] [patch] Nokia N80 modem support o bin/128465 [request] mount_smbfs(8) does not support IPv6 o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o conf/128433 [patch] Add option to allow a full login when doing 's o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages f kern/128308 gavin [psm] psm0 cause page fault o kern/128304 vn_pollrecord(3) derefs NULL if v_addpollinfo() fails o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o bin/128295 net [patch] ifconfig(8) does not print TOE4 or TOE6 capabi o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = f threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top(1)/ps(1) w o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not f bin/128088 vwe who(1) not listing all logged in users. o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o kern/128035 [ata] unexpexted detach of external SATA drive s conf/128030 bz [ipsec] [request] Isn't it time to enable IPsec in GEN o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues a bin/127932 [unionfs] mkdir -p PATH fails if a directory in PATH i o kern/127930 ed auto-logout does not work p kern/127928 andre [tcp] [patch] TCP bandwidth gets squeezed every time t o kern/127927 mjacob [isp] isp(4) target driver crashes kernel when set up o usb/127926 usb [boot] USB Timeout during bootup o docs/127923 loader Please mention qemu in the FreeBSD Handbook o kern/127920 pf [pf] ipv6 and synproxy don't play well together s bin/127918 [ata] [request] [patch] ATA Security support for ataco o bin/127912 In theory, uncompress(1) may crash and SEGV f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o ports/127889 bdrewery ports-mgmt/portupgrade detects spurious failures and s o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion s docs/127844 doc Example code skeleton_capture_n.c in meteor(4) manpage o docs/127842 murray list of hardware devices missing from the relnotes o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o conf/127814 pf [pf] The flush in pf_reload in /etc/rc.d/pf does not w o kern/127787 fs [lor] [ufs] Three LORs: vfslock/devfs/vfslock, ufs/vfs o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. o kern/127553 [build] (errata) in kernel generic et al, device ural o usb/127543 gavin [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f kern/127528 net [icmp]: icmp socket receives icmp replies not owned by a ports/127496 office devel/icu 3.8.1_1 does not build when Danish locale is f kern/127492 pjd [zfs] System hang on ZFS input-output o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c p kern/127439 glebius [pf] deadlock in pf o kern/127420 geom [geom] [gjournal] [panic] Journal overflow on gmirrore o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p kern/127360 net [socket] TOE socket options missing from sosetopt() o docs/127359 keramida Undocumented firewall_xxx options for rc.conf in stabl o i386/127343 i386 [hang] System locks -- simular to PR 123729 o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped p bin/127276 markj [patch] ldd(1) invokes linux yes o bin/127270 fs fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o usb/127248 usb [ucom] panic while uplcom devices attach and detach o kern/127233 cy [ipfilter]: ipnat + ipfilter source routing not handli o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o bin/127192 net routed(8) removes the secondary alias IP of interface f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode s bin/127056 lp(1) doesn't use -o options p kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o kern/126973 fs [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed p kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o kern/126874 net [vlan]: Zebra problem if ifconfig vlanX destroy o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 sysinstall sysinstall(8) During install if initial name look-up f o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be p kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 jfv [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 o kern/126553 fs [unionfs] unionfs move directory problem 2 (files appe o bin/126546 des pam_nologin(8) in auth causes log spam o usb/126519 usb [usb] [panic] panic when plugging in an iphone o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o bin/126433 [patch] some missing checks in rm(1) o kern/126419 [ar] Fails to boot from RAID10 volume under the Intel o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126384 [request] find(1) doesn't support whiteout entries yet o kern/126339 net [ipw] ipw driver drops the connection o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o bin/126301 portmgr pkg_version(1) can induce unexpected parsing of INDEX o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/126230 [libc] select(2) causing weird process cpu usage and l o kern/126142 [ata] M5281: READ DMA faults, device detaching o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom o ports/126083 office textproc/aspell core dumps o kern/126075 net [inet] [patch] internet control accesses beyond end of o bin/125932 portmgr pkg_add(1) doesn't prompt for root credentials and the o bin/125922 net [patch] Deadlock in arp(8) o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/125895 fs [ffs] [panic] kernel: panic: ffs_blkfree: freeing free o i386/125880 imp [cardbus] Cardbus cards Don't function on TI PCIxx12 C o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard p kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125769 [ses] [panic] getencstat(8) panics system with "Sleepi o kern/125759 [ar] Fatal Trap 12 when ICH9R RAID becomes degraded s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o stand/125751 standards man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS p usb/125736 thompsa [ukbd] [hang] system hangs after AT keyboard detect if o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o docs/125717 keramida minor wpa_supplicant.conf(5) buglet o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o bin/125707 [patch] powerd(8): force a method of battery state que o kern/125704 [ng_nat] kernel libalias: repeatable panic o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 wireless [ath] [panic] ath(4) related panic a kern/125613 trasz [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125496 [ar] [patch] free memory on ataraid module unload o kern/125467 pf [pf] pf keep state bug while handling sessions between o kern/125454 [digi] [patch] device digi (PC/Xe 64K 16 ports) not wo f usb/125450 usb [panic] Removing USB flash card while being accessed c o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o kern/125258 net [socket] socket's SO_REUSEADDR option does not work o kern/125239 net [gre] kernel crash when using gre o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o conf/125041 [patch] periodic(8) new file: /etc/periodic/security/8 o ports/125012 bf problems in math/ldouble for 128bit long double on i38 o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o gnu/124970 gdb(1): gdb crashes after setting hardware watchpoint o kern/124969 geom gvinum(8): gvinum raid5 plex does not detect missing s o kern/124963 alc [vm] [patch] old pagezero fixes for alc s kern/124933 pf [pf] [ip6] pf does not support (drops) IPv6 fragmented o kern/124908 rwatson [socket] kernel performs inadequate check for incorrec o kern/124904 yongari [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/124881 [devfs] [patch] [request] Add possibility to check whi o stand/124860 standards flockfile(3) doesn't work when the memory has been exh o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o ports/124765 ume sysutils/gkrellm2 shows wrong number of users in proc o usb/124758 usb [rum] [panic] rum panics SMP kernel o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o conf/124747 rc [patch] savecore can't create dump from encrypted swap a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o usb/124708 usb [panic] Kernel panic on USB KVM reattach o kern/124670 [ata] large file operation on RAID cause many GEOM err o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o bin/124409 fsck(8) requires exact entry for mountpoints when exec o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 net [ndis] [patch] ndis network driver sometimes loses net o kern/124160 net [libc] connect(2) function loops indefinitely o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o bin/124119 edwin locate(1) doesn't check /etc/locate.rc for the default o bin/124084 find(1): find -execdir does not prepend ./ to filename o bin/124049 ntpd(8): ntpd is crashing at startup o kern/124021 net [ip6] [panic] page fault in nd6_output() o i386/123990 i386 [boot] BTX halted on Thinkpad x60s f i386/123981 re [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i p bin/123977 Segmentation fault in dialog(1) with ghostscript-gpl-n o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o kern/123968 net [rum] [panic] rum driver causes kernel panic with WPA. o kern/123962 geom [panic] [gjournal] gjournal (455Gb data, 8Gb journal), o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high a kern/123904 [ipmi] ipmi(4) reports negative temperature values on o kern/123892 net [tap] [patch] No buffer space available o kern/123890 net [ppp] [panic] crash & reboot on work with PPP low-spee o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123858 net [stf] [patch] stf not usable behind a NAT o kern/123855 philip moused(8): spontaneous mouse events o kern/123796 cy [ipfilter] FreeBSD 6.1+VPN+ipnat+ipf: port mapping doe o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o kern/123758 net [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat() fails to return ESTALE with rename()d fi o kern/123735 [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l f kern/123674 scsi [ahc] ahc driver dumping o bin/123633 net ifconfig(8) doesn't set inet and ether address in one f kern/123617 andre [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o kern/123603 andre [tcp] tcp_do_segment and Received duplicate SYN o bin/123574 fs [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries o kern/123559 net [iwi] iwi periodically disassociates/associates [regre o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o misc/123554 [build] buildworld with TARGET_ARCH=i386 fails on amd6 o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 a ports/123468 itetcu mail/postgrey: information leak, privacy issue o bin/123465 net [ip6] route(8): route add -inet6 -interfac o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool o misc/123452 brd trustedbsd-audit email list not archiving o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [patch] Mk/bsd.port.mk - Add extended description to O o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected o kern/123122 geom [geom] GEOM / gjournal kernel lock f docs/123038 trhodes [patch] update to projects/c99/index.sgml o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a f kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/122954 net [lagg] IPv6 EUI64 incorrectly chosen for lagg devices o kern/122951 firewire [firewire] video-transfer via fwcontrol triggers a pan o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o kern/122928 jfv [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f kern/122888 pjd [zfs] zfs hang w/ prefetch on, zil off while running t a i386/122887 acpi [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o conf/122883 [patch] login class for ukrainian users accounts f kern/122880 vwe [hang] Kernel lock-up during 7.0 installation disc boo o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o kern/122838 jh [devfs] devfs doesn't handle complex paths (like zvol/ f kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge o kern/122773 pf [pf] pf doesn't log uid or pid when configured to o kern/122772 jfv [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [hang] access to non-existent sio port /dev/cuaa o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE o bin/122652 [patch] du(1) support for inode count a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o ports/122524 demon www/links1 uses 7-bit us-ascii codepage only when usin o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o java/122513 java native JDKs unbuildable with Linux ones f kern/122493 gavin [boot] BTX Halted - Cause is Promise Fastrack SATA PCI o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122445 Unable to override EDITOR in /etc/profile due to defau o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em] unable to receive on em 82542 w/o promisc o kern/122321 [mpt] Hitachi SCSI drive can't be written to o kern/122319 net [wi] imposible to enable ad-hoc demo mode with Orinoco f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e o kern/122290 net [netgraph] [panic] Netgraph related "kmem_map too smal o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini f kern/122082 rwatson [tcp] NULL pointer dereference in in_pcbdrop o kern/122067 geom [geom] [panic] Geom crashed during boot f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/122058 jfv [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o kern/122033 net [ral] [lor] Lock order reversal in ral0 at bootup ieee o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf f kern/121962 [sound] [snd_emu10k1] [panic] Kernel panics with devic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl s kern/121807 ipfw [request] TCP and UDP port_table in ipfw s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/121761 [cardbus] [dc] a cardbus dc0 causes a system freeze wh o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't o kern/121759 [cardbus] [dc] cardbus dc0 initialization failure at o o ports/121745 vd misc/ossp-uuid - PostgreSQL contrib ossp-uuid crashes o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc o i386/121675 mav [ata] incorrect fallback to udma33 with CF memory inst f kern/121660 adrian [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o kern/121642 bz [ipsec] [gif]: When using IPSec, tcpdump shows non-dec o kern/121624 jfv [em] [regression] Intel em WOL fails after upgrade to o docs/121585 doc [handbook] Wrong multicast specification o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a docs/121565 brooks dhcp-options(5) manpage incorrectly formatted omitting o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net s docs/121541 doc [request] no man pages for wlan_scan_ap o kern/121534 net [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121443 net [gif] [lor] icmp6_input/nd6_lookup o docs/121440 keramida rc(8) and rcorder(8) unclear about PROVIDE keyword bei o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121385 fs [unionfs] unionfs cross mount -> kernel panic o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] [security] ppp(8): fix local stack overflow in o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o kern/121298 jfv [em] [panic] Fatal trap 12: page fault while in kernel o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o kern/121274 cy [ipfilter] [gif] Panic in ether_input() with different o kern/121257 net [tcp] TSO + natd -> slow outgoing tcp traffic o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o kern/121181 net [panic] Fatal trap 3: breakpoint instruction fault whi o kern/121174 [ral] if_ral loses performance in FreeBSD 7 (RELENG_7) o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o usb/121169 usb [umass] Issues with usb mp3 player o bin/121165 pkg_add(1) prints a weird message: PKG_TMPDIR environm o i386/121148 gavin [panic] Repeatable sysctl crash (Fatal Trap 12) with A a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa p kern/121122 melifaro [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o bin/121072 fs [smbfs] mount_smbfs(8) cannot normally convert the cha p conf/121064 dteske [patch] Use ASCII characters for box/line characters i o kern/121061 wireless [ath] [panic] panic while ejecting ath(4)-adapter duri o bin/121059 ntpd(8) doesn't sync with servers after dhclient chang o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120966 net [rum] kernel panic with if_rum and WPA encryption s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn f usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/120749 [request] Suggest upping the default kern.ps_arg_cache o kern/120733 cperciva libbsm.so.1 missing after upgrading to 6.3-RELEASE o usb/120729 usb [panic] fault while in kernel mode with connecting USB a misc/120608 gmirror(8) command set on livecd is minimal [regressio o kern/120566 net [request]: ifconfig(8) make order of arguments more fr o bin/120552 cperciva freebsd-update(8): freebsd-update - -r should check ex o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120483 fs [ntfs] [patch] NTFS filesystem locking changes o kern/120482 fs [ntfs] [patch] Sync style changes between NetBSD and F o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o conf/120406 usb [devd] [patch] Handle newly attached pcm devices (eg. o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120296 [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120270 [crypto] [patch] AES-192 and AES-256 support for HW-ac o kern/120266 net [udp] [panic] gnugk causes kernel panic when closing U o conf/120263 [patch] 800.loginfail misses relevant security informa o kern/120177 [ata] ATA DMA modes don't work on CF cards p kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o ports/120101 cy security/krb5 utilities link against wrong libcom_err o bin/120095 gdb(1) fails to catch signals when threading is involv o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120066 [geli] geli boot password input fail when using serial o bin/120064 routed(8) marks 802.11 interfaces broken o bin/120060 net routed(8) deletes link-level routes in the presence of o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o docs/120024 doc resolver(5) and hosts(5) need updated for IPv6 o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119945 net [rum] [panic] rum device in hostap mode, cause kernel o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119891 slow halt, reboot when remote network shares which doe o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 a conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o kern/119842 jail [smbfs] [jail] "Bad address" with smbfs inside a jail o kern/119838 [ata] udma100 enabled althrough improper cable on nVid o i386/119809 gavin [virtualpc] MS Virtual PC 2007 - Install hung - Trying o bin/119801 dhclient(8): dhclient changes alias to address o kern/119791 net [nfs] UDP NFS mount of aliased IP addresses from a Sol o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch s bin/119645 [request] mount_ntfs(8) -- files permissions mask is i o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o kern/119618 [fdc] Double Density Disks do not work correctly o kern/119617 net [nfs] nfs error on wpa network when reseting/shutdown o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 firewire [sbp] PowerBook not accessable when in target mode o conf/119550 [ppp] ppp not starting during bootup. o docs/119545 doc books/arch-handbook/usb/chapter.sgml formatting o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119432 net [arp] route add -host -iface causes arp e o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o kern/119293 [gbde] gbde swap encryption forces gmirror to rebuild o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119225 net [wi] 7.0-RC1 no carrier with Prism 2.5 wifi card [regr o kern/119205 peterj [dc] [patch] Collect various stats regarding dc(4) int o kern/119197 [psm]: PS/2 mouse doesn't work under FreeBSD i386 7.0 s bin/119196 des fetch(1): [request] parallel download from multiple se o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/119068 dd(1) yields a bogus error when input file is to small o java/119063 java An unexpected error has been detected by Java Runtime o kern/118927 jfv [em] em(4) broken: link state changed to DOWN (/UP), l o kern/118912 fs [2tb] disk sizing/geometry problem with large array o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118734 xen [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 fs [minidump] [patch] Display media size required for a k o kern/118695 jfv [em] device polling + vlan causes panic on "em" interf o docs/118693 jfv Update for "em" man page for RELENG_7 o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o bin/118449 sysinstall sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP o gnu/118415 nm -D fails if a file has no symbols o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o docs/118332 arundel man page for top(1) does not describe STATE column wai o bin/118325 rc [patch] [request] new periodic script to test statuses o kern/118318 fs [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 [patch] ndiscvt(8): sort a output format. o bin/118296 [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. f conf/118255 rc savecore never finding kernel core dumps (rcorder prob o bin/118249 fs [ufs] mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag s kern/118230 acm [linux] games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o kern/118161 [atapicam] failure message from ATAPI CDROM in the boo s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 fs [nfs] [patch] Poor NFS server write performance s kern/118124 [request] HZ value on slow computers should by dynamic o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 ak [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o kern/118107 fs [ntfs] [panic] Kernel panic when accessing a file at N o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t o bin/118069 [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118021 sysinstall [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro p kern/118005 andre [tcp] Can No Longer SSH into 7.0 host a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117972 [ata] SATA DLT V4 not recognized properly o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 fs [ufs] dirhash on very large directories blocks the mac o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS f conf/117935 rc [patch] ppp fails to start at boot because of missing o kern/117926 jfv [em] Intel S5000-based mobo, em driver does not attach o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP o bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive o kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang p bin/117687 stefanf [patch] fstab(5) format cannot handle spaces o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o gnu/117481 sort(1) incorrect numeric sort in very specific cases p kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o kern/117423 net [vlan] Duplicate IP on different interfaces o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o kern/117420 jeff [sched_ule] round off in sched_balance_pair() o kern/117374 vidcontrol(1) videomode: Operation not supported by de o kern/117348 [libedit] Loading history file sometimes fails in libe o bin/117339 net [patch] route(8): loading routing management commands o bin/117315 fs [smbfs] mount_smbfs(8) and related options can't mount o usb/117313 usb [umass] [panic] panic on usb camera insertion o kern/117242 [syscons] [hang] console hangs when powerd is adaptive o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o kern/117158 fs [zfs] zpool scrub causes panic if geli vdevs detach on f usb/117150 usb [zyd] usb zyd device under moderate load panics system o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o kern/117043 jfv [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM p kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o misc/116946 holographic shell breaks live CD shell o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta o docs/116588 doc No IPFW tables or dummynet in Handbook o kern/116583 fs [ffs] [hang] System freezes for short time when using o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi a kern/116335 andre [tcp] Excessive TCP window updates s bin/116302 [ataraid] atacontrol(8) reports wrong stripe for intel o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 s ports/116222 portmgr files installed with the wrong UID/GID via make instal o kern/116185 net [iwi] if_iwi driver leads system to reboot o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o stand/116081 standards make does not work with the directive sinclude o docs/116080 doc PREFIX is documented, but not the more important LOCAL o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o kern/116005 des [libfetch] libfetch accepts invalid URLs o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on mail/dspam o bin/115951 [tun] pppoed(8): tun not closed after client abruptly o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o kern/115930 jfv [em] Dell nic enumeration problem s conf/115923 [request] rc.subr - logger should be using priorities o kern/115856 geom [geli] ZFS thought it was degraded when it should have s docs/115716 jhb remove cue from supported hardware list o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o kern/115479 [ata] [request] ASUS P5K SE need more support o bin/115431 [patch] [request] improvement to split(1): add -B swit o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o kern/115253 [keyboard] Wireless keyboard not working at boot o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o bin/115054 ntpd(8): NTP errors out on startup but restart of NTP o kern/115019 net [netgraph] ng_ether upper hook packet flow stops on ad o kern/115002 net [wi] if_wi timeout. failed allocation (busy bit). ifco o kern/114970 Wrong system time (last) when machine is crashed due t o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o kern/114928 green_saver does not switch DVI monitor power off o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala f kern/114808 [panic] Kernel panic when use USB SpeedTouch ADSL mode o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114506 [nfs] nfs_readdirrpc doesn't use copyout to write out o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o bin/114468 fs [patch] [request] add -d option to umount(8) to detach p bin/114465 brian [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references o kern/114213 [ata] optical drive not detected in the 6.x series of o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o kern/114155 [ptrace] sigsuspend gets interrupted by ptrace o docs/114139 doc mbuf(9) has misleading comments on M_DONTWAIT and M_TR a bin/114082 arundel [make.conf] [patch] default CFLAGS have a blank at the s bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113977 gavin [request] Need a way to set mode of USB disk's write c f conf/113915 rc [ndis] [patch] ndis wireless driver fails to associate o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o bin/113850 sshd(8): unable to debug sshd with strace/truss/gdb o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113837 geom [geom] unable to access 1024 sector size storage o bin/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o kern/113785 firewire [firewire] dropouts when playing DV on firewire o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113432 net [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113419 geom [geom] geom fox multipathing not failing back o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o kern/113256 [headers] _limits.h for some CPU has wrong definitions o bin/113230 des [pam] [patch] const-ify PAM-headers o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o kern/113098 [amr] Cannot read from amrd while under heavy load o bin/113074 [patch] ppp(8): include for strcasecmp(3) o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o docs/112804 doceng groff(1) command should be called to explicitly use "p o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o ports/112745 portmgr bsd.port.mk: Add a package-smart target o kern/112722 net [ipsec] [udp] IP v4 udp fragmented packet reject o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o bin/112673 portmgr [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o docs/112579 doc [request] No ipv6 related pf examples in /usr/share/ex o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112528 net [nfs] NFS over TCP under load hangs with "impossible p o kern/112477 marius [ofw] [patch] Add support to set the node and type on o bin/112408 mp [regression] tcsh(1): tcsh causes gdb to hang (regress o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, o bin/112370 getfacl(1): incorrect display group name by ``getfacl' o bin/112336 [patch] install(1): install -S (safe copy) with -C or s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system o kern/112160 [pppd] uplink DSL w/pppoe+NAT 'out of buffer space' ki o kern/112053 [hang] deadlock with almost full filesystem and rtorre o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111848 [nfs] removing a file from a diskless nfs mounted root o kern/111843 fs [msdosfs] Long Names of files are incorrectly created s www/111791 www FreeBSD website messes up while using "links" browser o kern/111782 fs [ufs] dump(8) fails horribly for large filesystems o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/111766 [panic] "panic: ffs_blkfree: freeing free block" durin o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 net [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o kern/111457 net [ral] ral(4) freeze o docs/111425 doc Missing chunks of text in historical manpages o ports/111399 doceng print/ghostscript8 (was ghostscript-gpl): WITH_FT_BRID o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o kern/111185 console color depth set to 0 at boot causes flat scree o kern/111162 [nfs] nfs_getpages does not restart interrupted system s bin/111146 fs [2tb] fsck(8) fails on 6T filesystem o bin/111077 date(1): /bin/date -j -f "%b %Y" "Feb 2007" +%m return s bin/111024 [request] [patch] [ata] atacontrol(8): support for sta s kern/111001 [hang] can't install 6.2-RELEASE-amd64 (SuperMicro PDS o docs/110999 doc carp(4) should document unsupported interface types o kern/110995 [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o gnu/110971 gdb(1) crashes f kern/110959 bz [ipsec] Filtering incoming packets with enc0 does not o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o docs/110692 doc wi(4) man page doesn't say WPA is not supported a kern/110662 [safe] safenet driver causes kernel panic o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 net [if_ethersubr] Invalid Assumption in SIOCSIFADDR in et o kern/110249 net [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 joerg [patch] [request] Allow arbitrary gdb(1) options to by o kern/110065 [wi]: wi device cannot attach to D-Link DWL-520 rev. E o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o docs/109977 doc No manual entry for ksu o docs/109972 doc No manual entry for zless/bzless o bin/109911 mountd(8) does not accept identical host sets on diffe o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109736 [ata] FreeBSD install from CD can't find & mount NEC A a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o bin/109569 mail(1) command not parsing sendmail parameters o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o bin/109478 [libc] [patch] adopt reentrant syslog functions from O o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 portmgr pkg_add(1) using chroot exits with error if wrong dire o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109227 [ral] ral(4) driver doesn't handle correctly RT2561C P f docs/109226 doc [request] No manual entry for sntp o docs/109201 doc [request]: manual for callbootd o kern/109161 philip [psm] synaptic touchpad doesn't work o docs/109105 trhodes security.mac.bsdextended.firstmatch_enabled is not ena o docs/109104 trhodes man mac_bsdextended is not consistent with systl outpu o bin/109102 csjp sysctl security.mac.bsdextended is not consistent with o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) a docs/108980 doc list of missing man pages o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] o kern/108670 silby [tcp] TCP connection ETIMEDOUT o kern/108659 [psm] Mouse (Synaptics touchpad) cursor freezes for so o conf/108589 rc rtsol(8) fails due to default ipfw rules o bin/108462 [request] pkg_info(1) shouldn't have a hard width limi s kern/108442 [request] UTF-8 support for console o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer f kern/108197 net [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108153 portmgr ports extraction with package uid/gid and quota proble o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o bin/108118 [libc] files should not cache their EOF status o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w s kern/107759 Unable to load a kernel after clean install o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f kern/107446 gavin problems with usb and fw disks o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o kern/107154 [pam] pam.d/sshd pam_ssh.so doesn't start ssh-agent s sparc/107087 sparc64 [hang] system is hung during boot from CD o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip p kern/106722 melifaro [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o kern/106632 trhodes [msdosfs] gimp destroys files on fat32 upon opening s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o ports/106483 portmgr [patch] embed distfile information in +CONTENTS o kern/106444 net [netgraph] [panic] Kernel Panic on Binding to an ip to o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o kern/105945 net Address can disappear from network interface s kern/105943 net Network stack may modify read-only mbuf chain copies o bin/105925 net problems with ifconfig(8) and vlan(4) [regression] o bin/105860 top(1) user ID misalignment in mixer username/uid mode f conf/105689 rc [ppp] [request] syslogd starts too late at boot o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o docs/105608 doc fdc(4) debugging description staled o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 hiren [acpi] problems in acpi on HP Compaq nc6320 o kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105368 [geli] geli passphrase prompt malfunctioning when moun f kern/105348 wireless [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 blackend [patch] Base selection in events in libcommon.xsl does o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue f conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o kern/104978 jfv [em] jumbo frames has been broken in RELENG_6 by last s kern/104950 [ata] [request] no support for SATA controller Initio p bin/104921 melifaro [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o ports/104910 nobutaka portsdb -Uu fails on building lsdb when EMACS_NAME is o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o docs/104879 doc Howto: Listen to IMA ADPCM .wav files on FreeBSD box o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104751 net [netgraph] kernel panic, when getting info about my tr o bin/104746 [patch] traceroute(8): 'traceroute -e -P TCP' cannot w o kern/104738 net [inet] [patch] Reentrant problem with inet_ntoa in the o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input o bin/104553 [patch] [request] Add login group support to login.acc f conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104486 TI1131 Cardbus Bridge cannot detect card insertion on o bin/104432 jilles sh(1): remove undocumented "exp" and "let" builtins o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems a bin/104092 keramida [patch] iostat(8): missing blanks in iostat output o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o bin/103890 w(1) doesn't see sessreg'd entries in utmp o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra a bin/103873 csjp login(1) SEGFAULT on unsuccessful login o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o conf/103794 adding other login class to login.conf in case one is o bin/103762 ppp(8): some tun interfaces with a mtu of 1500 while i o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of s kern/103578 [ums] ums does not recognize mouse buttons s www/103522 www Search interface oddity o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103256 jfv [em] em0: watchdog timeout -- resetting (6.1-STABLE) o kern/103253 thompsa inconsistent behaviour in arp reply of a bridge o kern/103250 [puc] puc failed to attach sio ports when loaded as mo o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul o bin/102793 edwin [patch] [request] top(1): display feature of current C o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o i386/102617 vwe [smbfs] [editors/ooo] 7 x "smb_maperror: Unmapped erro o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o bin/102609 [patch] Add filtering capability to date(1) o kern/102540 net [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight p kern/102471 melifaro [ipfw] [patch] add tos and dscp support o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o bin/102232 gad Defects in -O option to ps(1) o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd o usb/102066 n_hibma [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 cy [ipfilter] [panic] Kernel Panic Trap No 12 Page Fault o bin/101921 [request] security.bsd.see_other_uids for further prog o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/101324 fs [smbfs] smbfs sometimes not case sensitive when it's s o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 doc serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o bin/100805 WITHOUT_INET6 is ignored by many src/ components o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/100687 [psm] psm problem (?): touchpad hangs, then move supe o conf/100616 [patch] syslog.conf: lines after exclamation point ign o kern/100519 net [netisr] suggestion to fix suboptimal network polling a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100442 obrien ftpd(8): lukemftpd core dumps on anonymous login o bin/100436 kensmith sysinstall(8): live CD fixit mount does not find mount o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o kern/100219 bz [ip6] IPV6_PKTOPTIONS and possible mbuf exhaustion. o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o misc/100133 [boot] keyhit function in boot2.c that falls into an i o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 systat(1): systat -ifstat traffic counter overflow o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o misc/99643 request to remove src/tools/tools/portsinfo because it o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s kern/99421 [request] Option Globetrotter Fusion card not recogniz a docs/99356 ru man page of sendmsg(2) does not include EINVAL o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister [request] send-pr.html is frustrating/broken o kern/99290 fs [ntfs] mount_ntfs ignorant of cluster sizes o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l a www/99184 wosch Viewing HP-UX manpages with http://www.freebsd.org/cgi o gnu/99173 [patch] replace gnu patch with a bsd-licensed one. o kern/98978 cy [ipfilter] [patch] ipfilter drops OOW packets under 6. o docs/98974 doc Missing tunables in loader(8) manpage o kern/98962 mav [ata] [burncd]: [patch] writing >1 session on ATAPI CD o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the s www/98798 gjb Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98622 bz [carp] carp with IPv6 broken on 6.1 (regression) o kern/98597 net [inet6] Bug in FreeBSD 6.1 IPv6 link-local DAD procedu o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 s bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working s kern/98162 adrian [new driver] [request] AcerHK driver port needed for e o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/97505 [procfs] file entry of procfs points to "unknown" s bin/97498 fs [request] newfs(8) has no option to clear the first 12 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 fs [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97306 net [netgraph] NG_L2TP locks after connection with failed s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. s kern/97266 [fdc] System hangs at kernel time after boot: /dev/fd0 o kern/97208 firewire [firewire] System hangs / locks up when a firewire dis o usb/97175 usb [umass] [hang] USB cardreader hangs system o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o conf/97014 net [gif] gifconfig_gif? in rc.conf does not recognize IPv o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/96999 [procfs] [patch] procfs reports incorrect information f kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re a bin/96840 [libc] [patch] getgrent() does not return large groups o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96538 multimedia [sound] emu10k1-driver inverts channels o usb/96457 usb [umass] [panic] fatback on umass = reboot o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/96346 [modules] [patch] disable build of modules that are al f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o docs/96207 doc Comments of a sockaddr_un structure could confuse one o kern/96171 [ata] burncd(8): (ATA driver) fails to write in vcd mo s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse f gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o kern/95559 RELENG_6: write(2) fails with EPERM on TCP socket unde o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95459 Rebooting the system while rebuilding RAID (Intel Matr o docs/95408 doc install over serial console does not work as documente o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo a kern/95307 vanhu [ipsec] Panic (race condition?) in ipsec_process_done o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95267 net packet drops periodically appear o kern/95222 fs [cd9660] File sections on ISO9660 level 3 CDs ignored o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o usb/95037 usb [umass] USB disk not recognized on hot-plug. o bin/95002 [libc] hash db source code has a bug which prevents us o kern/94978 [pam] pam_opie module option without "no_fake_prompts" o ports/94935 cy security/aide: propose an AIDE_CONF knob for make.conf o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o bin/94810 fs fsck(8) incorrectly reports 'file system marked clean' o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o kern/94733 fs [smbfs] smbfs may cause double unlock o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o gnu/94695 bugmeister send-pr.el is missing from send-pr distribution o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o kern/94632 geom [geom] Kernel output resets input while GELI asks for o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/94393 [ar] PseudoRAID loses track of the master disk o usb/94384 usb [panic] kernel panic with usb2 hardware o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/94273 bz [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o bin/94252 [rpc] rpc.lockd cannot cancel lock requests s kern/94182 [altq] [request] altq support for vlan driver o kern/94166 [boot] btx halted with a flashcard plugged s bin/94159 [request] ipsecctl ported from openbsd o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94051 login(1): IP network in login.access ignored unless DN o bin/94032 portmgr [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/93872 [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o kern/93825 pf [pf] pf reply-to doesn't work o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o kern/93790 [cpufreq] cpufreq missing frequencies o i386/93787 gavin [hang] freebsd 6.0 hangs on atkbd0 on Proliant 1850r s o docs/93785 obrien The man page for ftpchroot(5)/ftpusers(5) contradicts o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93629 GNU sort(1) tool dumps core within non-regular locale o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93019 net [ppp] ppp and tunX problems: no traffic after restarti o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/92880 net [libc] [patch] almost rewritten inet_network(3) functi o bin/92866 portmgr pkg_add(1) should return a different result code if pa o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92716 [hifn] [hang] hifn driver hangs after a short while wh o kern/92690 silby [tcp] slowstart_flightsize ignored in 6-STABLE o docs/92626 doc jail manpage should mention disabling some periodic sc f conf/92523 rc [patch] allow rc scripts to kill process after a timeo o kern/92518 [hptmv] Intense disk activity (large FS newfs and/or m o kern/92512 multimedia [sound] distorted mono output with emu10k1 s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per s kern/92279 net [dc] Core faults everytime I reboot, possible NIC issu o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna o kern/92270 net [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o kern/92104 des [panic] kernel panic near readlink syscall o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o bin/91993 dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91908 cy [ipfilter] loading ipl.ko to the kernel compiled with o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg f usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " s kern/91777 cy [ipfilter] [patch] wrong behaviour with skip rule insi o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o bin/91606 sha1(1): sha1 /dev is suspended o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work p www/91539 gjb FreeBSD web site renders very badly o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o bin/91536 burncd(8): burncd -t feature strangeness f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o ports/91393 trhodes misc/window changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91339 [psm] mousedriver do not recognize aditional buttons o o kern/91311 net [aue] aue interface hanging o bin/91299 [patch] add ftpd(8) SITE SHA256 command o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o docs/91149 doc read(2) can return EINVAL for unaligned access to bloc o kern/91134 fs [smbfs] [patch] Preserve access and modification time a conf/91106 versus [locale] date definitions in pl_PL locale are wrong f bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o bin/90690 [patch] ps(1) errorneously respects terminal column se o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o bin/90524 reset(1) doesn't fully restore terminal state s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o bin/90266 philip bsnmpd(1) returns bad data during a snmpwalk of the en o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90093 geom fdisk(8) incapable of altering in-core geometry s bin/90082 [syscons] [patch] curses ACS line graphics support for o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89959 brooks dhclient(8): dhcp: ip length 314 disagrees with bytes o usb/89954 usb [umass] [panic] USB Disk driver race condition? o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o kern/89775 [kqueue] [hang] kevent hangs on second wait for /dev/d o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. o bin/89403 fetch(1) doesn't honour authentication credentials whe o bin/89326 [patch] Add pattern matching to login.access(5) o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89166 [mouse] jumpy mouse movement a conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 sysinstall sysinstall(8): sysinstall infinity wait for da0 o bin/88821 pjd [patch] IPv6 support for ggated(8) o bin/88780 [patch] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o kern/88657 fs [smbfs] windows client hang when browsing a samba shar o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( o kern/88555 fs [panic] ffs_blkfree: freeing free frag on AMD 64 o kern/88518 cannot mount root rw at boot o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88450 andre SYN+ACK reports strange size of window o usb/88408 usb [axe] axe0 read PHY failed o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88182 [ural] [wep] wep is broken in ural(4) hostap mode o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 fs [patch] newfs(8): introduce -A flag for newfs to enabl o docs/87936 doc Handbook chapter on NIS/YP lacks good information on a o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo s bin/87529 [request] pw(8): "pw lock", "pw unlock" should support o kern/87521 cy [ipfilter] [panic] using ipfilter "auth" keyword leads o kern/87515 Splash screen fails to load on boot o kern/87421 net [netgraph] [panic]: ng_ether + ng_eiface + if_bridge s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o ports/87397 edwin [patch] incorrect use of PAPERSIZE make variable in so f kern/87368 bde [msdosfs] fat32 is very slow f usb/87224 usb [usb] Cannot mount USB Zip750 o www/87119 hrs [patch] encode copyright and such symbolically o kern/87074 pf [pf] pf does not log dropped packets when max-* statef o bin/87022 telnet(1) hang in ptcout o kern/87010 pjd Reading kernel memory & pagefault under non-root o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/86871 net [tcp] [patch] allocation logic for PCBs in TIME_WAIT s s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the a kern/86752 pf [pf] pf does not use default timeouts when reloading c o bin/86665 sysinstall sysinstall(8): sysinstall binary upgrade clobbers name o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o kern/86619 emulation [linux] linux emulator interacts oddly with cp o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o kern/86427 net [lor] Deadlock with FASTIPSEC and nat o bin/86405 more(1) segmentation fault o bin/86388 geom [geom] [geom_part] periodic(8) daily should backup gpa s kern/86319 [nfs] [request] support a "noac" NFS mount flag to tur o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86103 cy [ipfilter] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 cy [ipfilter] panic: mutex "ipf state entry" already init o kern/85780 net 'panic: bogus refcnt 0' in routing/ipv6 o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou f i386/85656 jhb [i386] [patch] expose more i386 specific CPU informati f i386/85655 jhb [i386] [patch] expose cpu info for i386 systems o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o bin/85494 fs fsck_ffs: unchecked use of cg_inosused macro etc. o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device o bin/85011 restore(8) on 5.4 will not read Solaris-sparc dumps, w o kern/84981 [headers] [patch] header protection for with aroun o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o bin/77651 [patch] init(8) can lose shutdown related signals o kern/77341 net [ip6] problems with IPV6 implementation o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 cy [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 sysinstall sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 [kernel] [patch] 64-bit integer overflow computing use o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o bin/76590 adding -mapall in nfs exports requires reboot o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76504 silby Keep-alives doesn't work on half-closed sockets. s conf/76491 Addition into /etc/security few new functions o kern/76398 [libc] stdio can lose data in the presence of signals o bin/76362 [patch] sys directory link points to wrong location o bin/76134 fetch(1) doesn't like 401 errors with -A o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic o ports/75464 bapt [patch] bsd.port.mk install default configuration file s kern/75407 net [an] an(4): no carrier after short time o bin/75378 login(1): login/wtmp/utmp not updating properly o bin/75362 mount_smbfs(8) No buffer space available s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o bin/75177 philip Bug selecting psm operation level in moused(8) o kern/75157 Cannot print to /dev/lpt0 with HP Laserjet 1005 : Devi o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula o kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 gifs? s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod o kern/74827 [fdc] Problem writing data to floppies o kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 fs Background-fsck checks one filesystem twice and omits s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o conf/74610 Hostname resolution failure causes firewall rules to s s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma s kern/74352 NFSCLIENT and booting to an mfsroot via TFTP are mutua o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection s kern/74242 rwatson Write to fifo with no reader fails in 6.0 current o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o conf/74213 cy [ipfilter] [patch] Connect src/etc/periodic/security/6 o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/73823 acpi [request] acpi / power-on by timer support o conf/73677 rc [patch] add support for powernow states to power_profi s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty o gnu/73512 gdb -> Abort trap (core dumped) s kern/73496 [request] A more flexible version of mkstemp() s kern/73492 [request] Reliable Temporary Files o kern/73484 fs [ntfs] Kernel panic when doing `ls` from the client si o bin/73422 portmap forks ad infinitum when the NIS domain name is s bin/73411 [request] ftpd(8) could set attributes to 0600 while u o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o bin/73261 Suspending su(1) sometimes hangs o kern/73171 imp [fwohci] fwohci driver stating cardbus firewire card h o bin/73019 fs [ufs] fsck_ufs(8) cannot alloc 607016868 bytes for ino o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o conf/72592 gavin [nis] NIS Domain Master fails as client of itself o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o bin/72398 whatis(8): emulators/mtools man pages are too funky fo o bin/72355 Can't run strings(1) on a (disk) device, even if you w o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 cy [ipfilter] ipnat problem with IP Fastforward enabled s ports/72202 ports-mgmt/portaudit warns about the CVS server vulner o bin/72173 csplit(1) ver 1.9 wrong behaviour with negative offset s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use s kern/71965 andre TCP MSS issue in combination with ipfw fwd o conf/71952 missing past participles in /usr/share/dict/words o bin/71928 Disk quota doesn't work with numeric login o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o bin/71749 [patch] truss -f causes circular wait when traced proc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71618 [patch] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [patch] [nis] ypserv(8): cleanup of the usr.sbin/ypser o bin/71616 [patch] [nis] yp_mkdb(8): cleanup of the usr.sbin/yp_m o bin/71602 [patch] uninitialized "len" used instead of "slen" wit o kern/71532 Multiple SCSI-Busses are seen differently by BIOS, loa a kern/71474 net [route] route lookup does not skip interfaces marked d o kern/71469 net default route to internet magically disappears with mu o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: s bin/71290 des [patch] passwd(1) cannot change passwords other than N o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) o kern/71219 /proc/*/map dont tell file offset o gnu/71210 Update to GNU sdiff: add user-preference for merge key o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 cy [ipfilter] ipfilter ipnat problem with h323 proxy supp o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o bin/70756 indent(1) mishandles code that is protected for c++ co f kern/70753 gavin [boot] Device for firewire hard disk not created in ti o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o bin/70600 fs fsck(8) throws files away when it can't grow lost+foun o bin/70536 reboot(8) -dp tries to dump when powering off o usb/70523 hselasky [umct] [patch] umct sending/receiving wrong characters o kern/70511 [libc] When fread(3)ing with buffering turned off, man o bin/70476 [patch] reboot(8) change, -p behavior default for halt o bin/70336 telnetd(8) always exits with value 1 o bin/70335 inetd(8) inconsistent syslog behavior when max childre o i386/70330 Re-Open 33262? - gdb does not handle pending signals p o bin/70297 amd(8) request to make amd timeouts per-mount local o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o kern/69989 killing process that uses snp + unloading module + lis o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o kern/69826 [libc] 16th group has no effect when accesing file on o kern/69825 [libc] 1st group supplied to setgroups() does not take o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o ports/69309 ale mysql database backup script for periodic/daily o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge s kern/69218 firewire [firewire] [patch] failure: 4.10-BETA and later do not o bin/69164 gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o kern/68978 fs [panic] [ufs] crashes with failing hard disk, loose po a kern/68905 secteam [patch] core dumps are assigned wrong ownership o kern/68889 net [panic] m_copym, length > size of mbuf chain o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o conf/68108 [patch] Adding mac-address /conf selector to diskless o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67723 restore(8) FreeBSD 5.x restore cannot handle other pla s kern/67580 [request] add hints for boot failures s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o conf/67328 [nis] [ppp] Usermode PPP hangs on boot when NIS config o kern/67326 fs [msdosfs] crash after attempt to mount write protected o usb/67301 usb [uftdi] [panic] RTS and system panic o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o bin/66988 [patch] apm(8) check validation of the returned values o bin/66893 [patch] [nis] rpc.yppasswdd(8): Linux NIS clients conn o bin/66830 [nis] chsh(1) ypchsh(1) do not change user information o bin/66677 mv(1) incorrectly copies somedir/.. to ./.. when it cr s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o docs/66505 trhodes escaping '~' and '$' characters in login.conf setenv o o stand/66357 standards make POSIX conformance problem ('sh -e' & '+' command- s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports s kern/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 net [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 [gbde] gbde destroy error o bin/66103 ppp(8) macro HISADDR is not sticky in filters p bin/65961 melifaro [ipfw] ipfw2 memory corruption inside add() o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange o kern/65901 fs [smbfs] [patch] smbfs fails fsx write/truncate-down/tr o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o bin/65774 sysinstall sysinstall(8): cannot run repair disk when booted from o kern/65616 net IPSEC can't detunnel GRE packets after real ESP encryp o kern/65448 jhb _mtx_unlock_sleep() race condition if ADAPTIVE_MUTEXES o bin/65299 vi(1) temp path contains double / o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( o kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o conf/64788 [nsswitch.conf] nsswitch with ldap and starting ppp on s kern/64588 [joy] [request] Extend joystick driver architecture to o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE o bin/63608 Add a -c option to time(1) to display csh output o bin/63489 top(1) finger(1) segfault when using NIS groups to res o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o a bin/63197 [patch] tftp(1) Bus error, core dumped o docs/63084 des Several Man-pages reference non-existant pam.conf(5) a s bin/62965 portmgr pkg_add(1) -r fails if fetching multiple packages at a o kern/62890 ups proc pointer set by fork1 can be stale in fork,rfork,v f bin/62885 des pam_radius(8) doesn't maintain multiple state fields o bin/62766 systat(1) -vm does not work on diskless machines o bin/62711 kensmith sysinstall(8): installation: "Insert Next CD" Prompt i o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o conf/62417 luigi diskless op script failed o docs/62412 trhodes one of the diskless boot methods described in the Hand o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o kern/62102 alc obreak update o bin/62077 [sound] [patch] Make it possible to abbreviate mixer(8 o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o bin/61971 kinit(1) --renewable fails o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61677 Unable to open CDROM tray if boot_cdrom is in loader.c s kern/61622 Intel Pro/100 Intelligent Server Adapter unsupported N o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s i386/61481 [patch] a mechanism to wire io-channel-check to userla o bin/61355 login(1) does not restore terminal ownership on exit o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60719 ipfw [ipfw] Headerless fragments generate cryptic error mes o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o docs/60529 ume resolver(5) man page is badly out of date o kern/60313 data destruction: lseek(2) misalignment silently ignor s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines s kern/59912 mremap() implementation lacking o docs/59835 doc ipfw(8) man page does not warn about accepted but mean o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in o kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI o usb/59698 mav [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/59638 des passwd(1) does not use PAM to change the password o conf/59600 [patch] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o docs/59477 doc Outdated Info Documents at http://docs.freebsd.org/inf o www/59307 www [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o kern/58967 Kernel kills processes in spite of cputime parameter i o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p a conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o bin/58483 [patch] mount(8): allow type special or node relative o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o bin/57715 [patch] tcopy(1) enhancement o kern/57696 [nfs] NFS client readdir terminates prematurely if ren o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets p bin/57630 lptcontrol(8) gives "device busy" if device turned off o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o kern/57350 [panic] using old monocrome printer port (IO_LPT3 / 0x o docs/57298 doc [patch] add using compact flash cards info to handbook o stand/57295 harti make's handling of MAKEFLAGS is not POSIX conform o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) f conf/56934 rc [patch] rc.firewall rules for natd expect an interface s kern/56720 [libc] [request] UNICODE support in Resolver o kern/56664 bad file# in MTIO status buffer after MTEOD until MTRE o bin/56648 [patch] enable rcorder(8) to use a directory for locat o stand/56476 standards [patch] cd9660 unicode support simple hack o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select(2) call (poll(2) too) hangs, yet call works per o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56249 obrien ftpd(8) has two bugs (motd, munged utmp) o kern/56245 [bktr] Distorted and choppy video with bktr-driver on a kern/56233 net IPsec tunnel (ESP) over IPv6: MTU computation is wrong o kern/56031 luigi [ipfw] ipfw hangs on every invocation s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o gnu/55936 bugmeister send-pr(1) does not set mail envelope from o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR s kern/55802 [request] Make kernel.GENERIC suitable for diskless us o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/55617 fs [smbfs] Accessing an nsmb-mounted drive via a smb expo o i386/55603 [mly] unable to reboot when system runs from Mylex A35 o bin/55546 [patch] cdcontrol(1) play tr m:s.f interface is partia p bin/55539 stefanf [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o bin/55349 amd(8) mixes up symlinks in its virtual filesystem. o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o stand/54410 standards one-true-awk not POSIX compliant (no extended REs) o kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o conf/54170 [patch] error from weekly periodic script 330.catman o bin/54141 wrong behavour of cu(1) o bin/54097 [nis] Non-local yppasswd(1) -d broken in 5.1-CURRENT o docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ALLOCNOW o docs/53596 doc Updates to mt(1) manual page o bin/53560 logging domain names in wtmp is retarded o bin/53520 su(1) to another user does not update utmp o kern/53506 [partial patch] support gzipped modules o bin/53475 cp(1) copies files in reverse order to destination o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/53288 edwin tail(1) will sometimes display more lines than it is t o docs/53271 doc bus_dma(9) fails to document alignment restrictions o bin/53131 sysinstall sysinstall(8): "ALL" could not turn check BOXes ON at s bin/52826 portmgr [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a o bin/52743 ppp(8) /etc/ppp/ppp.linkup instability issues o kern/52725 [patch] installincludes for kmods o ports/52706 bdrewery [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o bin/52517 [request] [patch] New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s usb/52026 usb [new driver] [request] umass driver support for InSyst o kern/51982 [sio] sio1: interrupt-level buffer overflows s usb/51958 usb [urio] [patch] update for urio driver o kern/51685 fs [hang] Unbounded inode allocation causes kernel to loc o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o docs/51480 doc Multiple undefined references in the FreeBSD manual pa o kern/51341 doc [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee o bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/50949 mtree(8) doesn't honor the -P when checking/changing o s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge a kern/50687 jmg ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq o docs/50211 doc [patch] doc.docbook.mk: fix textfile creation f bin/50118 edwin calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con f kern/48976 gavin [modules] nwfs.ko oddity s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/48741 cy [ipfilter] ipnat corrupts packets on gre interface wit o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 [patch] periodic(8) executes too many files s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48309 ppp(8) pppoe connections fail to establish if throughp s kern/48279 [bktr] Brooktre878 may cause freeze o conf/48195 /var/db/mounttab error on diskless boot o bin/48183 [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] Add documentation on the fixit disk o bin/47815 [patch] stty(1) -all should work. o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 doc [patch] passwd(5) incorrectly states allowed username o bin/47576 edwin [patch] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit o kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 cy [ipfilter] denied packets of security run output conta o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o kern/46866 [libc] NIS-based getpwent(3) falsely returns NULL o bin/46758 [patch] moused(8) enhancements s conf/46746 No way to set link addresses through rc.conf o stand/46441 stefanf /bin/sh does not do parameter expansion in PS1, PS2, P o conf/46409 Certain periodic scripts check broken NFS mounts. o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/46163 gad lpc(8) problem. Only root can modify despite man page o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o stand/46119 standards Priority problems for SCHED_OTHER using pthreads o conf/46062 Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 top(1) dumps core if specific errors in password file o kern/45896 setnetgrent(3) should return error code o bin/45830 [kerberos] KDC has problems when listening to IPv6 and o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [patch] request to change cp866b font to cp866 o bin/45608 sysinstall sysinstall(8): install should config all ether devices s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/45558 trhodes [msdosfs] mdconfig and msdosfs make fs writes hang o bin/45529 [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 doc Bug in PDF DocBook rendering o conf/45222 [patch] daily rejected mail hosts report too long o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o bin/44915 sysinstall sysinstall(8): 'choose installation media' choose CD-R o bin/44894 markm telnet(1): as a local non-root user and remote it's po o kern/44580 [nfs] NFS updates file access time when file is modifi o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o kern/44372 roberto some kernel options prevent NTP clock synchronization o stand/44365 standards [headers] [patch] [request] introduce ulong and unchar o conf/44286 roberto /etc/defaults/rc.conf uses the obsolete ntpdate o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization s bin/44122 ppp(8) tun0 gets a second ip adress after a disconnect o docs/44034 trhodes Multiple sysctl variables are not documented o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43592 mktime(3) rejects dates at the start of daylight savin o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements s bin/43497 mount(8): mount -t nfs -> crunchgen incompatible o docs/43470 blackend solid-state article out of date (x109). o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/43368 portmgr pkg_create(1) fails if target directory does not exist o bin/43337 des [patch] fetch(1) -s fails if -4 or possibly other opti o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/42217 [libdisk] libdisk segfaults with 1024 bytes/sector dis o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid a kern/42089 gnn ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 sysinstall sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login s bin/41647 net ifconfig(8) doesn't accept lladdr along with inet addr o kern/41632 luigi bridging when one interface has no carrier o bin/41583 [patch] mtree(8) assorted mtree bugs a stand/41576 standards ln(1): replacing old dir-symlinks o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o bin/41526 mount(8) symlinked mount points get mounted more than o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 [patch] non-suid crontab(1) o bin/41213 top(1) blocks if NIS-related entries in passwd(5) are o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o docs/41089 doc pax(1) -B option does not mention interaction with -z o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o bin/40597 [patch] add fdisk(8) ability of showing extended parti o bin/40572 vipw(8) prints silly message if $EDITOR fails o docs/40423 doc Keyboard(4)'s definition of parameters to GETFKEY/SETF o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o kern/39937 net ipstealth issue o bin/39849 restore(8) fails to overwrite files with schg flag set o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg p stand/39256 das snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o bin/38940 [request] an option to *stat to allow supressing of he o misc/38937 delay between tracks in digital audio dumps from CD wi o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional a bin/38727 [patch] mptable(1) should complain about garbage argum o kern/38626 luigi dummynet/traffic shaper: RED: max_th and min_th are li o bin/38610 sysinstall sysinstall(8): should be able to mount ISO images on D a kern/38554 net [patch] changing interface ipaddress doesn't seem to w o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38168 [patch] [request] installing curses-based versions of o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o bin/37844 [patch] [build] make knob to not install progs with su o docs/37719 kensmith [request] Detail VOP_ naming in a relevant man-page o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" o bin/37083 [patch] [request] small improvement to talk(1): add cl o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/36916 sysinstall [libdisk] [patch] DOS active partition flag lost in li o kern/36911 [ata] ATA cannot be disabled with hints or through BIO o kern/36902 [libc] [patch] proposed new format code %N for strftim s bin/36786 make ps(1) use 24-hour time by default s bin/36740 make ps(1) obey locale (particularly for times) o docs/36724 doc ipnat(5) manpage grammar is incomplete and inconsisten o kern/36626 login_cap(3) incorrectly claims that all resources fre o kern/36566 fs [smbfs] System reboot with dead smb mount and umount o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) o kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36385 luigi crunchgen(1) does not handle Makefiles with includes p o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce a bin/36110 dmesg(8) output corrupt if /dev/console is busy o bin/35886 [patch] pax(1) enhancement: custom time format for lis o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions o kern/35669 imp [nfs] NFSROOT breaks without a gateway o docs/35652 trhodes bsd.README seriously obsolete o bin/35568 make(1) declares target out of date, but $? is empty o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea f misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35429 select(2)/poll(2)/kevent(2) can't/don't notice lost co o bin/35400 sysinstall sysinstall(8): sysinstall could improve manipulation o o kern/35399 poll(2) botches revents on dropped socket connections o kern/35396 poll(2) doesn't set POLLERR for failed connect(2) atte o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o bin/35214 obrien dump(8) program hangs while exiting o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 jilles sh(1) "jobs" is not pipeable o bin/34788 dmesg(8) issues with console output o kern/34665 cy [ipfilter] [hang] ipfilter rcmd proxy "hangs". o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. o bin/34171 ftpd(8) indiscrete about unprivileged user accounts o gnu/34128 sdiff(1) "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o kern/33834 strptime(3) is misleading o bin/33809 [patch] mount_nfs(8) has trouble with embedded ':' in a bin/33661 PAP AuthAck/AuthNak parsing problem in pppd(8) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33182 gdb(1) seg faults when given handle SIGALRM nopass for o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 [patch] tcpd.h lacks prototype for hosts_ctl o bin/32667 systat(1) waste too much time reading input o bin/32501 maxim quot(8) is stupid regarding the filesystem option a bin/32411 shutdown(8) absolute-time handling could be more usefu a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(8) to notify operators by mail(1) o bin/31985 New /etc/remote flag for tip(1) to append LF to CR o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31940 net ip queue length too short for >500kpps o bin/31933 pw(8) can interpret numeric name as userid during user o kern/31906 [libc] No method available to unwind atexit(3) stack w o kern/31890 [syscons] [patch] new syscons font o kern/31708 [vm] [vmware] VM system / fsync / flushing delayed ind s kern/31686 andre Problem with the timestamp option when flag equals zer o kern/31647 net [libc] socket calls can return undocumented EINVAL o bin/31588 change request to allow mount(8) to set the MNT_IGNORE o bin/31387 mailwrapper(8): When getuid(2)=0, mailwrapper should d o kern/31380 [nfs] NFS rootfs mount failure message too cryptic o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o bin/31034 regularly add original address logging for tcpwrappers o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o bin/30863 bootpd(8) dovend.c Win95 compatibility improvement and o bin/30854 bootpd(8) bootpgw change - skip ARP modifications by o a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o conf/30590 /etc/hosts.equiv and ~/.rhosts interaction violates PO p bin/30542 mjg [patch] add -q option to shut up killall(1) o bin/30517 sysinstall sysinstall(8): using sysinstall with install.cfg has n s threa/30464 threads [patch] pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi a bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite o bin/29903 [nis] ypbind(8) loses connection to NIS master and nev o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt p bin/29893 kensmith sysinstall(8): suggestions for 4.4 sysinstall o bin/29808 [nis] ypserv(8) dumps core in yp_find_db o bin/29516 markm telnet(1) from an non FreeBSD host still uses /etc/tty s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha o bin/29253 natd(8) forgets about udp connections s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 brooks mtree(8) fails to report directory hierarchy mismatch o bin/28364 bapt [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u o bin/28223 su(1) doesn't look at login.conf all the time o bin/27972 losing information with talk(1) a conf/27896 Error in /etc/exports invalidates entire line, not jus o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o kern/27474 cy [ipfilter] [ppp] Interactive use of user PPP and ipfil o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd(4) pid processes o bin/27306 [patch] hw watchpoints work unreliable under gdb(1) o bin/27281 vidcontrol(1) does not have error codes o bin/27258 getty(8) didn't check if if= isn't empty o kern/27232 [nfs] On NFSv3 mounted filesystems, stat returns st_bl o bin/27216 sysinstall sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound o bin/26803 fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting a kern/26534 ipfw [ipfw] Add an option to ipfw to log gid/uid of who cau o bin/26486 [libc] [patch] setnetgrent hangs when netgroup contain o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver o bin/26005 vis(1)/unvis(1) MIME quoted-printable encoding added t a docs/26003 standards getgroups(2) lists NGROUPS_MAX but not syslimits.h o kern/25986 silby Socket would hang at LAST_ACK forever. o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o bin/25736 ac(8) -d option probrem with overdays logon s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o bin/25218 mailwrapper(8) invokes sendmail when resources are tig o bin/25015 cp(1) options -i and -f do not work as documented f kern/24959 net [patch] proper TCP_NOPUSH/TCP_CORK compatibility o docs/24786 doc missing FILES descriptions in sa(4) f kern/24629 harti ng_socket failes to declare connected data sockets as s stand/24590 standards timezone function not compatible witn Single Unix Spec o kern/24528 Bad tracking of Modem status o bin/24485 [patch] to make cron(8) handle clock jumps o bin/24461 [nis] Being able to increase the YP timeout without re o bin/24066 gdb(1) can't detach from programs linked with libc_r a bin/23912 vi(1) underflow of cnt in vs_paint() by O_NUMBER_LENGT o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes a bin/23254 bapt [patch] yacc(1) accepts bad grammer o conf/23063 net [arp] [patch] for static ARP tables in rc.network o misc/22914 [bootinst] bootinst messages are not updated o conf/22308 [nfs] mounting NFS during boot blocks if host map come o kern/22291 [nfs] getcwd(3) fails on recently-modified NFS-mounted o bin/22182 vi(1) options noprint/print/octal broken s bin/22034 [request] nfsstat(1) lacks useful features found in So o kern/21998 net [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives o i386/21672 [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more o kern/21463 [linux] Linux compatability mode should not allow setu o bin/21008 gad lpr(1) Fix for lpr's handling of lots of jobs in a que o bin/20944 natd(8) enhancements, default config file and manpage o kern/20529 [ti] gigabit cards fail to link o bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 sysinstall sysinstall(8): sysinstall does not recover some /etc f o bin/20054 ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc o gnu/19882 obrien ld does not detect all undefined symbols! o kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 [unionfs] df(1) output wrong for union-mounts o kern/19756 [patch] Inability to use linux extended partition (typ o bin/19683 mount(8) displays incorrect mount point on failed moun o conf/19573 Dot Files for Optional Shells s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19402 Signals 127 and 128 cannot be detected in wait4() inte o kern/18909 select(2) timeout limited to 100000000 seconds o kern/18874 fs [2TB] 32bit NFS servers export wrong negative values t s kern/18704 GLOB_ERR not handled correctly by glob() s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad o bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o bin/18326 no /usr/libdata/lint/llib-lc.ln o bin/18319 dump(8) fails with "cannot reopen disk: interrupted sy o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation s bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o conf/17993 obrien improving on the default /etc/amd.map s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 cy [ipfilter] fastroute crashes for lo0 udp s kern/17108 [nfs] SecureRPC not supported in mount_nfs command o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o kern/16765 bde Add support for mark/space parity o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16422 [patch] [request] newfs(8) always make root's / direct o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15168 [patch] Adding tracklist support to fdformat(1) a kern/15095 silby TCP's advertised window is not scaled immediately upon o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists s bin/14925 standards getsubopt isn't poisonous enough a bin/14682 gad [patch] lprm(1) unaware of lp(1) Environment Variables s kern/14562 ioctl() codes should be provided for ejecting all remo o bin/14318 sysinstall sysinstall(8): sysinstall upon install has some counte s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o bin/13882 mount(8) mount -p is missing the quota options f conf/13775 rc multi-user boot may hang in NIS environment o bin/13397 vi(1) nvi mishandles tags files under certain conditio s kern/13326 [headers] [patch] additional timespecs interfaces for s bin/13309 [patch] Fixes to nos-tun(8) o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. o bin/13108 authunix_create_default includes egid twice o bin/13042 make(1) doesn't handle wildcards in subdirectory paths o bin/12801 nvi infinite recursion with options "leftright" and "c s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o bin/11294 [patch] logger(1) direct logging to other hosts o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 s bin/11114 harti make(1) does not work as documented with .POSIX: targe a kern/11024 [patch] getpwnam(3) uses incorrect #define to limit us o bin/10611 [patch] timed(8) enhancement o bin/10030 markm [patch] Kerberized telnet fails to encrypt when a host s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 fs [nfs] Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 sysinstall sysinstall(8): [patch] /stand/sysinstall core dumps (s o kern/8498 silby Race condition between unp_gc() and accept(). o bin/7973 gad lpd(8) Bad control file owner in case of remote printi s kern/7556 sl_compress_init() will fail if called anything else t o bin/7287 [nis] Incorrect domain name for MAP_UPDATE in multidom s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia s bin/6785 place for all the default dump flags o kern/5877 net [socket] sb_cc counts control data as well as data dat s bin/5712 /bin/chio code cleaup and option added o bin/5609 gad lpd(8) cannot send long files to HP's JetDirect interf o bin/5031 gad lpr(1) does not remove original file if -s is used o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad o bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 dteske [patch] Extraneous warning from mv(1) 7546 problems total. From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 04:40:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EC7CEA85 for ; Tue, 20 Aug 2013 04:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B29552E80 for ; Tue, 20 Aug 2013 04:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7K4e0Rh023451 for ; Tue, 20 Aug 2013 04:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7K4e05H023450; Tue, 20 Aug 2013 04:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 20 Aug 2013 04:40:00 GMT Resent-Message-Id: <201308200440.r7K4e05H023450@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vitja Makarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B856A993 for ; Tue, 20 Aug 2013 04:31:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A552A2E02 for ; Tue, 20 Aug 2013 04:31:14 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7K4VExG003739 for ; Tue, 20 Aug 2013 04:31:14 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7K4VECF003700; Tue, 20 Aug 2013 04:31:14 GMT (envelope-from nobody) Message-Id: <201308200431.r7K4VECF003700@oldred.freebsd.org> Date: Tue, 20 Aug 2013 04:31:14 GMT From: Vitja Makarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181416: socket timeout rounding issue X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 04:40:01 -0000 >Number: 181416 >Category: kern >Synopsis: socket timeout rounding issue >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 20 04:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Vitja Makarov >Release: 9.1-RELEASE >Organization: Rambler >Environment: FreeBSD dbg 9.1-RELEASE FreeBSD 9.1-RELEASE #5: Tue Aug 20 08:14:54 MSK 2013 root@dbg:/usr/obj/nfs/usr/src/sys/MYKERNEL i386 >Description: Recently I was playing with small socket timeouts. setsockopt(2) SO_RCVTIMEO and found a problem with it: if timeout is small enough read(2) may return before timeout is actually expired. I was unable to reproduce this on linux box. I found that kernel uses a timer with 1/HZ precision so it converts time in microseconds to ticks that's ok linux does it as well. The problem is in details: freebsd uses floor() approach while linux uses ceil(): from FreeBSD's sys/kern/uipc_socket.c: val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / tick; if (val == 0 && tv.tv_usec != 0) val = 1; /* at least one tick if tv > 0 */ from Linux's net/core/sock.c: *timeo_p = tv.tv_sec*HZ + (tv.tv_usec+(1000000/HZ-1))/(1000000/HZ); So, for instance, we have a freebsd system running with kern.hz set to 100 and set receive timeout to 25ms that is converted to 2 ticks which is 20ms. In my test program read(2) returns with EAGAIN set in 0.019ms. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 08:54:31 2013 Return-Path: Delivered-To: bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DBC1A4BF for ; Tue, 20 Aug 2013 08:54:31 +0000 (UTC) (envelope-from vchannel@heavenlywords.info) Received: from mout.perfora.net (mout.perfora.net [74.208.4.194]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9433A2E49 for ; Tue, 20 Aug 2013 08:54:31 +0000 (UTC) Received: from [192.168.0.2] (host18453216126.direcway.com [184.53.126.216]) by mrelay.perfora.net (node=mrus4) with ESMTP (Nemesis) id 0M7XqB-1VyarK2Stb-00wbvZ; Tue, 20 Aug 2013 04:54:28 -0400 Message-Id: <0BKLX8AZ-PVBQ-XXDV-ZIBY-PQJQO35VJZY8@heavenlywords.info> Mime-Version: 1.0 From: James Lloyd To: bugs@freebsd.org Subject: [News] August 19, 2013 - Communique - Tri-Dimensional Truth Part IV Date: Tue, 20 Aug 2013 04:54:29 -0400 X-Bounce-Tracking-Info: X-Provags-ID: V02:K0:mIPH8YrMQKL4jbCljUf7XtVCX6yfle13KcGiojDwfQ0 kEdItXME3f88UISizSE88Pl2JU/mGSDgDvXpWAtNqrf+Pk3w3v h7dwZFvn+DFJONOuoJ2dQTaoFTZzMeLsmbHcv93wKdP5EDOG/I bSPXDyH60ZqOBG/WJuBfF44sv/rXsus1kQ2NiWnQe/meb5AYq/ HYMPkhydlBL19WgHDeQkPHxkRL6weM16eNKdpp0htRS1kvbzz6 S49H6CrBDiVopJIlLt52ffGE3ddYdoGLrIA9dmGpLJSAE1L1fq GuiPtBmGzUVoV7s9Z6+BLKqcCUWZZX/Q7d7MB/ZHLIJa8ZuYeU KrIaono74QDWZYUIoGjFOnn1vZdKuiqUsLlVOZgsrOor9nbYhL IF7NhYfCD0fY86hCIopr6VMmrJcpygrZVw= Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 08:54:31 -0000 Christian Media Communiqu=E9 TRI-DIMENSIONAL TRUTH Part IV After 3 installments of Tri-Dimensional Truth, we now return to the central theme as seen in part 1 – the unfolding of literal and physical prophetic fulfillment, operating adjacent to the deeper, allegorical activity in the heavenly realm=2E The series has sought to show that it is our fleshly nature to relegate the Spiritual fulfillments of prophecy into an ethereal place which has little immediate impact on our lives, whereas literal and physical fulfillments tend to seem “real” to us, and generate the excitement seen in immediacy=2E I’ll remind the reader the Word of God repeatedly tells us the physical realm in this world is the shadow, or external image of the true inner event, whereas the substance is found in the Kingdom of God, which is still within you=2E For instance, the book of Hebrews plainly tells us the Old Covenant physical ritual functioned as predictive of the reality which was to be revealed in Christ: “…there are priests that offer gifts…who serve unto the example and shadow of heavenly things…” (Hebrews 8:4,5) This meaty portion of the book of Hebrews goes on to tell us that God instructed Moses in great detail on the specifics of the temple system, because it was analogous (i=2Ee=2E “the example”) to the larger, more substantive things in the eternal=2E In a broader sense of the same concept, one of my favorite prophecies is related to the Old Testament prediction where Isaiah likens the salvation that God will bring, to a time when the LORD will turn things upside down: “Surely your turning of things upside down shall be esteemed as the potter’s clay…=2E” (Isaiah 29:16) This is categorically stated to be fulfilled by the Gospel, as seen in the book of Acts, where the Christ rejecting Jews are persecuting Paul, even as they “…drew Jason and certain brethren unto the rulers of the city, crying, These that have turned the world upside down are come hither also…and they troubled the people and the rulers of the city…=2E” (Acts 17:6, 8) The Scriptures teach us there is a causal relationship between what occurs in this dimension and the heavenlies=2E For instance, the New Testament tells us that if we fully embrace Christ in this life, to the degree that we confess Him before men, in the eternal house of the LORD our names are written in the lamb’s book of life: “…if thou shalt confess with thy mouth the LORD Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved” (Romans 10:9)=2E This relationship between physical movements in this life, and the sacred occurrences in the courts of the King of Kings, does not negate physical fulfillments which are seen in this world=2E Indeed, predictions are periodically fulfilled in this world, and they are frequently misread, or even ignored=2E An excellent example of this has just occurred=2E In the book of Revelation, we see a pivotal event predicting that at a certain stage of prophetic fulfillment, the third part of the sun will be “darkened” and, presumably this will be perceived as part of the signs and wonders projected for the end times: “And the fourth angel sounded, and the third part of the sun was smitten…so as the third part…was darkened” (Revelation 8:12)=2E Less than a week ago, national media showed vivid pictures of a dramatic development on the surface of the sun, as roughly one third of the sun can clearly be seen to be blackened – literally=2E Surprisingly, this dramatic event has garnered very little media attention in Christian circles (to view the picture of the sun with one third blackened, see below)=2E We would suggest that many of the alleged prophetic “watchmen” ministries in Christendom cannot assimilate this event into their worldview, because the text chronologically places this event well into the trumpet judgments – i=2Ee=2E in the midst of= the tribulational cycle -- and vast numbers of Christians firmly believe they will be “raptured” before this tribulational event occurs=2E Our understanding, or lack thereof, does not change the fact that a third of the sun is indeed blackened=2E Obviously, this is not the first time someone has declared an event is a fulfillment of a Scriptural prophecy, even as many failed to hear it= =2E For instance, most know how Peter stood up as the Pentecostal rushing wind manifested the Holy Spirit, as the LORD swept through Jerusalem, and the Apostle flatly claimed this was a fulfillment of one of the prophet Joel’s amazing prophecies: “And it shall come to pass in the last days, saith God, I will pour out of my Spirit upon all flesh: and your sons and your daughters shall prophesy, and your young men shall see visions, and your old men shall dream dreams” (Acts 2:17)=2E Although no “young men” were recorded as having visions, and no old men were asleep having prophetic dreams in the midst of the exciting manifestation, Peter included those aspects of the prophecy= =2E Indeed, the Apostle persevered with his recitation of the whole section of the text, and continued to describe Joel’s pronouncements, in the context of claiming this was predictive of what had just occurred with the Spiritual outpouring, and the speaking in multiple languages: “…and I will shew wonders in heaven above, and signs in the earth beneath; blood, and fire, and vapour of smoke: The sun shall be turned into darkness, and the moon into blood, before that great and notable day of the Lord come” (Acts 2:19, 20)=2E The fact that Peter stated the Pentecost outpouring was a fulfillment of Joel’s astonishing prophecy, does not negate further fulfillment for, as I just noted, a third of the sun has been blackened as of August, 2013=2E Further, although the evidence indicates this darkening of the sun is a sign in the heavens, directly related to the prophecy of the fourth trumpet in Revelation, regarding this amazing prophecy of the fourth trumpet, there is yet another dimension of fulfillment yet to come=2E But that will have to wait for our next installment of the Tri-Dimensional Truth prophecy series=2E   --- James Lloyd [As the Communique is sent out in large numbers, we prefer not to attach images or links to this letter, but the reader is advised to Google “NASA Discovery: Giant Hole In The Sun” to see the striking image, originating with the SOHO satellite observatory, wherein a third of our star is blackened=2E] (To Receive The Next Installment Of This Writing, See Below) Dear Christian Friend, This prophecy article was sent to you by one of our volunteers – a person who believes the LORD is doing a very special work at the ministry which produces this writing=2E People need to receive this information, but the resistance is fierce in these end times=2E The GEOgram is part of GEO, an outreach of the larger Christian Media ministry=2E A lot of people are trying to stop us from what we’re doing in Bible Prophecy, so if you’d like to read more along the lines of the present writing, we would love to send you the Communique in the future -- but we need to hear from you, as there are far too many people out there to continually send it on an unsolicited basis= =2E To get the next installment of the GEOgram (it’s all free), just hit reply and put the word YES! in the subject line, and the person who forwarded this email to you will arrange for us to send you links on prophecy and predictions of things you can expect to see in the near future=2E We also stream prophecy audio 24/7 and have downloadable video shows as well, so a YES! response will get you all the links you need to access these materials=2E Some are convinced Christians should never send an Email to someone without permission (Did the Disciples of Jesus ask people for permission to tell them the Good News?), while others don’t consider prophecy important – and there are other reasons people don’t want to receive our material=2E If that’s the case, just reply with the word REMOVE in the subject line (that part is important as our software looks for that word), and we will cheerfully delete your name from our database=2E Thanks for reading this far, and we hope you’ll respond favorably, reply with a YES!, and take a look at what the LORD has shown us here at the Christian Media ministry=2E ________________________________________________________________________ _______________________   From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 10:11:42 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B90516EC; Tue, 20 Aug 2013 10:11:42 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail110.syd.optusnet.com.au (mail110.syd.optusnet.com.au [211.29.132.97]) by mx1.freebsd.org (Postfix) with ESMTP id 755CF22D2; Tue, 20 Aug 2013 10:11:42 +0000 (UTC) Received: from c122-106-156-23.carlnfd1.nsw.optusnet.com.au (c122-106-156-23.carlnfd1.nsw.optusnet.com.au [122.106.156.23]) by mail110.syd.optusnet.com.au (Postfix) with ESMTPS id C0EC2781A20; Tue, 20 Aug 2013 20:11:38 +1000 (EST) Date: Tue, 20 Aug 2013 20:11:37 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Vitja Makarov Subject: Re: kern/181416: socket timeout rounding issue In-Reply-To: <201308200431.r7K4VECF003700@oldred.freebsd.org> Message-ID: <20130820193624.B1320@besplex.bde.org> References: <201308200431.r7K4VECF003700@oldred.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=DstvpgP+ c=1 sm=1 tr=0 a=ebeQFi2P/qHVC0Yw9JDJ4g==:117 a=PO7r1zJSAAAA:8 a=dyu4D0XAEIUA:10 a=kj9zAlcOel0A:10 a=JzwRw_2MAAAA:8 a=gxFlDmTjiSsA:10 a=qRoJsd5tSO5-7unFrJMA:9 a=CjuIK1q_8ugA:10 Cc: freebsd-bugs@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 10:11:42 -0000 On Tue, 20 Aug 2013, Vitja Makarov wrote: >> Description: > Recently I was playing with small socket timeouts. setsockopt(2) > SO_RCVTIMEO and found a problem with it: if timeout is small enough > read(2) may return before timeout is actually expired. > > I was unable to reproduce this on linux box. > > I found that kernel uses a timer with 1/HZ precision so it converts > time in microseconds to ticks that's ok linux does it as well. The > problem is in details: freebsd uses floor() approach while linux uses > ceil(): > > from FreeBSD's sys/kern/uipc_socket.c: > val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / tick; This is actually an off-by-2 error in most case. ceil() isn't high enough either, since for example with hz = 100 and tv = 25 msec, the ceil() of 3 ticks is 2 full ticks plus a fractional tick which may be 1 nsec long. At least with old timeout code. > if (val == 0 && tv.tv_usec != 0) > val = 1; /* at least one tick if tv > 0 */ This does the ceil() in the special case where tv < 1 tick. This is a waste of timeout, at least with old timeout code, since callout_reset() used to add 1. This seems to have been lost, breaking old callers that depended on it. Current timeout code tries to be more accurute, but that means that it less accurate if the caller is broken and rounds down. Maybe your bug can only be seen with the increased accuracy. tvtohz() should always be used to convert timevals to ticks. It rounds up and adds 1, and handles overflow. The conversion in uipc_socket.c isn't even short. It takes 15 lines for its own overflow handling. It seems to check the SHRT_MAX limit twice. If uipc_socket.c called tvtohz(), then it would still have to check that the result fits in a short. Its error handling when it doesn't fit seems wrong. EDOM is documented as a domain error for math software. setsockopt() isn't math software, and EDOM isn't a documented errno for it. EINVAL and EOVERFLOW are more usual kernel errors for unrepresentable values. Grepping for ' / tick' in /sys shows no other home made tvtohz()'s. > from Linux's net/core/sock.c: > *timeo_p = tv.tv_sec*HZ + (tv.tv_usec+(1000000/HZ-1))/(1000000/HZ); The conversion is much simpler when HZ is hard-coded. Linux has some bounds checking before this, but the error handling in at least Linux-2.6.10 is to ignore invalid tv's and return success without changing the timeout. > So, for instance, we have a freebsd system running with kern.hz set to > 100 and set receive timeout to 25ms that is converted to 2 ticks which > is 20ms. In my test program read(2) returns with EAGAIN set in > 0.019ms. Bruce Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 10:20:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B1A197EC for ; Tue, 20 Aug 2013 10:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E1FF232A for ; Tue, 20 Aug 2013 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7KAK1wI005940 for ; Tue, 20 Aug 2013 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7KAK0Ds005939; Tue, 20 Aug 2013 10:20:00 GMT (envelope-from gnats) Date: Tue, 20 Aug 2013 10:20:00 GMT Message-Id: <201308201020.r7KAK0Ds005939@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/181416: socket timeout rounding issue X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 10:20:01 -0000 The following reply was made to PR kern/181416; it has been noted by GNATS. From: Bruce Evans To: Vitja Makarov Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/181416: socket timeout rounding issue Date: Tue, 20 Aug 2013 20:11:37 +1000 (EST) On Tue, 20 Aug 2013, Vitja Makarov wrote: >> Description: > Recently I was playing with small socket timeouts. setsockopt(2) > SO_RCVTIMEO and found a problem with it: if timeout is small enough > read(2) may return before timeout is actually expired. > > I was unable to reproduce this on linux box. > > I found that kernel uses a timer with 1/HZ precision so it converts > time in microseconds to ticks that's ok linux does it as well. The > problem is in details: freebsd uses floor() approach while linux uses > ceil(): > > from FreeBSD's sys/kern/uipc_socket.c: > val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / tick; This is actually an off-by-2 error in most case. ceil() isn't high enough either, since for example with hz = 100 and tv = 25 msec, the ceil() of 3 ticks is 2 full ticks plus a fractional tick which may be 1 nsec long. At least with old timeout code. > if (val == 0 && tv.tv_usec != 0) > val = 1; /* at least one tick if tv > 0 */ This does the ceil() in the special case where tv < 1 tick. This is a waste of timeout, at least with old timeout code, since callout_reset() used to add 1. This seems to have been lost, breaking old callers that depended on it. Current timeout code tries to be more accurute, but that means that it less accurate if the caller is broken and rounds down. Maybe your bug can only be seen with the increased accuracy. tvtohz() should always be used to convert timevals to ticks. It rounds up and adds 1, and handles overflow. The conversion in uipc_socket.c isn't even short. It takes 15 lines for its own overflow handling. It seems to check the SHRT_MAX limit twice. If uipc_socket.c called tvtohz(), then it would still have to check that the result fits in a short. Its error handling when it doesn't fit seems wrong. EDOM is documented as a domain error for math software. setsockopt() isn't math software, and EDOM isn't a documented errno for it. EINVAL and EOVERFLOW are more usual kernel errors for unrepresentable values. Grepping for ' / tick' in /sys shows no other home made tvtohz()'s. > from Linux's net/core/sock.c: > *timeo_p = tv.tv_sec*HZ + (tv.tv_usec+(1000000/HZ-1))/(1000000/HZ); The conversion is much simpler when HZ is hard-coded. Linux has some bounds checking before this, but the error handling in at least Linux-2.6.10 is to ignore invalid tv's and return success without changing the timeout. > So, for instance, we have a freebsd system running with kern.hz set to > 100 and set receive timeout to 25ms that is converted to 2 ticks which > is 20ms. In my test program read(2) returns with EAGAIN set in > 0.019ms. Bruce Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 16:10:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E5643331 for ; Tue, 20 Aug 2013 16:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D18772A64 for ; Tue, 20 Aug 2013 16:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7KGA1Wx075455 for ; Tue, 20 Aug 2013 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7KGA1IV075454; Tue, 20 Aug 2013 16:10:01 GMT (envelope-from gnats) Date: Tue, 20 Aug 2013 16:10:01 GMT Message-Id: <201308201610.r7KGA1IV075454@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Rudy Rucker Subject: Re: bin/181344: Buildworld fail at xinstall when upgrading from 9.1-STABLE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Rudy Rucker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 16:10:02 -0000 The following reply was made to PR bin/181344; it has been noted by GNATS. From: Rudy Rucker To: bug-followup@FreeBSD.org, crapsh@monkeybrains.net Cc: Subject: Re: bin/181344: Buildworld fail at xinstall when upgrading from 9.1-STABLE Date: Tue, 20 Aug 2013 08:35:05 -0700 This bug still exists as of 8/20/2013. Rudy # cd /usr/src/ # svnup stable # make clean && make -j 4 buildworld ... cc -O2 -pipe -I/usr/src/usr.bin/xinstall/../../contrib/mtree -I/usr/src/usr.bin/xinstall/../../lib/libnetbsd -I/usr/src/usr.bin/xinstall/../../lib/libmd -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /usr/src/usr.bin/xinstall/../../contrib/mtree/getid.c gzip -cn /usr/src/usr.bin/xinstall/install.1 > install.1.gz cc1: warnings being treated as errors /usr/src/usr.bin/xinstall/xinstall.c: In function 'metadata_log': /usr/src/usr.bin/xinstall/xinstall.c:1331: warning: implicit declaration of function 'strsvis' /usr/src/usr.bin/xinstall/xinstall.c:1331: warning: nested extern declaration of 'strsvis' *** [xinstall.o] Error code 1 1 error *** [all] Error code 2 1 error *** [usr.bin.all__D] Error code 2 2 errors *** [everything] Error code 2 1 error *** [buildworld] Error code 2 1 error # cat /etc/make.conf KERNCONF="INJERA" # added by use.perl 2013-02-06 22:32:17 PERL_VERSION=5.14.2 # uname -a FreeBSD lavash.monkeybrains.net 9.1-STABLE FreeBSD 9.1-STABLE #6: Sat Jan 5 00:00:01 PST 2013 monkey@injera.monkeybrains.net:/usr/obj/usr/src/sys/INJERA amd64 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 17:40:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9782482C for ; Tue, 20 Aug 2013 17:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 785C72F87 for ; Tue, 20 Aug 2013 17:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7KHe0k3093549 for ; Tue, 20 Aug 2013 17:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7KHe0Bx093548; Tue, 20 Aug 2013 17:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 20 Aug 2013 17:40:00 GMT Resent-Message-Id: <201308201740.r7KHe0Bx093548@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steffen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 071F980D for ; Tue, 20 Aug 2013 17:38:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF4492F78 for ; Tue, 20 Aug 2013 17:38:55 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7KHctrB052756 for ; Tue, 20 Aug 2013 17:38:55 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7KHctWf052750; Tue, 20 Aug 2013 17:38:55 GMT (envelope-from nobody) Message-Id: <201308201738.r7KHctWf052750@oldred.freebsd.org> Date: Tue, 20 Aug 2013 17:38:55 GMT From: Steffen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: bin/181435: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 17:40:00 -0000 >Number: 181435 >Category: bin >Synopsis: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 20 17:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steffen >Release: 10.0-CURRENT >Organization: >Environment: FreeBSD fbsd10 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sun Jun 23 02:55:37 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I simply paste over, i somehow lost the log of the FreeBSD session (sorry!) * [steffen nhead]$ /bin/sleep 30 & * [steffen nhead]$ jobs [1] + Running /bin/sleep 30 * [steffen nhead]$ kill -STOP %1 * [steffen nhead]$ jobs [1] + Running /bin/sleep 30 * [steffen nhead]$ wait %1 [1] + Suspended (signal) /bin/sleep 30 * [steffen nhead]$ kill -CONT %1 * [steffen nhead]$ jobs [1] + Suspended (signal) /bin/sleep 30 * [steffen nhead]$ wait %1 * [steffen nhead]$ wait * [steffen nhead]$ jobs [1] + Suspended (signal) /bin/sleep 30 * [steffen nhead]$ [1] Done /bin/sleep 30 * [steffen nhead]$ Of the tested mksh(1), NetBSD sh(1), dash(1), FreeBSD sh(1), Mac OS X /bin/ksh and bash(1), only the latter two "do the right thing" (satisfy me, that is): Mac OS X /bin/ksh(1): ?0[steffen sherwood]$ /bin/sleep 30 & [1] 43762 ?0[steffen sherwood]$ jobs [1] + Running /bin/sleep 30 & ?0[steffen sherwood]$ wait ^C?258[steffen sherwood]$ jobs [1] + Running /bin/sleep 30 & ?0[steffen sherwood]$ kill -STOP %1 ?0[steffen sherwood]$ jobs [1] + Running /bin/sleep 30 & ?0[steffen sherwood]$ wait %1 [1] + Stopped (SIGSTOP) /bin/sleep 30 & ?0[steffen sherwood]$ kill -CONT %1 ?0[steffen sherwood]$ jobs [1] + Running /bin/sleep 30 & ?0[steffen sherwood]$ wait %1 ^C?258[steffen sherwood]$ jobs ?0[steffen sherwood]$ bash(1): ?0[steffen sherwood]$ /bin/sleep 30 & [1] 43752 ?0[steffen sherwood]$ wait %1 ^C ?1[steffen sherwood]$ kill -STOP %1 ?0[steffen sherwood]$ jobs [1]+ Running /bin/sleep 30 & ?0[steffen sherwood]$ wait %1 [1]+ Stopped /bin/sleep 30 ?145[steffen sherwood]$ wait %1 bash: warning: wait_for_job: job 1 is stopped ?145[steffen sherwood]$ kill -CONT %1 ?0[steffen sherwood]$ jobs [1]+ Running /bin/sleep 30 & ?0[steffen sherwood]$ wait %1 ^C ?1[steffen sherwood]$ jobs [1]+ Running /bin/sleep 30 & ?0[steffen sherwood]$ [1]+ Done /bin/sleep 30 >How-To-Repeat: >Fix: no. sorry. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 18:50:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2E49F1DA for ; Tue, 20 Aug 2013 18:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09C1C2415 for ; Tue, 20 Aug 2013 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7KIo0uO009238 for ; Tue, 20 Aug 2013 18:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7KIo0AO009236; Tue, 20 Aug 2013 18:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 20 Aug 2013 18:50:00 GMT Resent-Message-Id: <201308201850.r7KIo0AO009236@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, slaven@rezic.de Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 918D11CC for ; Tue, 20 Aug 2013 18:49:35 +0000 (UTC) (envelope-from slaven@rezic.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D81B2404 for ; Tue, 20 Aug 2013 18:49:34 +0000 (UTC) Received: from localhost.localdomain (g230112161.adsl.alicedsl.de [92.230.112.161]) by mrelayeu.kundenserver.de (node=mrbap3) with ESMTP (Nemesis) id 0MFbev-1VH22z1ptV-00EbxX; Tue, 20 Aug 2013 20:49:32 +0200 Received: from cvrsnica.herceg.de (cvrsnica.herceg.de [192.168.1.10]) by biokovo.herceg.de (8.14.3/8.14.3) with ESMTP id r7KInLGC070644 for ; Tue, 20 Aug 2013 20:49:21 +0200 (CEST) (envelope-from eserte@cvrsnica.herceg.de) Received: from cvrsnica.herceg.de (localhost [127.0.0.1]) by cvrsnica.herceg.de (8.14.5/8.14.5) with ESMTP id r7KInLgM074305 for ; Tue, 20 Aug 2013 20:49:21 +0200 (CEST) (envelope-from eserte@cvrsnica.herceg.de) Received: (from eserte@localhost) by cvrsnica.herceg.de (8.14.5/8.14.5/Submit) id r7KInKfb074304; Tue, 20 Aug 2013 20:49:20 +0200 (CEST) (envelope-from eserte) Message-Id: <201308201849.r7KInKfb074304@cvrsnica.herceg.de> Date: Tue, 20 Aug 2013 20:49:20 +0200 (CEST) From: Slaven Rezic To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/181436: /usr/bin/file cannot detect BSD makefiles X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: slaven@rezic.de List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 18:50:01 -0000 >Number: 181436 >Category: bin >Synopsis: /usr/bin/file cannot detect BSD makefiles >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 20 18:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Slaven Rezic >Release: FreeBSD 9.0-RELEASE amd64 >Organization: www.rezic.de >Environment: System: FreeBSD cvrsnica.herceg.de 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 The behavior is visible with FreeBSD 9.0 (file-5.03) and FreeBSD 10.0 (file-5.11). >Description: Most BSD makefiles are not recognized by /usr/bin/file as such. Worse, if less is configured to use lesspipe from the ports (misc/lesspipe), then many BSD makefiles are recognized as troff files, causing unreadable input. >How-To-Repeat: For example: cd /usr/share/mk /usr/bin/file * | grep -i troff | wc -l Or configure less to use lesspipe as per lesspipe's manpage (see FILTER ACTIVATION section) and try to use less on any of misrecognized BSD makefiles. >Fix: Maybe adding keywords as ".if", ".include", ".else" etc. as BSD makefile keywords before the troff section could help. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 20 22:00:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B5AFF186 for ; Tue, 20 Aug 2013 22:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 93DFF2FC4 for ; Tue, 20 Aug 2013 22:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7KM00sN047184 for ; Tue, 20 Aug 2013 22:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7KM00Ln047183; Tue, 20 Aug 2013 22:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 20 Aug 2013 22:00:00 GMT Resent-Message-Id: <201308202200.r7KM00Ln047183@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitrijs Ledkovs Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9F44716A for ; Tue, 20 Aug 2013 21:58:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C3522FB4 for ; Tue, 20 Aug 2013 21:58:15 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7KLwFJh038367 for ; Tue, 20 Aug 2013 21:58:15 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7KLwEoM038366; Tue, 20 Aug 2013 21:58:14 GMT (envelope-from nobody) Message-Id: <201308202158.r7KLwEoM038366@oldred.freebsd.org> Date: Tue, 20 Aug 2013 21:58:14 GMT From: Dmitrijs Ledkovs To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181439: sys/wait.h is not enough to use waitid(), but kind of should be. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2013 22:00:00 -0000 >Number: 181439 >Category: misc >Synopsis: sys/wait.h is not enough to use waitid(), but kind of should be. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 20 22:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitrijs Ledkovs >Release: 9.2-rc2 >Organization: >Environment: >Description: "[CX] The header shall define the siginfo_t type as a structure." http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html " #include int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options); " http://pubs.opengroup.org/onlinepubs/9699919799/functions/waitid.html To use waitid() one needs to pass "siginfo_t *" to it, thus it's reasonable to expect that "siginfo_t" would be defined if is included. When the below code sample is compiled: * on linux - there is one error too few arguments to function call waitid * on freebsd - there are two errors (a) unknown type name 'siginfo_t' (b) too few arguments to function call waitid I'm not sure if it's a bug in the standard, linux implementation, or freebsd implementation. But it would be nice, if both linux & freebsd implementations interpreted the standard the same, i.e. "#include is enough to call waitid()" >How-To-Repeat: #include siginfo_t info; int main(){ waitid(); return 0; } >Fix: header should include header. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 02:00:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AACD0BB9 for ; Wed, 21 Aug 2013 02:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 897832BF6 for ; Wed, 21 Aug 2013 02:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7L200kB001708 for ; Wed, 21 Aug 2013 02:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7L200Y2001707; Wed, 21 Aug 2013 02:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 21 Aug 2013 02:00:00 GMT Resent-Message-Id: <201308210200.r7L200Y2001707@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hickey Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8DE6BB54 for ; Wed, 21 Aug 2013 01:57:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B9DA2BDE for ; Wed, 21 Aug 2013 01:57:33 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7L1vXGB000122 for ; Wed, 21 Aug 2013 01:57:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7L1vXre000121; Wed, 21 Aug 2013 01:57:33 GMT (envelope-from nobody) Message-Id: <201308210157.r7L1vXre000121@oldred.freebsd.org> Date: Wed, 21 Aug 2013 01:57:33 GMT From: John Hickey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181441: Asmedia ASM1061 Times out with AHCI driver X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 02:00:00 -0000 >Number: 181441 >Category: kern >Synopsis: Asmedia ASM1061 Times out with AHCI driver >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 21 02:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Hickey >Release: FreeBSD 9.2-BETA1 >Organization: >Environment: FreeBSD foo 9.2-BETA1 FreeBSD 9.2-BETA1 #2: Tue Jul 23 15:56:07 PDT 2013 root@foo:/usr/obj/usr/src/sys/FOO amd64 >Description: When using the ahci driver instead of the ata driver, my drive times out on an Asmedia 1061 controller. ahcich0: Timeout on slot 0 port 0 ahcich0: is 00000000 cs 00000001 ss 00000000 rs 00000001 tfd 451 serr 00000000 cmd 0004c017 ahcich0: AHCI reset... ahcich0: SATA connect time=1000us status=00000123 ahcich0: AHCI reset: device found (aprobe0:ahcich0:0:0:0): SET_MULTI. ACB: c6 00 00 00 00 40 00 00 00 00 10 00 (aprobe0:ahcich0:0:0:0): CAM status: Command timeout (aprobe0:ahcich0:0:0:0): Error 5, Retry was blocked ahcich0: AHCI reset: device ready after 100ms >From a kernel with the ahci driver disabled, here is the pci information for the card: atapci0@pci0:13:0:0: class=0x010601 card=0x10601b21 chip=0x06121b21 rev=0x01 hdr=0x00 >How-To-Repeat: Boot a system with an asmedia 1061 controller and the ahci driver enabled. >Fix: This setup has been running fine for over a year using the ata driver instead of ahci. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 05:30:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C7B78671 for ; Wed, 21 Aug 2013 05:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8526270B for ; Wed, 21 Aug 2013 05:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7L5U01P043078 for ; Wed, 21 Aug 2013 05:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7L5U0p7043077; Wed, 21 Aug 2013 05:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 21 Aug 2013 05:30:00 GMT Resent-Message-Id: <201308210530.r7L5U0p7043077@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 35D9260E for ; Wed, 21 Aug 2013 05:22:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2393F26EB for ; Wed, 21 Aug 2013 05:22:21 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7L5MKgD005201 for ; Wed, 21 Aug 2013 05:22:20 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7L5MKAh005195; Wed, 21 Aug 2013 05:22:20 GMT (envelope-from nobody) Message-Id: <201308210522.r7L5MKAh005195@oldred.freebsd.org> Date: Wed, 21 Aug 2013 05:22:20 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181445: [PATCH] fetch(3) - Host header required by some proxies for HTTPS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 05:30:00 -0000 >Number: 181445 >Category: misc >Synopsis: [PATCH] fetch(3) - Host header required by some proxies for HTTPS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 21 05:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.1-RELEASE (but patched against HEAD) >Organization: >Environment: >Description: Some proxy servers, i.e., apache, enforce the Host header requirement on HTTP/1.1 requests even when the CONNECT method is given. The resulting response is "400 bad request". This patch adds the Host header immediately after the CONNECT method. However, even with the patch, the request will fail later on with SSL errors but that would be a different PR. >How-To-Repeat: I don't have a public apache-based proxy server to use but an apache configuration containing the following: ProxyRequests On SSLProxyEngine On AllowCONNECT 80 443 And then export HTTP_PROXY=http://theproxyserver:80/ fetch https://www.yahoo.com/ >Fix: Index: lib/libfetch/http.c =================================================================== --- lib/libfetch/http.c (revision 254593) +++ lib/libfetch/http.c (working copy) @@ -1400,6 +1400,8 @@ if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 && purl) { http_cmd(conn, "CONNECT %s:%d HTTP/1.1", URL->host, URL->port); + http_cmd(conn, "Host: %s:%d", + URL->host, URL->port); http_cmd(conn, ""); if (http_get_reply(conn) != HTTP_OK) { fetch_close(conn); Patch attached with submission follows: Index: lib/libfetch/http.c =================================================================== --- lib/libfetch/http.c (revision 254593) +++ lib/libfetch/http.c (working copy) @@ -1400,6 +1400,8 @@ if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 && purl) { http_cmd(conn, "CONNECT %s:%d HTTP/1.1", URL->host, URL->port); + http_cmd(conn, "Host: %s:%d", + URL->host, URL->port); http_cmd(conn, ""); if (http_get_reply(conn) != HTTP_OK) { fetch_close(conn); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 07:10:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C3E2FA8D for ; Wed, 21 Aug 2013 07:10:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A437D2C8A for ; Wed, 21 Aug 2013 07:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7L7A0Je065667 for ; Wed, 21 Aug 2013 07:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7L7A0Nd065666; Wed, 21 Aug 2013 07:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 21 Aug 2013 07:10:00 GMT Resent-Message-Id: <201308210710.r7L7A0Nd065666@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jordan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 047DFA50 for ; Wed, 21 Aug 2013 07:08:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6E2A2C70 for ; Wed, 21 Aug 2013 07:08:04 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7L784Hu093845 for ; Wed, 21 Aug 2013 07:08:04 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7L784ik093841; Wed, 21 Aug 2013 07:08:04 GMT (envelope-from nobody) Message-Id: <201308210708.r7L784ik093841@oldred.freebsd.org> Date: Wed, 21 Aug 2013 07:08:04 GMT From: Jordan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: misc/181446: Error occurrs when using a GUI frontent for package management X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 07:10:00 -0000 >Number: 181446 >Category: misc >Synopsis: Error occurrs when using a GUI frontent for package management >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 21 07:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jordan >Release: 9.1 >Organization: >Environment: FreeBSD jbsd.test.com 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When using the package manager (gpk-application) or update manager I continually get a popup error dialog with this message: "The backend exited unexpectedly. This is a serious error as the spawned backend did not complete the pending transaction." This is a small portion of the terminal output after the error occurrs in gpk-application: .. (gpk-application:3393): PackageKit-DEBUG: emit transaction-list-changed (gpk-application:3393): PackageKit-DEBUG: changed so checking properties, started DBus call: 0x809fa03d0 (0x3) (gpk-application:3393): PackageKit-DEBUG: interface changed, started DBus call: 0x809fa03d0 (0x3) (gpk-application:3393): PackageKit-DEBUG: got properties, ended DBus call: 0x809fa03d0 (0x3) (gpk-application:3393): PackageKit-DEBUG: status now finished (gpk-application:3393): PackageKit-DEBUG: got property results, ended DBus call: 0x809fa03d0 (0x0) (gpk-application:3393): PackageKit-DEBUG: exit_text=failed (gpk-application:3393): PackageKit-DEBUG: state array remove 0x809fa03d0 (gpk-application:3393): PackageKit-DEBUG: emit transaction-list-changed (when idle) (gpk-application:3393): PackageKit-DEBUG: emit transaction-list-changed (gpk-application:3393): PackageKit-DEBUG: emit restart-schedule (when idle) (gpk-application:3393): PackageKit-DEBUG: emit transaction-list-changed (gpk-application:3393): PackageKit-DEBUG: notify::connected I am using FreeBSD 9.1 in VirtualBox with the GNOME desktop. >How-To-Repeat: Browsing sections in gpk-application or by starting update manager. It appears to happen when querying for packages. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 22:20:02 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5B261EF for ; Wed, 21 Aug 2013 22:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4571920C2 for ; Wed, 21 Aug 2013 22:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7LMK1wq056814 for ; Wed, 21 Aug 2013 22:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7LMK1dg056813; Wed, 21 Aug 2013 22:20:01 GMT (envelope-from gnats) Date: Wed, 21 Aug 2013 22:20:01 GMT Message-Id: <201308212220.r7LMK1dg056813@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jilles Tjoelker Subject: Re: bin/181435: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 22:20:02 -0000 The following reply was made to PR bin/181435; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, sdaoden@gmail.com Cc: Subject: Re: bin/181435: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled Date: Thu, 22 Aug 2013 00:16:01 +0200 In PR bin/181435, you wrote: > sh(1) wait(1) builtin fails after bg job was > SIG(STOP|TSTP|CONT) controlled There is definitely a bug here because the wait builtin may delete a stopped job named on the command line, as if it were done. Additionally, handling of stopped jobs in general is not as prescribed by POSIX, and the handling prescribed by POSIX may be undesirable as well. It looks like POSIX allows 'wait' only on jobs whose "process IDs are known in the shell environment", in other words (for jobs that have not been waited for yet) when the job was started as an asynchronous list and was not used with 'fg', or the job was used with 'bg' and the last use with 'bg' was after the last use (if any) with 'fg'. Therefore, kill -STOP or -CONT do not affect this. If an explicit job is given and it is not "known", it shall be as if it exited with status 127; there shall be no error message. This is certainly not nice. The POSIX behaviour for operandless wait seems less strange. However, it is still harder to understand than sh's current behaviour of waiting for all jobs that are not stopped (it is the same if you do not use kill to stop or continue processes). Note that sh only uses WUNTRACED | WCONTINUED if interactive (and job control is compiled in). A further related change is r238865 which makes 10-current sh use WCONTINUED. This is not in older branches. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 22:40:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1CE89D08 for ; Wed, 21 Aug 2013 22:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D11B023AB for ; Wed, 21 Aug 2013 22:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7LMe0OK060163 for ; Wed, 21 Aug 2013 22:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7LMe0AN060151; Wed, 21 Aug 2013 22:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 21 Aug 2013 22:40:00 GMT Resent-Message-Id: <201308212240.r7LMe0AN060151@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yuri Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 75C9BAC3 for ; Wed, 21 Aug 2013 22:37:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53EC92384 for ; Wed, 21 Aug 2013 22:37:35 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7LMbYHD061177 for ; Wed, 21 Aug 2013 22:37:34 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7LMbYoT061172; Wed, 21 Aug 2013 22:37:34 GMT (envelope-from nobody) Message-Id: <201308212237.r7LMbYoT061172@oldred.freebsd.org> Date: Wed, 21 Aug 2013 22:37:34 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181459: [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 22:40:01 -0000 >Number: 181459 >Category: kern >Synopsis: [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 21 22:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: 10 >Organization: n/a >Environment: >Description: This patch adds POSIX futimensat function, which is able to set the time of the file with nanosecond precision. Both by name and by file descriptor. Times are handled internally in struct timespec, but the function allowing to set it was missing. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: contrib/openbsm/etc/audit_event =================================================================== --- contrib/openbsm/etc/audit_event (revision 254587) +++ contrib/openbsm/etc/audit_event (working copy) @@ -294,6 +294,7 @@ 299:AUE_PF_POLICY_FLUSH:Flush IPsec policy rules:ad 300:AUE_PF_POLICY_ALGS:Update IPsec algorithms:ad 301:AUE_PORTFS:portfs:fa +302:AUE_FUTIMENSAT:futimensat(2):fm # # What follows are deprecated Darwin event numbers that may soon^H^H^H^Hnow # conflict with Solaris events. Index: lib/libarchive/config_freebsd.h =================================================================== --- lib/libarchive/config_freebsd.h (revision 254587) +++ lib/libarchive/config_freebsd.h (working copy) @@ -111,6 +111,7 @@ #define HAVE_FTRUNCATE 1 #define HAVE_FUTIMES 1 #define HAVE_FUTIMESAT 1 +#define HAVE_FUTIMENSAT 1 #define HAVE_GETEUID 1 #define HAVE_GETGRGID_R 1 #define HAVE_GETGRNAM_R 1 Index: lib/libc/sys/Makefile.inc =================================================================== --- lib/libc/sys/Makefile.inc (revision 254587) +++ lib/libc/sys/Makefile.inc (working copy) @@ -397,6 +397,7 @@ MLINKS+=unlink.2 unlinkat.2 MLINKS+=utimes.2 futimes.2 \ utimes.2 futimesat.2 \ + utimes.2 futimensat.2 \ utimes.2 lutimes.2 MLINKS+=wait.2 wait3.2 \ wait.2 wait4.2 \ Index: lib/libc/sys/Symbol.map =================================================================== --- lib/libc/sys/Symbol.map (revision 254587) +++ lib/libc/sys/Symbol.map (working copy) @@ -342,6 +342,7 @@ fexecve; fstatat; futimesat; + futimensat; jail_get; jail_set; jail_remove; Index: lib/libc/sys/cap_rights_limit.2 =================================================================== --- lib/libc/sys/cap_rights_limit.2 (revision 254587) +++ lib/libc/sys/cap_rights_limit.2 (working copy) @@ -250,8 +250,10 @@ .It Dv CAP_FUTIMES Permit .Xr futimes 2 +, +.Xr futimesat 2 and -.Xr futimesat 2 . +.Xr futimensat 2 . .It Dv CAP_FUTIMESAT An alias to .Dv CAP_FUTIMES . Index: lib/libc/sys/sigaction.2 =================================================================== --- lib/libc/sys/sigaction.2 (revision 254587) +++ lib/libc/sys/sigaction.2 (working copy) @@ -568,6 +568,7 @@ .Fn flsl , .Fn flsll , .Fn futimesat , +.Fn futimensat , .Fn pipe2 , .Fn strlcat . .Fn strlcpy , Index: lib/libc/sys/utimes.2 =================================================================== --- lib/libc/sys/utimes.2 (revision 254587) +++ lib/libc/sys/utimes.2 (working copy) @@ -37,7 +37,8 @@ .Nm utimes , .Nm lutimes , .Nm futimes , -.Nm futimesat +.Nm futimesat , +.Nm futimensat .Nd set file access and modification times .Sh LIBRARY .Lb libc @@ -51,6 +52,8 @@ .Fn futimes "int fd" "const struct timeval *times" .Ft int .Fn futimesat "int fd" "const char *path" "const struct timeval times[2]" +.Ft int +.Fn futimensat "int fd" "const char *path" "const struct timespec times[2]" .Sh DESCRIPTION The access and modification times of the file named by .Fa path @@ -122,6 +125,15 @@ parameter, the current working directory is used and the behavior is identical to a call to .Fn utimes . +.Pp +The +.Fn futimensat +system call sets the file access and modification times with nanosecond precision. Also when +.Fa path +argument is +.Dv NULL , +it changes times of the file referenced by +.Fa fd . .Sh RETURN VALUES .Rv -std .Sh ERRORS Index: sys/bsm/audit_kevents.h =================================================================== --- sys/bsm/audit_kevents.h (revision 254587) +++ sys/bsm/audit_kevents.h (working copy) @@ -314,6 +314,7 @@ #define AUE_PF_POLICY_FLUSH 299 /* Solaris-specific. */ #define AUE_PF_POLICY_ALGS 300 /* Solaris-specific. */ #define AUE_PORTFS 301 /* Solaris-specific. */ +#define AUE_FUTIMENSAT 302 /* * Events added for Apple Darwin that potentially collide with future Solaris Index: sys/kern/capabilities.conf =================================================================== --- sys/kern/capabilities.conf (revision 254587) +++ sys/kern/capabilities.conf (working copy) @@ -452,6 +452,7 @@ fchownat fstatat futimesat +futimensat linkat mkdirat mkfifoat Index: sys/kern/init_sysent.c =================================================================== --- sys/kern/init_sysent.c (revision 254587) +++ sys/kern/init_sysent.c (working copy) @@ -578,4 +578,5 @@ { AS(accept4_args), (sy_call_t *)sys_accept4, AUE_ACCEPT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 541 = accept4 */ { AS(pipe2_args), (sy_call_t *)sys_pipe2, AUE_PIPE, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 542 = pipe2 */ { AS(aio_mlock_args), (sy_call_t *)lkmressys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 543 = aio_mlock */ + { AS(futimensat_args), (sy_call_t *)sys_futimensat, AUE_FUTIMENSAT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 544 = futimensat */ }; Index: sys/kern/syscalls.c =================================================================== --- sys/kern/syscalls.c (revision 254587) +++ sys/kern/syscalls.c (working copy) @@ -551,4 +551,5 @@ "accept4", /* 541 = accept4 */ "pipe2", /* 542 = pipe2 */ "aio_mlock", /* 543 = aio_mlock */ + "futimensat", /* 544 = futimensat */ }; Index: sys/kern/syscalls.master =================================================================== --- sys/kern/syscalls.master (revision 254587) +++ sys/kern/syscalls.master (working copy) @@ -978,5 +978,7 @@ int flags); } 542 AUE_PIPE STD { int pipe2(int *fildes, int flags); } 543 AUE_NULL NOSTD { int aio_mlock(struct aiocb *aiocbp); } +544 AUE_NULL NOSTD { int futimensat(int fd, char *path, \ + struct timespec *times); } ; Please copy any additions and changes to the following compatability tables: ; sys/compat/freebsd32/syscalls.master Index: sys/kern/vfs_syscalls.c =================================================================== --- sys/kern/vfs_syscalls.c (revision 254587) +++ sys/kern/vfs_syscalls.c (working copy) @@ -106,6 +106,8 @@ const struct timespec *, int, int); static int vn_access(struct vnode *vp, int user_flags, struct ucred *cred, struct thread *td); +static int timesat_common(struct thread *td, int fd, + char *path, enum uio_seg pathseg, struct timespec *ts, int nullflag); /* * The module initialization routine for POSIX asynchronous I/O will @@ -3194,6 +3196,11 @@ const char * path; const struct timeval * times; }; +struct futimensat_args { + int fd; + const char * path; + const struct timespec * times; +}; #endif int sys_futimesat(struct thread *td, struct futimesat_args *uap) @@ -3204,6 +3211,35 @@ } int +sys_futimensat(struct thread *td, struct futimensat_args *uap) +{ + + struct timespec ts[2]; + int error; + + if (uap->times == NULL) { + vfs_timestamp(&ts[0]); + ts[1] = ts[0]; + } else { + if ((error = copyin(uap->times, ts, sizeof(ts))) != 0) + return (error); + + if (ts[0].tv_nsec < 0 || ts[0].tv_nsec >= 1000000000 || + ts[1].tv_nsec < 0 || ts[1].tv_nsec >= 1000000000) + return (EINVAL); + } + + if (uap->path != NULL) { + /* if path is set, file is specified by name */ + return (timesat_common(td, uap->fd, uap->path, UIO_USERSPACE, + ts, uap->times == NULL)); + } else { + /* if path is NULL, file is specified by fd */ + return (kern_futimens(td, uap->fd, ts)); + } +} + +int kern_utimes(struct thread *td, char *path, enum uio_seg pathseg, struct timeval *tptr, enum uio_seg tptrseg) { @@ -3215,12 +3251,22 @@ kern_utimesat(struct thread *td, int fd, char *path, enum uio_seg pathseg, struct timeval *tptr, enum uio_seg tptrseg) { - struct nameidata nd; struct timespec ts[2]; int error; if ((error = getutimes(tptr, tptrseg, ts)) != 0) return (error); + + return (timesat_common(td, fd, path, pathseg, ts, tptr == NULL)); +} + +static int +timesat_common(struct thread *td, int fd, char *path, enum uio_seg pathseg, + struct timespec *ts, int nullflag) +{ + struct nameidata nd; + int error; + NDINIT_ATRIGHTS(&nd, LOOKUP, FOLLOW | AUDITVNODE1, pathseg, path, fd, CAP_FUTIMES, td); @@ -3227,7 +3273,7 @@ if ((error = namei(&nd)) != 0) return (error); NDFREE(&nd, NDF_ONLY_PNBUF); - error = setutimes(td, nd.ni_vp, ts, 2, tptr == NULL); + error = setutimes(td, nd.ni_vp, ts, 2, nullflag); vrele(nd.ni_vp); return (error); } @@ -3299,12 +3345,21 @@ enum uio_seg tptrseg) { struct timespec ts[2]; + int error; + + if ((error = getutimes(tptr, tptrseg, ts)) != 0) + return (error); + + return (kern_futimens(td, fd, ts)); +} + +int +kern_futimens(struct thread *td, int fd, struct timespec *ts) +{ struct file *fp; int error; AUDIT_ARG_FD(fd); - if ((error = getutimes(tptr, tptrseg, ts)) != 0) - return (error); if ((error = getvnode(td->td_proc->p_fd, fd, CAP_FUTIMES, &fp)) != 0) return (error); #ifdef AUDIT @@ -3312,7 +3367,7 @@ AUDIT_ARG_VNODE1(fp->f_vnode); VOP_UNLOCK(fp->f_vnode, 0); #endif - error = setutimes(td, fp->f_vnode, ts, 2, tptr == NULL); + error = setutimes(td, fp->f_vnode, ts, 2, ts == NULL); fdrop(fp, td); return (error); } Index: sys/sys/capability.h =================================================================== --- sys/sys/capability.h (revision 254587) +++ sys/sys/capability.h (working copy) @@ -116,6 +116,7 @@ #define CAP_FSTATFS 0x0000000000020000ULL #define CAP_FUTIMES 0x0000000000040000ULL #define CAP_FUTIMESAT CAP_FUTIMES +#define CAP_FUTIMENSAT CAP_FUTIMES #define CAP_LINKAT 0x0000000000400000ULL #define CAP_MKDIRAT 0x0000000000200000ULL #define CAP_MKFIFOAT 0x0000000000800000ULL Index: sys/sys/syscall.h =================================================================== --- sys/sys/syscall.h (revision 254587) +++ sys/sys/syscall.h (working copy) @@ -463,4 +463,5 @@ #define SYS_accept4 541 #define SYS_pipe2 542 #define SYS_aio_mlock 543 -#define SYS_MAXSYSCALL 544 +#define SYS_futimensat 544 +#define SYS_MAXSYSCALL 545 Index: sys/sys/syscall.mk =================================================================== --- sys/sys/syscall.mk (revision 254587) +++ sys/sys/syscall.mk (working copy) @@ -364,6 +364,7 @@ fexecve.o \ fstatat.o \ futimesat.o \ + futimensat.o \ linkat.o \ mkdirat.o \ mkfifoat.o \ Index: sys/sys/syscallsubr.h =================================================================== --- sys/sys/syscallsubr.h (revision 254587) +++ sys/sys/syscallsubr.h (working copy) @@ -104,6 +104,7 @@ int kern_ftruncate(struct thread *td, int fd, off_t length); int kern_futimes(struct thread *td, int fd, struct timeval *tptr, enum uio_seg tptrseg); +int kern_futimens(struct thread *td, int fd, struct timespec *ts); int kern_getdirentries(struct thread *td, int fd, char *buf, u_int count, long *basep, ssize_t *residp, enum uio_seg bufseg); int kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize, Index: sys/sys/sysproto.h =================================================================== --- sys/sys/sysproto.h (revision 254587) +++ sys/sys/sysproto.h (working copy) @@ -1579,6 +1579,11 @@ char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; char times_l_[PADL_(struct timeval *)]; struct timeval * times; char times_r_[PADR_(struct timeval *)]; }; +struct futimensat_args { + char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; + char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; + char times_l_[PADL_(struct timespec *)]; struct timespec * times; char times_r_[PADR_(struct timespec *)]; +}; struct linkat_args { char fd1_l_[PADL_(int)]; int fd1; char fd1_r_[PADR_(int)]; char path1_l_[PADL_(char *)]; char * path1; char path1_r_[PADR_(char *)]; @@ -2160,6 +2165,7 @@ int sys_fexecve(struct thread *, struct fexecve_args *); int sys_fstatat(struct thread *, struct fstatat_args *); int sys_futimesat(struct thread *, struct futimesat_args *); +int sys_futimensat(struct thread *, struct futimensat_args *); int sys_linkat(struct thread *, struct linkat_args *); int sys_mkdirat(struct thread *, struct mkdirat_args *); int sys_mkfifoat(struct thread *, struct mkfifoat_args *); @@ -2867,6 +2873,7 @@ #define SYS_AUE_fexecve AUE_FEXECVE #define SYS_AUE_fstatat AUE_FSTATAT #define SYS_AUE_futimesat AUE_FUTIMESAT +#define SYS_AUE_futimensat AUE_FUTIMENSAT #define SYS_AUE_linkat AUE_LINKAT #define SYS_AUE_mkdirat AUE_MKDIRAT #define SYS_AUE_mkfifoat AUE_MKFIFOAT Index: sys/sys/time.h =================================================================== --- sys/sys/time.h (revision 254587) +++ sys/sys/time.h (working copy) @@ -480,6 +480,7 @@ int clock_getcpuclockid2(id_t, int, clockid_t *); int futimes(int, const struct timeval *); int futimesat(int, const char *, const struct timeval [2]); +int futimensat(int, const char *, const struct timespec [2]); int lutimes(const char *, const struct timeval *); int settimeofday(const struct timeval *, const struct timezone *); #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 22:40:02 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0A03ED09 for ; Wed, 21 Aug 2013 22:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EB1E723AC for ; Wed, 21 Aug 2013 22:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7LMe1i0060211 for ; Wed, 21 Aug 2013 22:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7LMe1DV060210; Wed, 21 Aug 2013 22:40:01 GMT (envelope-from gnats) Date: Wed, 21 Aug 2013 22:40:01 GMT Message-Id: <201308212240.r7LMe1DV060210@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jilles Tjoelker Subject: Re: kern/181439: [headers] sys/wait.h is not enough to use waitid(), but kind of should be. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 22:40:02 -0000 The following reply was made to PR kern/181439; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, xnox@debian.org Cc: Subject: Re: kern/181439: [headers] sys/wait.h is not enough to use waitid(), but kind of should be. Date: Thu, 22 Aug 2013 00:30:50 +0200 In PR kern/181439, you wrote: > [ does not define siginfo_t] POSIX says that shall define siginfo_t and may make visible all symbols from . This means that POSIX requires the application to #include explicitly if it wants to use the constants like SIGCHLD and CLD_EXITED. Therefore, I expect most applications to need an explicit #include anyway. To minimize namespace pollution, it would be best to create a new header that defines siginfo_t and include it from and , or to duplicate the definition. Adding the #include to would be simpler. If this is the way it should work, then it would be best to try to change POSIX to allow only this. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 21 23:10:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B3501A8F for ; Wed, 21 Aug 2013 23:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E476255D for ; Wed, 21 Aug 2013 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7LNA1hj065927 for ; Wed, 21 Aug 2013 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7LNA17u065926; Wed, 21 Aug 2013 23:10:01 GMT (envelope-from gnats) Date: Wed, 21 Aug 2013 23:10:01 GMT Message-Id: <201308212310.r7LNA17u065926@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jilles Tjoelker Subject: Re: kern/181459: [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2013 23:10:01 -0000 The following reply was made to PR kern/181459; it has been noted by GNATS. From: Jilles Tjoelker To: bug-followup@FreeBSD.org, yuri@tsoft.com Cc: Subject: Re: kern/181459: [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision Date: Thu, 22 Aug 2013 01:04:18 +0200 This patch does not add the POSIX utimensat() and futimens() calls, but a non-standard function. This new function only solves one of the inexcusable problems with futimesat() (that it is limited to microsecond precision) but not that it cannot set times on symlinks. You can start with http://lists.freebsd.org/pipermail/freebsd-arch/2012-February/012410.html I wrote a man page http://www.stack.nl/~jilles/unix/utimensat.2 I think this is close to done; it needs to be updated and re-tested. -- Jilles Tjoelker From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 01:45:06 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 629AEBFB; Thu, 22 Aug 2013 01:45:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37C77244D; Thu, 22 Aug 2013 01:45:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7M1j6jV006971; Thu, 22 Aug 2013 01:45:06 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7M1j6nr006970; Thu, 22 Aug 2013 01:45:06 GMT (envelope-from linimon) Date: Thu, 22 Aug 2013 01:45:06 GMT Message-Id: <201308220145.r7M1j6nr006970@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181445: [libfetch] [patch] Host header required by some proxies for HTTPS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 01:45:06 -0000 Old Synopsis: [PATCH] fetch(3) - Host header required by some proxies for HTTPS New Synopsis: [libfetch] [patch] Host header required by some proxies for HTTPS Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 22 01:44:31 UTC 2013 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=181445 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 01:46:59 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 52780C8B; Thu, 22 Aug 2013 01:46:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2581D2469; Thu, 22 Aug 2013 01:46:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7M1kwTl007065; Thu, 22 Aug 2013 01:46:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7M1kwXW007064; Thu, 22 Aug 2013 01:46:58 GMT (envelope-from linimon) Date: Thu, 22 Aug 2013 01:46:58 GMT Message-Id: <201308220146.r7M1kwXW007064@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181448: [mlxen] [patch] Using sysctl for mlxen stats might crash the kernel. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 01:46:59 -0000 Old Synopsis: Using sysctl for mlxen stats might crash the kernel. New Synopsis: [mlxen] [patch] Using sysctl for mlxen stats might crash the kernel. Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 22 01:45:52 UTC 2013 Responsible-Changed-Why: not amd64-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=181448 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 02:21:20 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1E406381; Thu, 22 Aug 2013 02:21:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6A79262C; Thu, 22 Aug 2013 02:21:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7M2LJjR015217; Thu, 22 Aug 2013 02:21:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7M2LJVJ015216; Thu, 22 Aug 2013 02:21:19 GMT (envelope-from linimon) Date: Thu, 22 Aug 2013 02:21:19 GMT Message-Id: <201308220221.r7M2LJVJ015216@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-acpi@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/173408: [acpi] [regression] ACPI Regression: battery does not update often X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 02:21:20 -0000 Old Synopsis: ACPI Regression: battery does not update often New Synopsis: [acpi] [regression] ACPI Regression: battery does not update often Responsible-Changed-From-To: freebsd-bugs->freebsd-acpi Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 22 02:21:01 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=173408 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 03:24:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 14E7DD94; Thu, 22 Aug 2013 03:24:00 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD60C2959; Thu, 22 Aug 2013 03:23:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7M3NxTQ027641; Thu, 22 Aug 2013 03:23:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7M3Nxc9027640; Thu, 22 Aug 2013 03:23:59 GMT (envelope-from linimon) Date: Thu, 22 Aug 2013 03:23:59 GMT Message-Id: <201308220323.r7M3Nxc9027640@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, rwatson@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181459: [openbsm] [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 03:24:00 -0000 Old Synopsis: [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision New Synopsis: [openbsm] [patch] Addition of 'futimensat' call allowing to set file time with nanosecond precision Responsible-Changed-From-To: freebsd-bugs->rwatson Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 22 03:23:26 UTC 2013 Responsible-Changed-Why: Robert, please assign this to whomever is most appropriate. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=181459 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 10:08:53 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 61446F7D; Thu, 22 Aug 2013 10:08:53 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3433E2EF9; Thu, 22 Aug 2013 10:08:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7MA8r3w018344; Thu, 22 Aug 2013 10:08:53 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7MA8rwW018343; Thu, 22 Aug 2013 10:08:53 GMT (envelope-from koobs) Date: Thu, 22 Aug 2013 10:08:53 GMT Message-Id: <201308221008.r7MA8rwW018343@freefall.freebsd.org> To: marck@freebsd.org, koobs@FreeBSD.org, freebsd-bugs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: bin/177080: gpart(8): /dev/gpt labels are not updated on ``gpart modify'' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 10:08:53 -0000 Synopsis: gpart(8): /dev/gpt labels are not updated on ``gpart modify'' State-Changed-From-To: open->closed State-Changed-By: koobs State-Changed-When: Thu Aug 22 10:08:52 UTC 2013 State-Changed-Why: Duplicate of kern/162690 http://www.freebsd.org/cgi/query-pr.cgi?pr=177080 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 11:00:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6DB1CC46 for ; Thu, 22 Aug 2013 11:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B1D3221C for ; Thu, 22 Aug 2013 11:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7MB01QL027800 for ; Thu, 22 Aug 2013 11:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7MB01BL027799; Thu, 22 Aug 2013 11:00:01 GMT (envelope-from gnats) Date: Thu, 22 Aug 2013 11:00:01 GMT Message-Id: <201308221100.r7MB01BL027799@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Steffen "Daode" Nurpmeso Subject: Re: bin/181435: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Steffen Daode Nurpmeso List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 11:00:01 -0000 The following reply was made to PR bin/181435; it has been noted by GNATS. From: Steffen "Daode" Nurpmeso To: Jilles Tjoelker Cc: bug-followup@FreeBSD.org Subject: Re: bin/181435: sh(1) wait(1) builtin fails after bg job was SIG(STOP|TSTP|CONT) controlled Date: Thu, 22 Aug 2013 12:50:08 +0200 Jilles Tjoelker wrote: |In PR bin/181435, you wrote: |>sh(1) wait(1) builtin fails after bg job was |>SIG(STOP|TSTP|CONT) controlled | |There is definitely a bug here because the wait builtin may delete a |stopped job named on the command line, as if it were done. yes =E2=80=93=C2=A0disappearing jobs are an annoyance. :-)) |Jilles Tjoelker Ciao, --steffen From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 22 11:07:37 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 68D25DFF for ; Thu, 22 Aug 2013 11:07:37 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail110.syd.optusnet.com.au (mail110.syd.optusnet.com.au [211.29.132.97]) by mx1.freebsd.org (Postfix) with ESMTP id 2B04722D4 for ; Thu, 22 Aug 2013 11:07:36 +0000 (UTC) Received: from c122-106-156-23.carlnfd1.nsw.optusnet.com.au (c122-106-156-23.carlnfd1.nsw.optusnet.com.au [122.106.156.23]) by mail110.syd.optusnet.com.au (Postfix) with ESMTPS id 346B1783C5A; Thu, 22 Aug 2013 21:07:25 +1000 (EST) Date: Thu, 22 Aug 2013 21:07:16 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Jilles Tjoelker Subject: Re: kern/181439: [headers] sys/wait.h is not enough to use waitid(), but kind of should be. In-Reply-To: <201308212240.r7LMe1DV060210@freefall.freebsd.org> Message-ID: <20130822205318.P1594@besplex.bde.org> References: <201308212240.r7LMe1DV060210@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=YYGEuWhf c=1 sm=1 tr=0 a=ebeQFi2P/qHVC0Yw9JDJ4g==:117 a=PO7r1zJSAAAA:8 a=M6qay9qaaSsA:10 a=kj9zAlcOel0A:10 a=JzwRw_2MAAAA:8 a=qn8c7nGIIGgA:10 a=Y4XTmd9sUAb5-LYJkpkA:9 a=CjuIK1q_8ugA:10 Cc: freebsd-bugs@FreeBSD.org X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 11:07:37 -0000 On Wed, 21 Aug 2013, Jilles Tjoelker wrote: > In PR kern/181439, you wrote: > > [ does not define siginfo_t] > > POSIX says that shall define siginfo_t and may make visible > all symbols from . This was even in the 2001 version (under an XSI extension) (waitid was there too). It has other bugs like requiring struct rusage (for wait3() and wait4() in . I think struct rusage is a BSD extension. BSD never declared struct rusage in . FreeBSD was compatible with POSIX in 2001 because these bugs were only in the XSI part. > This means that POSIX requires the application to #include > explicitly if it wants to use the constants like SIGCHLD and CLD_EXITED. > Therefore, I expect most applications to need an explicit #include > anyway. > > To minimize namespace pollution, it would be best to create a new header > that defines siginfo_t and include it from and , > or to duplicate the definition. > > Adding the #include to would be simpler. If this is the way > it should work, then it would be best to try to change POSIX to allow It's simpler and more broken to specify that every header shall include every header. "May make visible" is of almost equally low quality, since it allows simpler implementations without simplifing applications. Bruce From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 23 01:40:02 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 675C6BC6 for ; Fri, 23 Aug 2013 01:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 465F8243D for ; Fri, 23 Aug 2013 01:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7N1e2mS010170 for ; Fri, 23 Aug 2013 01:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7N1e23L010169; Fri, 23 Aug 2013 01:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 23 Aug 2013 01:40:02 GMT Resent-Message-Id: <201308230140.r7N1e23L010169@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Adam McDougall Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C256B66 for ; Fri, 23 Aug 2013 01:35:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69BA22420 for ; Fri, 23 Aug 2013 01:35:42 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7N1Zfv2078332 for ; Fri, 23 Aug 2013 01:35:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7N1ZfCa078328; Fri, 23 Aug 2013 01:35:41 GMT (envelope-from nobody) Message-Id: <201308230135.r7N1ZfCa078328@oldred.freebsd.org> Date: Fri, 23 Aug 2013 01:35:41 GMT From: Adam McDougall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: bin/181475: WITHOUT_PKGTOOLS=yes doesn't build pkg but make delete-old doesn't delete it X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Aug 2013 01:40:02 -0000 >Number: 181475 >Category: bin >Synopsis: WITHOUT_PKGTOOLS=yes doesn't build pkg but make delete-old doesn't delete it >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 23 01:40:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 9.2-BETA1 >Organization: >Environment: FreeBSD hostname 9.2-BETA1 FreeBSD 9.2-BETA1 #0 r253631: Thu Jul 25 21:44:11 EDT 2013 root@hostname2:/usr/obj/usr/src/sys/AMD64-9 amd64 >Description: After several mistaken runs of pkg_add while I was using pkgng, I decided it was time to purge pkg_* from my systems. I added WITHOUT_PKGTOOLS=yes to make.conf and 'make delete-old' in /usr/src did what I wanted, deleted the old pkg_ tools without deleting /usr/sbin/pkg. I added WITHOUT_PKGTOOLS=yes to my build procedure for new systems but found out it doesn't compile or install /usr/sbin/pkg. This was inconvenient although I could fetch, manually extract, and run pkg-static from a copy of pkg.tgz, but it would be nicer if /usr/sbin/pkg was still built, possibly controlled by a different variable in make.conf for people that truly don't want it. At the very least, 'make delete-old' should delete /usr/sbin/pkg if buildworld isn't going to build it, since it will get stale and possibly insecure if unmaintained. >How-To-Repeat: Add WITHOUT_PKGTOOLS=yes to make.conf to an existing system and run 'make delete-old' in /usr/src, /usr/sbin/pkg remains. But if you do a buildworld, pkg is not built or installed. >Fix: Preferred, remove SUBDIR+= pkg from .if ${MK_PKGTOOLS} != "no" in usr.sbin/Makefile. Introduce a new variable if desired. Less preferred, but to be consistent, add /usr/sbin/pkg to ObsoleteFiles.inc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 23 21:24:48 2013 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 25CD55CD for ; Fri, 23 Aug 2013 21:24:48 +0000 (UTC) (envelope-from zlatko.asenov@gmail.com) Received: from mail-ee0-x22e.google.com (mail-ee0-x22e.google.com [IPv6:2a00:1450:4013:c00::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADED5252E for ; Fri, 23 Aug 2013 21:24:47 +0000 (UTC) Received: by mail-ee0-f46.google.com with SMTP id c13so513945eek.33 for ; Fri, 23 Aug 2013 14:24:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=qoR2Fj0Zg2u/tHHRk1eaMD78Xb14JdRKqXU6TEUpc4g=; b=VcVnq0OEEppN6IijmPx9Ze63Cq7wLXXWsPRUFvT3zwl56lMH4L8LfgsUlPZ42Un+oV Job7VVS5Y1vxYzOYfcn1GqLmrTOurjZqWmJxPsgRorD3H2pGlTKo3RCf0DTm8vK4Q5k3 sqKIfWS/Z1X+I4N/fwi9YJ7jM978XcmREQbbqA7bA9Ao2XNfKgAqNIrUTzVrFQXZyzBo Qgibpghl0ky1W+kA/T0wyBFkI7JQDB4UE/zfur4Wfqh93xtlAeDiMzAdtmrh/iGOGVrg i++iuZusHZMbAPBAn3ZnT9YyueKhWHo1mpD+MsFD1F/7nfAe3qVcgw9cynmQDsrTOnrN Hc/A== X-Received: by 10.14.194.131 with SMTP id m3mr2074073een.45.1377293085852; Fri, 23 Aug 2013 14:24:45 -0700 (PDT) Received: from [192.168.13.100] ([93.152.132.145]) by mx.google.com with ESMTPSA id a1sm2320811eem.1.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 23 Aug 2013 14:24:44 -0700 (PDT) Message-ID: <5217D2E2.6000500@gmail.com> Date: Sat, 24 Aug 2013 00:23:46 +0300 From: Zlatko Asenov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130630 Thunderbird/17.0.7 MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Subject: buldkernel fail for 9.1-RELEASE References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Aug 2013 21:24:48 -0000 Hi, I downloaded the source of FreeBSD 9.1-RELEASE from svn today and it failed to build the kernel. Here are the last lines from compiling output: cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c ===> zlib (depend) @ -> /usr/src/sys machine -> /usr/src/sys/amd64/include x86 -> /usr/src/sys/x86/include rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/usr/obj/usr/src/sys/GENERIC /usr/src/sys/modules/zlib/../../net/zlib.c 1 error *** [buildkernel] Error code 2 1 error *** [buildkernel] Error code 2 1 error root@:/usr/src # How-To-Repeat: #svn co -r r254631 svn://svn.freebsd.org/base/release/9.1.0/ /usr/src #cd /usr/src #make -j9 buildworld && make -j9 buildkernel Additional info: I cleaned the /usr/src and /usr/obj directories before source download. #freebsd-update fetch install succeeded without errors. root@:/usr/src # uname -v FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC BR, Zlatko From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 00:44:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 650E2AC8; Sat, 24 Aug 2013 00:44:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39BF72F75; Sat, 24 Aug 2013 00:44:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7O0i1jW014199; Sat, 24 Aug 2013 00:44:01 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7O0i1D5014198; Sat, 24 Aug 2013 00:44:01 GMT (envelope-from linimon) Date: Sat, 24 Aug 2013 00:44:01 GMT Message-Id: <201308240044.r7O0i1D5014198@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, bapt@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: bin/181475: WITHOUT_PKGTOOLS=yes doesn't build pkg but make delete-old doesn't delete it X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 00:44:01 -0000 Synopsis: WITHOUT_PKGTOOLS=yes doesn't build pkg but make delete-old doesn't delete it Responsible-Changed-From-To: freebsd-bugs->bapt Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 24 00:42:59 UTC 2013 Responsible-Changed-Why: Even though this applies to src, assign to bapt to get his opinion. http://www.freebsd.org/cgi/query-pr.cgi?pr=181475 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 01:40:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C5E03351 for ; Sat, 24 Aug 2013 01:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A47521D0 for ; Sat, 24 Aug 2013 01:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7O1e025025369 for ; Sat, 24 Aug 2013 01:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7O1e0Hq025368; Sat, 24 Aug 2013 01:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 24 Aug 2013 01:40:00 GMT Resent-Message-Id: <201308240140.r7O1e0Hq025368@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Lee Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C1063319 for ; Sat, 24 Aug 2013 01:36:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD9F221B4 for ; Sat, 24 Aug 2013 01:36:06 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7O1a6Vg098059 for ; Sat, 24 Aug 2013 01:36:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7O1a5fM098033; Sat, 24 Aug 2013 01:36:05 GMT (envelope-from nobody) Message-Id: <201308240136.r7O1a5fM098033@oldred.freebsd.org> Date: Sat, 24 Aug 2013 01:36:05 GMT From: Steven Lee To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181496: Patch for CVE-2013-3077 (integer overflow in IP_MSFILTER) breaks dhclient X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 01:40:00 -0000 >Number: 181496 >Category: kern >Synopsis: Patch for CVE-2013-3077 (integer overflow in IP_MSFILTER) breaks dhclient >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 24 01:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steven Lee >Release: releng/9.2 >Organization: Root Hosts >Environment: FreeBSD box.localnet 9.2-RC2 FreeBSD 9.2-RC2 #1 r254680M: Fri Aug 23 07:44:25 UTC 2013 root@box.localnet:/sys/amd64/compile/GENERIC amd64 >Description: After applying the security patch dhclient doesn't work. Reverting the patch fixes it again. Tested on 9.2-RC2 and 9.1-RELEASE-p*. Same behaviour. A tcpdump shows the broadcast to 255.255.255.255 port 67 for the address request including my MAC address and the reply from the dhcp server, however dhclient just times every time. >How-To-Repeat: Apply the patch for CVE-2013-3077 to 9.1 or 9.2 and try to use dhclient to obtain an IP address. >Fix: Revert the patch (which is probably not what people really want). >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 02:20:00 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9B672692 for ; Sat, 24 Aug 2013 02:20:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BEBE2359 for ; Sat, 24 Aug 2013 02:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7O2K0JN033214 for ; Sat, 24 Aug 2013 02:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7O2K0Mt033213; Sat, 24 Aug 2013 02:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 24 Aug 2013 02:20:00 GMT Resent-Message-Id: <201308240220.r7O2K0Mt033213@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Lee Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D19C165E for ; Sat, 24 Aug 2013 02:15:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF872233C for ; Sat, 24 Aug 2013 02:15:41 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7O2FfEn009157 for ; Sat, 24 Aug 2013 02:15:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7O2Ff2o009155; Sat, 24 Aug 2013 02:15:41 GMT (envelope-from nobody) Message-Id: <201308240215.r7O2Ff2o009155@oldred.freebsd.org> Date: Sat, 24 Aug 2013 02:15:41 GMT From: Steven Lee To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181497: ASLR Feature Request - patch included X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 02:20:00 -0000 >Number: 181497 >Category: kern >Synopsis: ASLR Feature Request - patch included >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Aug 24 02:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steven Lee >Release: releng/9.2 >Organization: Root Hosts >Environment: N/A >Description: Most modern operating systems have ASLR to help mitigate yet-unknown vulnerabilities. It would be very nice if FreeBSD shipped with ASLR features in the kernel (default off), that could be easily switched on with a sysctl variable. I understand that in some production environments ASLR may make a system slower through memory fragmentation, but at least give people the option to turn ASLR on for those who actually want it. :) >How-To-Repeat: N/A >Fix: This patch has been circulating the internet since FreeBSD 7.0-RELEASE at least. It looks like parts of it are from OpenBSD? (I could be wrong.) I've used it in production for many many years and it works like a champ. The patch will just need the sysctl defaults inverted and the variable names possibly renamed for clarity. Patch attached with submission follows: commit 779a962519e7ead63dda24348b98f6cde8156752 Author: Oliver Pinter Date: Tue Oct 4 00:24:01 2011 +0200 forwardport mmap-randomization patch from 7-STABLE-op Signed-off-by: Oliver Pinter diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index fe01142..dc66db6 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -106,6 +106,7 @@ MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments"); static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS); static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS); static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS); +static int sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS); static int do_execve(struct thread *td, struct image_args *args, struct mac *mac_p); @@ -120,6 +121,9 @@ SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD| SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD, NULL, 0, sysctl_kern_stackprot, "I", ""); +SYSCTL_PROC(_kern, OID_AUTO, stackgap_random, CTLTYPE_INT|CTLFLAG_RW, + NULL, 0, sysctl_kern_stackgap_random, "I", "stackgap maximum offset"); + u_long ps_arg_cache_limit = PAGE_SIZE / 16; SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, &ps_arg_cache_limit, 0, ""); @@ -177,6 +181,30 @@ sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS) sizeof(p->p_sysent->sv_stackprot))); } +static int stackgap_random = 64 * 1024; + +static int +sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS) +{ + int err; + int val; + + val=stackgap_random; + err=sysctl_handle_int(oidp, &val, sizeof(int), req); + if (err || !req->newptr) { + return (err); + } + + if ((val64*1024*1024) { + return (EINVAL); + } + + stackgap_random=val; + + return (0); +} + /* * Each of the items is a pointer to a `const struct execsw', hence the * double pointer here. @@ -1248,6 +1276,7 @@ exec_copyout_strings(imgp) size_t execpath_len; int szsigcode, szps; char canary[sizeof(long) * 8]; + int sgap; szps = sizeof(pagesizes[0]) * MAXPAGESIZES; /* @@ -1265,7 +1294,11 @@ exec_copyout_strings(imgp) if (p->p_sysent->sv_szsigcode != NULL) szsigcode = *(p->p_sysent->sv_szsigcode); } - destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - + sgap=0; + if (stackgap_random!=0) { + sgap=ALIGN(arc4random()&(stackgap_random-1)); + } + destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - sgap - roundup(execpath_len, sizeof(char *)) - roundup(sizeof(canary), sizeof(char *)) - roundup(szps, sizeof(char *)) - diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index e85b681..991a37d 100644 --- a/sys/vm/vm_mmap.c +++ b/sys/vm/vm_mmap.c @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include @@ -99,6 +100,10 @@ static int vm_mmap_cdev(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *, static int vm_mmap_shm(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *, int *, struct shmfd *, vm_ooffset_t, vm_object_t *); +static int mmap_random=1; +SYSCTL_INT(_vm, OID_AUTO, mmap_random, CTLFLAG_RW, &mmap_random, 0, + "random mmap offset"); + /* * MPSAFE */ @@ -256,7 +261,8 @@ sys_mmap(td, uap) /* * XXX for non-fixed mappings where no hint is provided or * the hint would fall in the potential heap space, - * place it after the end of the largest possible heap. + * place it after the end of the largest possible heap, + * plus a random offset, if mmap_random is set. * * There should really be a pmap call to determine a reasonable * location. @@ -265,9 +271,13 @@ sys_mmap(td, uap) if (addr == 0 || (addr >= round_page((vm_offset_t)vms->vm_taddr) && addr < round_page((vm_offset_t)vms->vm_daddr + - lim_max(td->td_proc, RLIMIT_DATA)))) + lim_max(td->td_proc, RLIMIT_DATA)))) { addr = round_page((vm_offset_t)vms->vm_daddr + lim_max(td->td_proc, RLIMIT_DATA)); + if (mmap_random) { + addr+=arc4random()&(256*1024*1024-1); + } + } PROC_UNLOCK(td->td_proc); } if (flags & MAP_ANON) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 10:00:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8A2384F6 for ; Sat, 24 Aug 2013 10:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77F22253F for ; Sat, 24 Aug 2013 10:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OA012m035764 for ; Sat, 24 Aug 2013 10:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OA01wn035763; Sat, 24 Aug 2013 10:00:01 GMT (envelope-from gnats) Date: Sat, 24 Aug 2013 10:00:01 GMT Message-Id: <201308241000.r7OA01wn035763@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: bin/181435: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 10:00:01 -0000 The following reply was made to PR bin/181435; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/181435: commit references a PR Date: Sat, 24 Aug 2013 09:57:45 +0000 (UTC) Author: jilles Date: Sat Aug 24 09:57:32 2013 New Revision: 254767 URL: http://svnweb.freebsd.org/changeset/base/254767 Log: sh: Do not prematurely discard stopped jobs in a wait builtin. If a job is specified to 'wait', wait for it to complete. Formerly, in interactive mode, the job was deleted if it stopped. If no jobs are specified in interactive mode, 'wait' still waits for all jobs to complete or stop. In non-interactive mode, WUNTRACED is not passed to wait3() so stopped jobs are not detected. PR: bin/181435 Modified: head/bin/sh/jobs.c Modified: head/bin/sh/jobs.c ============================================================================== --- head/bin/sh/jobs.c Sat Aug 24 09:42:14 2013 (r254766) +++ head/bin/sh/jobs.c Sat Aug 24 09:57:32 2013 (r254767) @@ -495,14 +495,10 @@ waitcmdloop(struct job *job) in_waitcmd++; do { if (job != NULL) { - if (job->state) { + if (job->state == JOBDONE) { status = job->ps[job->nprocs - 1].status; if (WIFEXITED(status)) retval = WEXITSTATUS(status); -#if JOBS - else if (WIFSTOPPED(status)) - retval = WSTOPSIG(status) + 128; -#endif else retval = WTERMSIG(status) + 128; if (! iflag || ! job->changed) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 12:40:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 15DAF578 for ; Sat, 24 Aug 2013 12:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EAB5B2C50 for ; Sat, 24 Aug 2013 12:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OCe0Mi067766 for ; Sat, 24 Aug 2013 12:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OCe0u8067716; Sat, 24 Aug 2013 12:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 24 Aug 2013 12:40:00 GMT Resent-Message-Id: <201308241240.r7OCe0u8067716@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan Beich Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E690254A for ; Sat, 24 Aug 2013 12:36:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7CD92C3A for ; Sat, 24 Aug 2013 12:36:41 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7OCafv2074782 for ; Sat, 24 Aug 2013 12:36:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7OCaf2f074761; Sat, 24 Aug 2013 12:36:41 GMT (envelope-from nobody) Message-Id: <201308241236.r7OCaf2f074761@oldred.freebsd.org> Date: Sat, 24 Aug 2013 12:36:41 GMT From: Jan Beich To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: kern/181501: [regression] libstdc++ vs. std::isfinite() since math.h@r253260 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 12:40:01 -0000 >Number: 181501 >Category: kern >Synopsis: [regression] libstdc++ vs. std::isfinite() since math.h@r253260 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 24 12:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jan Beich >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: >Description: Recent math.h cleanup made c++ inconsistent in how it treats an integer argument for float functions between different standard libraries. cf. http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-January/027280.html >How-To-Repeat: $ cat a.cc #include int main() { std::isfinite(5); return 0; } $ c++ -stdlib=libc++ a.cc $ c++ -stdlib=libstdc++ a.cc In file included from a.cc:1: /usr/include/c++/4.2/cmath:472:51: error: controlling expression type 'int' not compatible with any generic association type __capture_isfinite(_Tp __f) { return isfinite(__f); } ^~~ /usr/include/math.h:115:38: note: expanded from macro 'isfinite' #define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel) ^ /usr/include/math.h:86:49: note: expanded from macro '__fp_type_select' #define __fp_type_select(x, f, d, ld) _Generic((x), \ ^ /usr/include/c++/4.2/cmath:543:45: note: in instantiation of function template specialization '__gnu_cxx::__capture_isfinite' requested here isfinite(_Tp __f) { return ::__gnu_cxx::__capture_isfinite(__f); } ^ a.cc:5:8: note: in instantiation of function template specialization 'std::isfinite' requested here std::isfinite(5); ^ 1 error generated. >Fix: either !defined(__cplusplus) or !defined(__GLIBCXX__) --- math.h_cxx.diff begins here --- Index: lib/msun/src/math.h =================================================================== --- lib/msun/src/math.h (revision 254772) +++ lib/msun/src/math.h (working copy) @@ -82,7 +82,7 @@ extern const union __nan_un { #define FP_ZERO 0x10 #if (__STDC_VERSION__ >= 201112L && defined(__clang__)) || \ - __has_extension(c_generic_selections) + __has_extension(c_generic_selections) && !defined(__cplusplus) #define __fp_type_select(x, f, d, ld) _Generic((x), \ float: f(x), \ double: d(x), \ --- math.h_cxx.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 13:50:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CCE1D51B for ; Sat, 24 Aug 2013 13:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8BF32F28 for ; Sat, 24 Aug 2013 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7ODo1nB085006 for ; Sat, 24 Aug 2013 13:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7ODo12O084969; Sat, 24 Aug 2013 13:50:01 GMT (envelope-from gnats) Date: Sat, 24 Aug 2013 13:50:01 GMT Message-Id: <201308241350.r7ODo12O084969@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Oliver Pinter Subject: Re: kern/181497: ASLR Feature Request - patch included X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Oliver Pinter List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 13:50:02 -0000 The following reply was made to PR kern/181497; it has been noted by GNATS. From: Oliver Pinter To: Steven Lee Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/181497: ASLR Feature Request - patch included Date: Sat, 24 Aug 2013 15:48:49 +0200 new version of the patchset: https://github.com/opntr/freebsd-patches-2013-tavasz/tree/master/r249952+ASLR On 8/24/13, Steven Lee wrote: > >>Number: 181497 >>Category: kern >>Synopsis: ASLR Feature Request - patch included >>Confidential: no >>Severity: non-critical >>Priority: low >>Responsible: freebsd-bugs >>State: open >>Quarter: >>Keywords: >>Date-Required: >>Class: change-request >>Submitter-Id: current-users >>Arrival-Date: Sat Aug 24 02:20:00 UTC 2013 >>Closed-Date: >>Last-Modified: >>Originator: Steven Lee >>Release: releng/9.2 >>Organization: > Root Hosts >>Environment: > N/A >>Description: > Most modern operating systems have ASLR to help mitigate yet-unknown > vulnerabilities. > > It would be very nice if FreeBSD shipped with ASLR features in the kernel > (default off), that could be easily switched on with a sysctl variable. > > I understand that in some production environments ASLR may make a system > slower through memory fragmentation, but at least give people the option to > turn ASLR on for those who actually want it. :) > >>How-To-Repeat: > N/A >>Fix: > This patch has been circulating the internet since FreeBSD 7.0-RELEASE at > least. It looks like parts of it are from OpenBSD? (I could be wrong.) I've > used it in production for many many years and it works like a champ. > > The patch will just need the sysctl defaults inverted and the variable names > possibly renamed for clarity. > > > Patch attached with submission follows: > > commit 779a962519e7ead63dda24348b98f6cde8156752 > Author: Oliver Pinter > Date: Tue Oct 4 00:24:01 2011 +0200 > > forwardport mmap-randomization patch from 7-STABLE-op > > Signed-off-by: Oliver Pinter > > diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c > index fe01142..dc66db6 100644 > --- a/sys/kern/kern_exec.c > +++ b/sys/kern/kern_exec.c > @@ -106,6 +106,7 @@ MALLOC_DEFINE(M_PARGS, "proc-args", "Process > arguments"); > static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS); > static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS); > static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS); > +static int sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS); > static int do_execve(struct thread *td, struct image_args *args, > struct mac *mac_p); > > @@ -120,6 +121,9 @@ SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, > CTLTYPE_ULONG|CTLFLAG_RD| > SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD, > NULL, 0, sysctl_kern_stackprot, "I", ""); > > +SYSCTL_PROC(_kern, OID_AUTO, stackgap_random, CTLTYPE_INT|CTLFLAG_RW, > + NULL, 0, sysctl_kern_stackgap_random, "I", "stackgap maximum offset"); > + > u_long ps_arg_cache_limit = PAGE_SIZE / 16; > SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, > &ps_arg_cache_limit, 0, ""); > @@ -177,6 +181,30 @@ sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS) > sizeof(p->p_sysent->sv_stackprot))); > } > > +static int stackgap_random = 64 * 1024; > + > +static int > +sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS) > +{ > + int err; > + int val; > + > + val=stackgap_random; > + err=sysctl_handle_int(oidp, &val, sizeof(int), req); > + if (err || !req->newptr) { > + return (err); > + } > + > + if ((val + || !powerof2(val) || val>64*1024*1024) { > + return (EINVAL); > + } > + > + stackgap_random=val; > + > + return (0); > +} > + > /* > * Each of the items is a pointer to a `const struct execsw', hence the > * double pointer here. > @@ -1248,6 +1276,7 @@ exec_copyout_strings(imgp) > size_t execpath_len; > int szsigcode, szps; > char canary[sizeof(long) * 8]; > + int sgap; > > szps = sizeof(pagesizes[0]) * MAXPAGESIZES; > /* > @@ -1265,7 +1294,11 @@ exec_copyout_strings(imgp) > if (p->p_sysent->sv_szsigcode != NULL) > szsigcode = *(p->p_sysent->sv_szsigcode); > } > - destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - > + sgap=0; > + if (stackgap_random!=0) { > + sgap=ALIGN(arc4random()&(stackgap_random-1)); > + } > + destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - sgap - > roundup(execpath_len, sizeof(char *)) - > roundup(sizeof(canary), sizeof(char *)) - > roundup(szps, sizeof(char *)) - > diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c > index e85b681..991a37d 100644 > --- a/sys/vm/vm_mmap.c > +++ b/sys/vm/vm_mmap.c > @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); > #include > #include > #include > +#include > > #include > > @@ -99,6 +100,10 @@ static int vm_mmap_cdev(struct thread *, vm_size_t, > vm_prot_t, vm_prot_t *, > static int vm_mmap_shm(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *, > int *, struct shmfd *, vm_ooffset_t, vm_object_t *); > > +static int mmap_random=1; > +SYSCTL_INT(_vm, OID_AUTO, mmap_random, CTLFLAG_RW, &mmap_random, 0, > + "random mmap offset"); > + > /* > * MPSAFE > */ > @@ -256,7 +261,8 @@ sys_mmap(td, uap) > /* > * XXX for non-fixed mappings where no hint is provided or > * the hint would fall in the potential heap space, > - * place it after the end of the largest possible heap. > + * place it after the end of the largest possible heap, > + * plus a random offset, if mmap_random is set. > * > * There should really be a pmap call to determine a reasonable > * location. > @@ -265,9 +271,13 @@ sys_mmap(td, uap) > if (addr == 0 || > (addr >= round_page((vm_offset_t)vms->vm_taddr) && > addr < round_page((vm_offset_t)vms->vm_daddr + > - lim_max(td->td_proc, RLIMIT_DATA)))) > + lim_max(td->td_proc, RLIMIT_DATA)))) { > addr = round_page((vm_offset_t)vms->vm_daddr + > lim_max(td->td_proc, RLIMIT_DATA)); > + if (mmap_random) { > + addr+=arc4random()&(256*1024*1024-1); > + } > + } > PROC_UNLOCK(td->td_proc); > } > if (flags & MAP_ANON) { > >>Release-Note: >>Audit-Trail: >>Unformatted: > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" > From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 16:19:36 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CDBB457F; Sat, 24 Aug 2013 16:19:36 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0C542659; Sat, 24 Aug 2013 16:19:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OGJajU017996; Sat, 24 Aug 2013 16:19:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OGJaUw017995; Sat, 24 Aug 2013 16:19:36 GMT (envelope-from linimon) Date: Sat, 24 Aug 2013 16:19:36 GMT Message-Id: <201308241619.r7OGJaUw017995@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, secteam@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181496: Patch for CVE-2013-3077 (integer overflow in IP_MSFILTER) breaks dhclient X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 16:19:36 -0000 Synopsis: Patch for CVE-2013-3077 (integer overflow in IP_MSFILTER) breaks dhclient Responsible-Changed-From-To: freebsd-bugs->secteam Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 24 16:19:04 UTC 2013 Responsible-Changed-Why: perhaps secteam can comment? http://www.freebsd.org/cgi/query-pr.cgi?pr=181496 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 16:22:19 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 16013601; Sat, 24 Aug 2013 16:22:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD32F2696; Sat, 24 Aug 2013 16:22:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OGMIBN019733; Sat, 24 Aug 2013 16:22:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OGMIH9019732; Sat, 24 Aug 2013 16:22:18 GMT (envelope-from linimon) Date: Sat, 24 Aug 2013 16:22:18 GMT Message-Id: <201308241622.r7OGMIH9019732@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, theraven@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: kern/181501: [regression] libstdc++ vs. std::isfinite() since math.h@r253260 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 16:22:19 -0000 Synopsis: [regression] libstdc++ vs. std::isfinite() since math.h@r253260 Responsible-Changed-From-To: freebsd-bugs->theraven Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 24 16:20:47 UTC 2013 Responsible-Changed-Why: Over to committer of that change. http://www.freebsd.org/cgi/query-pr.cgi?pr=181501 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 16:36:18 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D3FD2DB7; Sat, 24 Aug 2013 16:36:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A56D4275B; Sat, 24 Aug 2013 16:36:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OGaI6c022040; Sat, 24 Aug 2013 16:36:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OGaI8g022039; Sat, 24 Aug 2013 16:36:18 GMT (envelope-from linimon) Date: Sat, 24 Aug 2013 16:36:18 GMT Message-Id: <201308241636.r7OGaI8g022039@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/181446: x11/gnome2: Error occurrs when using a GUI frontent for package management X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 16:36:18 -0000 Old Synopsis: Error occurrs when using a GUI frontent for package management New Synopsis: x11/gnome2: Error occurrs when using a GUI frontent for package management Responsible-Changed-From-To: freebsd-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 24 16:34:56 UTC 2013 Responsible-Changed-Why: I don't know exactly which part of gnome this applies to, so pick a metaport for the Synopsis and use that as the basis of an assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=181446 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 21:00:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D822FB06 for ; Sat, 24 Aug 2013 21:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C49F822F3 for ; Sat, 24 Aug 2013 21:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OL01di073107 for ; Sat, 24 Aug 2013 21:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OL01EV073106; Sat, 24 Aug 2013 21:00:01 GMT (envelope-from gnats) Date: Sat, 24 Aug 2013 21:00:01 GMT Message-Id: <201308242100.r7OL01EV073106@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Steven Lee Subject: Re: kern/181497: ASLR Feature Request - patch included X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Steven Lee List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 21:00:01 -0000 The following reply was made to PR kern/181497; it has been noted by GNATS. From: Steven Lee To: Oliver Pinter , freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/181497: ASLR Feature Request - patch included Date: Sat, 24 Aug 2013 14:49:03 -0600 Wow... very nice. :) On 13-08-24 07:48 AM, Oliver Pinter wrote: > new version of the patchset: > https://github.com/opntr/freebsd-patches-2013-tavasz/tree/master/r249952+ASLR > > On 8/24/13, Steven Lee wrote: >> >>> Number: 181497 >>> Category: kern >>> Synopsis: ASLR Feature Request - patch included >>> Confidential: no >>> Severity: non-critical >>> Priority: low >>> Responsible: freebsd-bugs >>> State: open >>> Quarter: >>> Keywords: >>> Date-Required: >>> Class: change-request >>> Submitter-Id: current-users >>> Arrival-Date: Sat Aug 24 02:20:00 UTC 2013 >>> Closed-Date: >>> Last-Modified: >>> Originator: Steven Lee >>> Release: releng/9.2 >>> Organization: >> Root Hosts >>> Environment: >> N/A >>> Description: >> Most modern operating systems have ASLR to help mitigate yet-unknown >> vulnerabilities. >> >> It would be very nice if FreeBSD shipped with ASLR features in the kernel >> (default off), that could be easily switched on with a sysctl variable. >> >> I understand that in some production environments ASLR may make a system >> slower through memory fragmentation, but at least give people the option to >> turn ASLR on for those who actually want it. :) >> >>> How-To-Repeat: >> N/A >>> Fix: >> This patch has been circulating the internet since FreeBSD 7.0-RELEASE at >> least. It looks like parts of it are from OpenBSD? (I could be wrong.) I've >> used it in production for many many years and it works like a champ. >> >> The patch will just need the sysctl defaults inverted and the variable names >> possibly renamed for clarity. >> >> >> Patch attached with submission follows: >> >> commit 779a962519e7ead63dda24348b98f6cde8156752 >> Author: Oliver Pinter >> Date: Tue Oct 4 00:24:01 2011 +0200 >> >> forwardport mmap-randomization patch from 7-STABLE-op >> >> Signed-off-by: Oliver Pinter >> >> diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c >> index fe01142..dc66db6 100644 >> --- a/sys/kern/kern_exec.c >> +++ b/sys/kern/kern_exec.c >> @@ -106,6 +106,7 @@ MALLOC_DEFINE(M_PARGS, "proc-args", "Process >> arguments"); >> static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS); >> static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS); >> static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS); >> +static int sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS); >> static int do_execve(struct thread *td, struct image_args *args, >> struct mac *mac_p); >> >> @@ -120,6 +121,9 @@ SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, >> CTLTYPE_ULONG|CTLFLAG_RD| >> SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD, >> NULL, 0, sysctl_kern_stackprot, "I", ""); >> >> +SYSCTL_PROC(_kern, OID_AUTO, stackgap_random, CTLTYPE_INT|CTLFLAG_RW, >> + NULL, 0, sysctl_kern_stackgap_random, "I", "stackgap maximum offset"); >> + >> u_long ps_arg_cache_limit = PAGE_SIZE / 16; >> SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, >> &ps_arg_cache_limit, 0, ""); >> @@ -177,6 +181,30 @@ sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS) >> sizeof(p->p_sysent->sv_stackprot))); >> } >> >> +static int stackgap_random = 64 * 1024; >> + >> +static int >> +sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS) >> +{ >> + int err; >> + int val; >> + >> + val=stackgap_random; >> + err=sysctl_handle_int(oidp, &val, sizeof(int), req); >> + if (err || !req->newptr) { >> + return (err); >> + } >> + >> + if ((val> + || !powerof2(val) || val>64*1024*1024) { >> + return (EINVAL); >> + } >> + >> + stackgap_random=val; >> + >> + return (0); >> +} >> + >> /* >> * Each of the items is a pointer to a `const struct execsw', hence the >> * double pointer here. >> @@ -1248,6 +1276,7 @@ exec_copyout_strings(imgp) >> size_t execpath_len; >> int szsigcode, szps; >> char canary[sizeof(long) * 8]; >> + int sgap; >> >> szps = sizeof(pagesizes[0]) * MAXPAGESIZES; >> /* >> @@ -1265,7 +1294,11 @@ exec_copyout_strings(imgp) >> if (p->p_sysent->sv_szsigcode != NULL) >> szsigcode = *(p->p_sysent->sv_szsigcode); >> } >> - destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - >> + sgap=0; >> + if (stackgap_random!=0) { >> + sgap=ALIGN(arc4random()&(stackgap_random-1)); >> + } >> + destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - sgap - >> roundup(execpath_len, sizeof(char *)) - >> roundup(sizeof(canary), sizeof(char *)) - >> roundup(szps, sizeof(char *)) - >> diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c >> index e85b681..991a37d 100644 >> --- a/sys/vm/vm_mmap.c >> +++ b/sys/vm/vm_mmap.c >> @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); >> #include >> #include >> #include >> +#include >> >> #include >> >> @@ -99,6 +100,10 @@ static int vm_mmap_cdev(struct thread *, vm_size_t, >> vm_prot_t, vm_prot_t *, >> static int vm_mmap_shm(struct thread *, vm_size_t, vm_prot_t, vm_prot_t *, >> int *, struct shmfd *, vm_ooffset_t, vm_object_t *); >> >> +static int mmap_random=1; >> +SYSCTL_INT(_vm, OID_AUTO, mmap_random, CTLFLAG_RW, &mmap_random, 0, >> + "random mmap offset"); >> + >> /* >> * MPSAFE >> */ >> @@ -256,7 +261,8 @@ sys_mmap(td, uap) >> /* >> * XXX for non-fixed mappings where no hint is provided or >> * the hint would fall in the potential heap space, >> - * place it after the end of the largest possible heap. >> + * place it after the end of the largest possible heap, >> + * plus a random offset, if mmap_random is set. >> * >> * There should really be a pmap call to determine a reasonable >> * location. >> @@ -265,9 +271,13 @@ sys_mmap(td, uap) >> if (addr == 0 || >> (addr >= round_page((vm_offset_t)vms->vm_taddr) && >> addr < round_page((vm_offset_t)vms->vm_daddr + >> - lim_max(td->td_proc, RLIMIT_DATA)))) >> + lim_max(td->td_proc, RLIMIT_DATA)))) { >> addr = round_page((vm_offset_t)vms->vm_daddr + >> lim_max(td->td_proc, RLIMIT_DATA)); >> + if (mmap_random) { >> + addr+=arc4random()&(256*1024*1024-1); >> + } >> + } >> PROC_UNLOCK(td->td_proc); >> } >> if (flags & MAP_ANON) { >> >>> Release-Note: >>> Audit-Trail: >>> Unformatted: >> _______________________________________________ >> freebsd-bugs@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-bugs >> To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" >> -- Regards, Steven Lee From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 24 21:40:16 2013 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7D0F6708 for ; Sat, 24 Aug 2013 21:40:16 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: from mail-oa0-x236.google.com (mail-oa0-x236.google.com [IPv6:2607:f8b0:4003:c02::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4416B254D for ; Sat, 24 Aug 2013 21:40:16 +0000 (UTC) Received: by mail-oa0-f54.google.com with SMTP id o6so2207340oag.27 for ; Sat, 24 Aug 2013 14:40:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=NAOwznRz+6j45vCEctGi511CDeICIaksKGQ9l0lSpEY=; b=cZ3wv3BSeIzNUh8yznsh10S7eOHksfwIzv4vJN3HzAx99mbgtvDd77B+Q7XUn4gLhO SpbUFrL3HWCmXKGpHq+p7fxrUDjLl67F44JUiU/0kONX/6S6TloDPYOhNYwXz9AxrvNM wMmBm2AXZYTihBpguynyatfbO8Z3OmKzlkwnCDDIHse4yPmFMKUwM2PCTZlCLebuj128 oQkKrcNVMJowYdxhwms3nz0jiwL1LB+3mLlp9FS8yUZORaXArIEeI0r/2FhWX3kS46MW F/88nJXj5hVUlYMgVPTO/p8l+CSiTsHUS+JwJXVgg6kQgtWEus35T5PXPKr5ws2gmUm8 doZg== MIME-Version: 1.0 X-Received: by 10.60.43.131 with SMTP id w3mr6318364oel.10.1377380415496; Sat, 24 Aug 2013 14:40:15 -0700 (PDT) Received: by 10.182.22.161 with HTTP; Sat, 24 Aug 2013 14:40:15 -0700 (PDT) In-Reply-To: <201308242100.r7OL01EV073106@freefall.freebsd.org> References: <201308242100.r7OL01EV073106@freefall.freebsd.org> Date: Sat, 24 Aug 2013 23:40:15 +0200 Message-ID: Subject: Re: kern/181497: ASLR Feature Request - patch included From: Oliver Pinter To: Steven Lee Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-bugs@freebsd.org X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 21:40:16 -0000 performance test on HEAD from Juni + ASLR patches: http://centaur.sch.bme.hu/~oliverp/hunger/new/ On 8/24/13, Steven Lee wrote: > The following reply was made to PR kern/181497; it has been noted by GNATS. > > From: Steven Lee > To: Oliver Pinter , > freebsd-gnats-submit@freebsd.org > Cc: > Subject: Re: kern/181497: ASLR Feature Request - patch included > Date: Sat, 24 Aug 2013 14:49:03 -0600 > > Wow... very nice. :) > > On 13-08-24 07:48 AM, Oliver Pinter wrote: > > new version of the patchset: > > > https://github.com/opntr/freebsd-patches-2013-tavasz/tree/master/r249952+ASLR > > > > On 8/24/13, Steven Lee wrote: > >> > >>> Number: 181497 > >>> Category: kern > >>> Synopsis: ASLR Feature Request - patch included > >>> Confidential: no > >>> Severity: non-critical > >>> Priority: low > >>> Responsible: freebsd-bugs > >>> State: open > >>> Quarter: > >>> Keywords: > >>> Date-Required: > >>> Class: change-request > >>> Submitter-Id: current-users > >>> Arrival-Date: Sat Aug 24 02:20:00 UTC 2013 > >>> Closed-Date: > >>> Last-Modified: > >>> Originator: Steven Lee > >>> Release: releng/9.2 > >>> Organization: > >> Root Hosts > >>> Environment: > >> N/A > >>> Description: > >> Most modern operating systems have ASLR to help mitigate yet-unknown > >> vulnerabilities. > >> > >> It would be very nice if FreeBSD shipped with ASLR features in the > kernel > >> (default off), that could be easily switched on with a sysctl variable. > >> > >> I understand that in some production environments ASLR may make a > system > >> slower through memory fragmentation, but at least give people the option > to > >> turn ASLR on for those who actually want it. :) > >> > >>> How-To-Repeat: > >> N/A > >>> Fix: > >> This patch has been circulating the internet since FreeBSD 7.0-RELEASE > at > >> least. It looks like parts of it are from OpenBSD? (I could be wrong.) > I've > >> used it in production for many many years and it works like a champ. > >> > >> The patch will just need the sysctl defaults inverted and the variable > names > >> possibly renamed for clarity. > >> > >> > >> Patch attached with submission follows: > >> > >> commit 779a962519e7ead63dda24348b98f6cde8156752 > >> Author: Oliver Pinter > >> Date: Tue Oct 4 00:24:01 2011 +0200 > >> > >> forwardport mmap-randomization patch from 7-STABLE-op > >> > >> Signed-off-by: Oliver Pinter > >> > >> diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c > >> index fe01142..dc66db6 100644 > >> --- a/sys/kern/kern_exec.c > >> +++ b/sys/kern/kern_exec.c > >> @@ -106,6 +106,7 @@ MALLOC_DEFINE(M_PARGS, "proc-args", "Process > >> arguments"); > >> static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS); > >> static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS); > >> static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS); > >> +static int sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS); > >> static int do_execve(struct thread *td, struct image_args *args, > >> struct mac *mac_p); > >> > >> @@ -120,6 +121,9 @@ SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, > >> CTLTYPE_ULONG|CTLFLAG_RD| > >> SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD, > >> NULL, 0, sysctl_kern_stackprot, "I", ""); > >> > >> +SYSCTL_PROC(_kern, OID_AUTO, stackgap_random, CTLTYPE_INT|CTLFLAG_RW, > >> + NULL, 0, sysctl_kern_stackgap_random, "I", "stackgap maximum > offset"); > >> + > >> u_long ps_arg_cache_limit = PAGE_SIZE / 16; > >> SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, > >> &ps_arg_cache_limit, 0, ""); > >> @@ -177,6 +181,30 @@ sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS) > >> sizeof(p->p_sysent->sv_stackprot))); > >> } > >> > >> +static int stackgap_random = 64 * 1024; > >> + > >> +static int > >> +sysctl_kern_stackgap_random(SYSCTL_HANDLER_ARGS) > >> +{ > >> + int err; > >> + int val; > >> + > >> + val=stackgap_random; > >> + err=sysctl_handle_int(oidp, &val, sizeof(int), req); > >> + if (err || !req->newptr) { > >> + return (err); > >> + } > >> + > >> + if ((val >> + || !powerof2(val) || val>64*1024*1024) { > >> + return (EINVAL); > >> + } > >> + > >> + stackgap_random=val; > >> + > >> + return (0); > >> +} > >> + > >> /* > >> * Each of the items is a pointer to a `const struct execsw', hence > the > >> * double pointer here. > >> @@ -1248,6 +1276,7 @@ exec_copyout_strings(imgp) > >> size_t execpath_len; > >> int szsigcode, szps; > >> char canary[sizeof(long) * 8]; > >> + int sgap; > >> > >> szps = sizeof(pagesizes[0]) * MAXPAGESIZES; > >> /* > >> @@ -1265,7 +1294,11 @@ exec_copyout_strings(imgp) > >> if (p->p_sysent->sv_szsigcode != NULL) > >> szsigcode = *(p->p_sysent->sv_szsigcode); > >> } > >> - destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - > >> + sgap=0; > >> + if (stackgap_random!=0) { > >> + sgap=ALIGN(arc4random()&(stackgap_random-1)); > >> + } > >> + destp = (caddr_t)arginfo - szsigcode - SPARE_USRSPACE - sgap - > >> roundup(execpath_len, sizeof(char *)) - > >> roundup(sizeof(canary), sizeof(char *)) - > >> roundup(szps, sizeof(char *)) - > >> diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c > >> index e85b681..991a37d 100644 > >> --- a/sys/vm/vm_mmap.c > >> +++ b/sys/vm/vm_mmap.c > >> @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); > >> #include > >> #include > >> #include > >> +#include > >> > >> #include > >> > >> @@ -99,6 +100,10 @@ static int vm_mmap_cdev(struct thread *, vm_size_t, > >> vm_prot_t, vm_prot_t *, > >> static int vm_mmap_shm(struct thread *, vm_size_t, vm_prot_t, vm_prot_t > *, > >> int *, struct shmfd *, vm_ooffset_t, vm_object_t *); > >> > >> +static int mmap_random=1; > >> +SYSCTL_INT(_vm, OID_AUTO, mmap_random, CTLFLAG_RW, &mmap_random, 0, > >> + "random mmap offset"); > >> + > >> /* > >> * MPSAFE > >> */ > >> @@ -256,7 +261,8 @@ sys_mmap(td, uap) > >> /* > >> * XXX for non-fixed mappings where no hint is provided or > >> * the hint would fall in the potential heap space, > >> - * place it after the end of the largest possible heap. > >> + * place it after the end of the largest possible heap, > >> + * plus a random offset, if mmap_random is set. > >> * > >> * There should really be a pmap call to determine a reasonable > >> * location. > >> @@ -265,9 +271,13 @@ sys_mmap(td, uap) > >> if (addr == 0 || > >> (addr >= round_page((vm_offset_t)vms->vm_taddr) && > >> addr < round_page((vm_offset_t)vms->vm_daddr + > >> - lim_max(td->td_proc, RLIMIT_DATA)))) > >> + lim_max(td->td_proc, RLIMIT_DATA)))) { > >> addr = round_page((vm_offset_t)vms->vm_daddr + > >> lim_max(td->td_proc, RLIMIT_DATA)); > >> + if (mmap_random) { > >> + addr+=arc4random()&(256*1024*1024-1); > >> + } > >> + } > >> PROC_UNLOCK(td->td_proc); > >> } > >> if (flags & MAP_ANON) { > >> > >>> Release-Note: > >>> Audit-Trail: > >>> Unformatted: > >> _______________________________________________ > >> freebsd-bugs@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > >> To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" > >> > > -- > Regards, > Steven Lee > > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" >