From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 00:40:06 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E656B1065673 for ; Sun, 23 Oct 2011 00:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD8338FC15 for ; Sun, 23 Oct 2011 00:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N0e5cj073171 for ; Sun, 23 Oct 2011 00:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N0e5cr073170; Sun, 23 Oct 2011 00:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 00:40:05 GMT Resent-Message-Id: <201110230040.p9N0e5cr073170@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, Yuriy Taraday Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D72091065673 for ; Sun, 23 Oct 2011 00:35:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADAAF8FC0C for ; Sun, 23 Oct 2011 00:35:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N0ZNwT035691 for ; Sun, 23 Oct 2011 00:35:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N0ZN8k035690; Sun, 23 Oct 2011 00:35:23 GMT (envelope-from nobody) Message-Id: <201110230035.p9N0ZN8k035690@red.freebsd.org> Date: Sun, 23 Oct 2011 00:35:23 GMT From: Yuriy Taraday To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/161912: kernel sends incorrect notify to devctl about device changes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 00:40:06 -0000 >Number: 161912 >Category: kern >Synopsis: kernel sends incorrect notify to devctl about device changes >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 Oct 23 00:40:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Yuriy Taraday >Release: 8.1-RELEASE-p2 >Organization: >Environment: FreeBSD greater 8.1-RELEASE-p2 FreeBSD 8.1-RELEASE-p2 #0: Sun Oct 23 04:13:10 MSD 2011 root@greater:/usr/obj/usr/src/sys/MYCONF amd64 >Description: When new device node is created or destroyed, kernel sends notify to devctl in this form: !system=DEVFS subsystem=CDEV type=DESTROY cdev= where is being substituted with the name of device. If device name contains whitespaces, devd scraps out everything but the part before the first space in cdev parameter, so we can not correctly handle device name in devd. >How-To-Repeat: I found out the problem when I was looking into what happens in devd when I insert my USB flash drive. System eventually creates "msdosfs/ADATA UFD" device, but devd handles it as "msdosfs/ADATA" device. >Fix: See attached patch. It wraps in double quotes so that devd ignores spaces in it. Patch attached with submission follows: --- ./sys/kern/kern_conf.c.orig 2011-10-23 03:55:45.000000000 +0400 +++ ./sys/kern/kern_conf.c 2011-10-23 04:10:57.000000000 +0400 @@ -510,19 +510,21 @@ static void notify(struct cdev *dev, const char *ev, int flags) { - static const char prefix[] = "cdev="; + static const char prefix[] = "cdev=\""; char *data; int namelen; if (cold) return; namelen = strlen(dev->si_name); - data = malloc(namelen + sizeof(prefix), M_TEMP, + data = malloc(namelen + sizeof(prefix) + 1, M_TEMP, (flags & MAKEDEV_NOWAIT) ? M_NOWAIT : M_WAITOK); if (data == NULL) return; memcpy(data, prefix, sizeof(prefix) - 1); - memcpy(data + sizeof(prefix) - 1, dev->si_name, namelen + 1); + memcpy(data + sizeof(prefix) - 1, dev->si_name, namelen); + data[sizeof(prefix) + namelen - 1] = '"'; + data[sizeof(prefix) + namelen] = '\0'; devctl_notify("DEVFS", "CDEV", ev, data); free(data, M_TEMP); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 06:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BED44106566C for ; Sun, 23 Oct 2011 06:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3FB208FC0A for ; Sun, 23 Oct 2011 06:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N60LGs070985 for ; Sun, 23 Oct 2011 06:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N60L54070984; Sun, 23 Oct 2011 06:00:21 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 06:00:21 GMT Resent-Message-Id: <201110230600.p9N60L54070984@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, Garrett Cooper Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB218106564A for ; Sun, 23 Oct 2011 05:53:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AB7708FC0C for ; Sun, 23 Oct 2011 05:53:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N5rM4k035468 for ; Sun, 23 Oct 2011 05:53:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N5rMbv035460; Sun, 23 Oct 2011 05:53:22 GMT (envelope-from nobody) Message-Id: <201110230553.p9N5rMbv035460@red.freebsd.org> Date: Sun, 23 Oct 2011 05:53:22 GMT From: Garrett Cooper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161915: pjdtests don't articulate requirements very well X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 06:00:24 -0000 >Number: 161915 >Category: misc >Synopsis: pjdtests don't articulate requirements very well >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 Oct 23 06:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.x >Organization: n/a >Environment: FreeBSD akai-ntbk.local 9.0-BETA2 FreeBSD 9.0-BETA2 #5 r225494M: Sun Sep 11 18:59:27 PDT 2011 root@akai-ntbk.local:/usr/obj/usr/src/sys/NETBOOK_NOSMP i386 >Description: 1. Some testcases assume that the user has root privileges (use mdconfig -a / mount, etc). 2. Linux support exists at one degree or another. Properly call out the requirements in the documentation. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: tools/regression/pjdfstest/README =================================================================== --- tools/regression/pjdfstest/README (revision 226648) +++ tools/regression/pjdfstest/README (working copy) @@ -2,6 +2,10 @@ Few notes on how to use pjdfstest in short steps: +- You currently _must_ be root when running these testcases. + +An example test run is shown as follows: + # cd pjdfstest # vi tests/conf Change 'fs' to file system type you want to test (UFS or ZFS). @@ -15,7 +19,7 @@ That's all. Enjoy. -Currently supported operating systems: FreeBSD, Solaris. +Currently supported operating systems: FreeBSD, Linux, Solaris. Currently supported file system types: UFS, ZFS. -- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 06:10:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FCA91065689 for ; Sun, 23 Oct 2011 06:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F29AF8FC1D for ; Sun, 23 Oct 2011 06:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N6A7Ul079871 for ; Sun, 23 Oct 2011 06:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N6A7na079870; Sun, 23 Oct 2011 06:10:07 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 06:10:07 GMT Resent-Message-Id: <201110230610.p9N6A7na079870@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, Garrett Cooper Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CAC21065673 for ; Sun, 23 Oct 2011 06:04:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8CEB18FC12 for ; Sun, 23 Oct 2011 06:04:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N646pi058339 for ; Sun, 23 Oct 2011 06:04:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N6463d058318; Sun, 23 Oct 2011 06:04:06 GMT (envelope-from nobody) Message-Id: <201110230604.p9N6463d058318@red.freebsd.org> Date: Sun, 23 Oct 2011 06:04:06 GMT From: Garrett Cooper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161917: pjdfstest doesn't detect setup/teardown failures properly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 06:10:08 -0000 >Number: 161917 >Category: misc >Synopsis: pjdfstest doesn't detect setup/teardown failures properly >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 06:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.x >Organization: n/a >Environment: FreeBSD akai-ntbk.local 9.0-BETA2 FreeBSD 9.0-BETA2 #5 r225494M: Sun Sep 11 18:59:27 PDT 2011 root@akai-ntbk.local:/usr/obj/usr/src/sys/NETBOOK_NOSMP i386 >Description: Because the superuser requirement isn't properly tested today, one can clog up a production filesystem with garbage (example: mkfifo/11.t). I discovered over 5 million fifos in my UFS-based scratch directory prior to a backup and reinstall, because mdconfig / mount / umount operation [in general] requires superuser privileges, whereas mkfifo doesn't. >How-To-Repeat: Execute the following as a non-root user: cd tools/regression/pjdfstest make prove -r test >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 08:40:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF4EC1065677 for ; Sun, 23 Oct 2011 08:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A4758FC0A for ; Sun, 23 Oct 2011 08:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8e9rP050919 for ; Sun, 23 Oct 2011 08:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N8e9hu050918; Sun, 23 Oct 2011 08:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 08:40:09 GMT Resent-Message-Id: <201110230840.p9N8e9hu050918@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, Manolis Kiagias Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA48E106564A for ; Sun, 23 Oct 2011 08:32:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A98568FC0C for ; Sun, 23 Oct 2011 08:32:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8Wuf3012969 for ; Sun, 23 Oct 2011 08:32:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N8WuZh012968; Sun, 23 Oct 2011 08:32:56 GMT (envelope-from nobody) Message-Id: <201110230832.p9N8WuZh012968@red.freebsd.org> Date: Sun, 23 Oct 2011 08:32:56 GMT From: Manolis Kiagias To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161921: named(8): default configuration on 9.0-RC1 produces an error during startup X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 08:40:09 -0000 >Number: 161921 >Category: bin >Synopsis: named(8): default configuration on 9.0-RC1 produces an error during startup >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 08:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Manolis Kiagias >Release: 9.0-RC1 >Organization: >Environment: >Description: Setting named_enable="YES" to /etc/rc.conf and starting named produces the following error at the console: managed-keys-zone ./IN: loading from master file managed-keys.bind failed: file not found Apparently this is a file used by DNSSEC and is not present in the default configuration. The server still starts and answers queries normally, this is not a fatal error. >How-To-Repeat: Set named_enable="YES" to /etc/rc.conf and execute service named start >Fix: Creating the above file as an empty file in /etc/namedb/working hushes the error message (i.e. touch /etc/namedb/working/managed-keys.bind). Either the default named configuration should be changed or bsdinstall should create this file during installation. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 08:50:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EE281065675 for ; Sun, 23 Oct 2011 08:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A5258FC15 for ; Sun, 23 Oct 2011 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8o9sg059917 for ; Sun, 23 Oct 2011 08:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N8o9nU059916; Sun, 23 Oct 2011 08:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 08:50:09 GMT Resent-Message-Id: <201110230850.p9N8o9nU059916@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, Rainer Hurling Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 031971065670 for ; Sun, 23 Oct 2011 08:50:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E08EE8FC13 for ; Sun, 23 Oct 2011 08:50:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8o13P047357 for ; Sun, 23 Oct 2011 08:50:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N8o14g047356; Sun, 23 Oct 2011 08:50:01 GMT (envelope-from nobody) Message-Id: <201110230850.p9N8o14g047356@red.freebsd.org> Date: Sun, 23 Oct 2011 08:50:01 GMT From: Rainer Hurling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 08:50:10 -0000 >Number: 161922 >Category: misc >Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs >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 Oct 23 08:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rainer Hurling >Release: FreeBSD 9.0-BETA2 amd64 >Organization: >Environment: FreeBSD xxx.xxx 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Tue Sep 27 10:18:08 CEST 2011 xxx@xxx.xxx:/usr/obj/usr/src/sys/XXX amd64 >Description: SAGA GIS installs libtool helper files for each library in ${PREFIX}/lib/saga. The presence of these .la files (and one static .a file for odbc) hinders graphics/qgis from starting correctly, when QGIS has plugins for the work with SAGA GIS modules installed. >How-To-Repeat: 1. Install math/saga with 'Python bindings' enabled. 2. Install graphics/qgis with 'Python support' enabled. 3. Within QGIS, install the following two plugins (menu 'Extensions'), which enables the use of SAGA GIS modules via python bindings: - Processing Framework Manager - SAGA Module interface After that, try to restart QGIS from shell. In the shell endless messages appear about not finding the correct libraries and QGIS does not start. >Fix: The following patch removes the helper files and static libs from lib/saga. After that, QGIS can use SAGA GIS modules via python bindings. Patch attached with submission follows: diff -Naur saga.orig/Makefile saga/Makefile --- saga.orig/Makefile 2011-10-19 22:46:32.000000000 +0200 +++ saga/Makefile 2011-10-21 13:36:28.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= saga PORTVERSION= 2.0.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]*$//}/SAGA%20${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -98,5 +98,7 @@ ${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/saga_tip.txt ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/xpm/saga_icon_32.xpm ${DATADIR} @${CAT} ${PKGMESSAGE} + @${RM} ${PREFIX}/lib/saga/*.la + @${RM} ${PREFIX}/lib/saga/*.a .include diff -Naur saga.orig/pkg-plist saga/pkg-plist --- saga.orig/pkg-plist 2011-07-16 19:10:27.000000000 +0200 +++ saga/pkg-plist 2011-10-21 13:33:09.000000000 +0200 @@ -17,128 +17,66 @@ %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.py %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyc %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyo -lib/saga/libcontrib_a_perego.la lib/saga/libcontrib_a_perego.so -lib/saga/libdocs_html.la lib/saga/libdocs_html.so -%%HARU%%lib/saga/libdocs_pdf.la %%HARU%%lib/saga/libdocs_pdf.so -lib/saga/libgarden_3d_viewer.la lib/saga/libgarden_3d_viewer.so -lib/saga/libgeostatistics_grid.la lib/saga/libgeostatistics_grid.so -lib/saga/libgeostatistics_kriging.la lib/saga/libgeostatistics_kriging.so -lib/saga/libgeostatistics_points.la lib/saga/libgeostatistics_points.so -lib/saga/libgeostatistics_regression.la lib/saga/libgeostatistics_regression.so -lib/saga/libgrid_analysis.la lib/saga/libgrid_analysis.so -lib/saga/libgrid_calculus.la lib/saga/libgrid_calculus.so -lib/saga/libgrid_calculus_bsl.la lib/saga/libgrid_calculus_bsl.so -lib/saga/libgrid_filter.la lib/saga/libgrid_filter.so -lib/saga/libgrid_gridding.la lib/saga/libgrid_gridding.so -lib/saga/libgrid_spline.la lib/saga/libgrid_spline.so -lib/saga/libgrid_tools.la lib/saga/libgrid_tools.so -lib/saga/libgrid_visualisation.la lib/saga/libgrid_visualisation.so -lib/saga/libihacres.la lib/saga/libihacres.so -lib/saga/libimagery_classification.la lib/saga/libimagery_classification.so -lib/saga/libimagery_rga.la lib/saga/libimagery_rga.so -lib/saga/libimagery_segmentation.la lib/saga/libimagery_segmentation.so -lib/saga/libimagery_tools.la lib/saga/libimagery_tools.so -lib/saga/libio_esri_e00.la lib/saga/libio_esri_e00.so -lib/saga/libio_gdal.la lib/saga/libio_gdal.so -lib/saga/libio_gps.la lib/saga/libio_gps.so -lib/saga/libio_grid.la lib/saga/libio_grid.so -lib/saga/libio_grid_grib2.la lib/saga/libio_grid_grib2.so -lib/saga/libio_grid_image.la lib/saga/libio_grid_image.so -lib/saga/libio_odbc.a -lib/saga/libio_odbc.la lib/saga/libio_odbc.so -lib/saga/libio_shapes.la lib/saga/libio_shapes.so -lib/saga/libio_shapes_dxf.la lib/saga/libio_shapes_dxf.so -lib/saga/libio_shapes_las.la lib/saga/libio_shapes_las.so -lib/saga/libio_table.la lib/saga/libio_table.so -lib/saga/liblectures_introduction.la lib/saga/liblectures_introduction.so -lib/saga/libopencv.la lib/saga/libopencv.so -lib/saga/libpj_georeference.la lib/saga/libpj_georeference.so -lib/saga/libpj_proj4.la lib/saga/libpj_proj4.so -lib/saga/libpointcloud_tools.la lib/saga/libpointcloud_tools.so -lib/saga/libpointcloud_viewer.la lib/saga/libpointcloud_viewer.so -lib/saga/librecreations_fractals.la lib/saga/librecreations_fractals.so -lib/saga/librecreations_games.la lib/saga/librecreations_games.so -lib/saga/libshapes_grid.la lib/saga/libshapes_grid.so -lib/saga/libshapes_lines.la lib/saga/libshapes_lines.so -lib/saga/libshapes_points.la lib/saga/libshapes_points.so -lib/saga/libshapes_polygons.la lib/saga/libshapes_polygons.so -lib/saga/libshapes_tools.la lib/saga/libshapes_tools.so -lib/saga/libsim_cellular_automata.la lib/saga/libsim_cellular_automata.so -lib/saga/libsim_ecosystems_hugget.la lib/saga/libsim_ecosystems_hugget.so -lib/saga/libsim_fire_spreading.la lib/saga/libsim_fire_spreading.so -lib/saga/libsim_hydrology.la lib/saga/libsim_hydrology.so -lib/saga/libta_channels.la lib/saga/libta_channels.so -lib/saga/libta_hydrology.la lib/saga/libta_hydrology.so -lib/saga/libta_lighting.la lib/saga/libta_lighting.so -lib/saga/libta_morphometry.la lib/saga/libta_morphometry.so -lib/saga/libta_preprocessor.la lib/saga/libta_preprocessor.so -lib/saga/libta_profiles.la lib/saga/libta_profiles.so -lib/saga/libtable_calculus.la lib/saga/libtable_calculus.so -lib/saga/libtable_tools.la lib/saga/libtable_tools.so -lib/saga/libtin_tools.la lib/saga/libtin_tools.so -lib/saga/libtin_viewer.la lib/saga/libtin_viewer.so -lib/saga/libtransect.la lib/saga/libtransect.so -%%VIGRA%%lib/saga/libvigra.la %%VIGRA%%lib/saga/libvigra.so share/saga/saga_icon_32.xpm share/saga/saga_tip.txt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:10:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D916B106564A for ; Sun, 23 Oct 2011 09:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AE2548FC14 for ; Sun, 23 Oct 2011 09:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9A9Kf077224 for ; Sun, 23 Oct 2011 09:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9A9DN077223; Sun, 23 Oct 2011 09:10:09 GMT (envelope-from gnats) Date: Sun, 23 Oct 2011 09:10:09 GMT Message-Id: <201110230910.p9N9A9DN077223@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Rainer Hurling Cc: Subject: Re: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rainer Hurling List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:10:09 -0000 The following reply was made to PR misc/161922; it has been noted by GNATS. From: Rainer Hurling To: bug-followup@FreeBSD.org, rhurlin@gwdg.de Cc: Subject: Re: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Date: Sun, 23 Oct 2011 11:01:30 +0200 Sorry, I meant Category: ports Class: maintainer-update Please correct these items, thanks. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:10:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB8F51065674 for ; Sun, 23 Oct 2011 09:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8FA708FC19 for ; Sun, 23 Oct 2011 09:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9ADIu077248 for ; Sun, 23 Oct 2011 09:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9ADXe077247; Sun, 23 Oct 2011 09:10:13 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 09:10:13 GMT Resent-Message-Id: <201110230910.p9N9ADXe077247@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00A3A106564A for ; Sun, 23 Oct 2011 09:07:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E3F2D8FC0A for ; Sun, 23 Oct 2011 09:07:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N97DeD082252 for ; Sun, 23 Oct 2011 09:07:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N97DMC082251; Sun, 23 Oct 2011 09:07:13 GMT (envelope-from nobody) Message-Id: <201110230907.p9N97DMC082251@red.freebsd.org> Date: Sun, 23 Oct 2011 09:07:13 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161923: 9.0 bsdinstall games & ports install options X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:10:13 -0000 >Number: 161923 >Category: bin >Synopsis: 9.0 bsdinstall games & ports install options >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 09:10:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The bsdinstall distribution selection menu screen has the games & ports options checked with an asterisk meaning these are the defaults. All the options on this menu should be blank so user has to purposesly click on those options to enable them with an asterisk. There had been talk about removing games from the base install all together a few years ago. Has this been carried forward in error? The sysinstall procedure asks the user two different time if they want to install the ports collection. BDSinstall should at least make it mandidtory to purposesly click on the ports option to install them. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:40:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 185AD106564A for ; Sun, 23 Oct 2011 09:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF4E38FC14 for ; Sun, 23 Oct 2011 09:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9e9Uc006249 for ; Sun, 23 Oct 2011 09:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9e9eq006248; Sun, 23 Oct 2011 09:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 09:40:09 GMT Resent-Message-Id: <201110230940.p9N9e9eq006248@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBB41106566B for ; Sun, 23 Oct 2011 09:30:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AAEB88FC13 for ; Sun, 23 Oct 2011 09:30:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9UYVj020096 for ; Sun, 23 Oct 2011 09:30:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N9UY2r020093; Sun, 23 Oct 2011 09:30:34 GMT (envelope-from nobody) Message-Id: <201110230930.p9N9UY2r020093@red.freebsd.org> Date: Sun, 23 Oct 2011 09:30:34 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161924: 9.0 bsdinstall (add msg box telling user to remove install media) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:40:10 -0000 >Number: 161924 >Category: bin >Synopsis: 9.0 bsdinstall (add msg box telling user to remove install media) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 09:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: At the bsdinstall "Complete screen" when the reboot option is selected the cd/dvd drive should automatically open and a message box informing the user to remove the cd/dvd/ install media should be displayed just like sysinstall does. If dvd1.iso was copied to memstick or the "install memstick image" are used to boot from to install the system, then the memstick should be unmounted and a message box informing the user to remove the memstick install media should be displayed just like for cd/dvd above. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:40:40 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B97D91065687; Sun, 23 Oct 2011 09:40:40 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 90AFC8FC13; Sun, 23 Oct 2011 09:40:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9ee6t008576; Sun, 23 Oct 2011 09:40:40 GMT (envelope-from manolis@freefall.freebsd.org) Received: (from manolis@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9eeVw008567; Sun, 23 Oct 2011 09:40:40 GMT (envelope-from manolis) Date: Sun, 23 Oct 2011 09:40:40 GMT Message-Id: <201110230940.p9N9eeVw008567@freefall.freebsd.org> To: manolis@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-bugs@FreeBSD.org From: manolis@FreeBSD.org Cc: Subject: Re: ports/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:40:40 -0000 Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: manolis Class-Changed-When: Sun Oct 23 09:39:10 UTC 2011 Class-Changed-Why: Reclassify per submitter's request http://www.freebsd.org/cgi/query-pr.cgi?pr=161922 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:44:43 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21BE31065673; Sun, 23 Oct 2011 09:44:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EBE938FC12; Sun, 23 Oct 2011 09:44:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9igPG014505; Sun, 23 Oct 2011 09:44:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9igYt014501; Sun, 23 Oct 2011 09:44:42 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:44:42 GMT Message-Id: <201110230944.p9N9igYt014501@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161924: 9.0 bsdinstall(8): add msg box telling user to remove install media X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:44:43 -0000 Old Synopsis: 9.0 bsdinstall (add msg box telling user to remove install media) New Synopsis: 9.0 bsdinstall(8): add msg box telling user to remove install media Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:44:22 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=161924 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:45:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6479106566B; Sun, 23 Oct 2011 09:45:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95DE68FC0A; Sun, 23 Oct 2011 09:45:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9j8sa014564; Sun, 23 Oct 2011 09:45:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9j8pH014560; Sun, 23 Oct 2011 09:45:08 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:45:08 GMT Message-Id: <201110230945.p9N9j8pH014560@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161923: 9.0 bsdinstall(8) games & ports install options X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:45:08 -0000 Old Synopsis: 9.0 bsdinstall games & ports install options New Synopsis: 9.0 bsdinstall(8) games & ports install options Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:44:52 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=161923 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:48:33 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99528106566C; Sun, 23 Oct 2011 09:48:33 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 700E18FC0C; Sun, 23 Oct 2011 09:48:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9mXYv015075; Sun, 23 Oct 2011 09:48:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9mXFm015071; Sun, 23 Oct 2011 09:48:33 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:48:33 GMT Message-Id: <201110230948.p9N9mXFm015071@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:48:33 -0000 Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:48:18 UTC 2011 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=161922 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 10:20:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DAFC1065674 for ; Sun, 23 Oct 2011 10:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 855578FC14 for ; Sun, 23 Oct 2011 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NAK148053505 for ; Sun, 23 Oct 2011 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NAK1RN053504; Sun, 23 Oct 2011 10:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 10:20:01 GMT Resent-Message-Id: <201110231020.p9NAK1RN053504@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, Poul-Henning Kamp Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE8F6106566B for ; Sun, 23 Oct 2011 10:11:51 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 99C928FC22 for ; Sun, 23 Oct 2011 10:11:51 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 7632C5C37 for ; Sun, 23 Oct 2011 09:56:45 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9N9ujDg006353 for ; Sun, 23 Oct 2011 09:56:45 GMT (envelope-from phk@critter.freebsd.dk) Received: (from phk@localhost) by critter.freebsd.dk (8.14.5/8.14.5/Submit) id p9N9ujk8006352; Sun, 23 Oct 2011 09:56:45 GMT (envelope-from phk) Message-Id: <201110230956.p9N9ujk8006352@critter.freebsd.dk> Date: Sun, 23 Oct 2011 09:56:45 GMT From: Poul-Henning Kamp To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/161926: 9.0-RC1 bsdinstall disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Poul-Henning Kamp List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 10:20:04 -0000 >Number: 161926 >Category: conf >Synopsis: 9.0-RC1 bsdinstall disk layout trouble >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 10:20:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Poul-Henning Kamp >Release: FreeBSD 9.0-RC1 amd64 >Organization: >Environment: Trying to install 9.0-RC1 amd64 >Description: I tried to install a machine for use with src/tools/sysbuild, and ran into a number of weird issues. Here is a blow by blow account: ada0 zeroed before boot boot dvd Choose "Install" Keymap Selection -> No "non-default key mapping" ??? What kind of question is that ? Guided disk Hmm, maybe I should use the manual option, lets see, where is the "back" button ? Ohh, there are *no* "back" buttons *anywhere* ? Partition ada0 Modify "Invalid argument. arg0 'ada0' MBR Create 10GB Create 10GB Create 10GB Create default size Active partition is the last one created ? There is no place I can see it ? There is no place I can change it ? ada0s1 Modify "Invalid argument. arg0 'ada0s1' BSD Create (ada0s1a) freebsd, full size, / Finish Enter shell in new system gpart set -a active -i 1 ada0 Fix the active partition sysctl kern.geom.debugflags=16 gmirror label root ada0 Fix /etc/fstab ? There is no /etc/fstab ? Create /etc/fstab: /dev/mirror/roots1a / ufs rw 1 1 boot0cfg -B /dev/ada0 reboot Comes up /etc/fstab now contains ada0s1a ? fix /etc/fstab add geom_mirror_load="YES" to /boot/loader.conf reboot Comes up >How-To-Repeat: Per above. I tried once before with a disk which contained a Ubuntu installation, there I ended up with partition 2 having size of "-37GB" on a 40GB drive. >Fix: At the very least, show people what's going on. And for goodness sake, add "Back" buttons, OK ? You really don't want me to write sysinstall2, right ? :-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 10:30:06 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D7481065674 for ; Sun, 23 Oct 2011 10:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CC6CD8FC13 for ; Sun, 23 Oct 2011 10:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NAU5f5061954 for ; Sun, 23 Oct 2011 10:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NAU5E0061953; Sun, 23 Oct 2011 10:30:05 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 10:30:05 GMT Resent-Message-Id: <201110231030.p9NAU5E0061953@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69CDC106564A for ; Sun, 23 Oct 2011 10:27:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 590A48FC0A for ; Sun, 23 Oct 2011 10:27:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NARdaE024761 for ; Sun, 23 Oct 2011 10:27:39 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NARdl1024760; Sun, 23 Oct 2011 10:27:39 GMT (envelope-from nobody) Message-Id: <201110231027.p9NARdl1024760@red.freebsd.org> Date: Sun, 23 Oct 2011 10:27:39 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161927: 9.0 RC1 bsdinstall has no help describing what is happening X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 10:30:06 -0000 >Number: 161927 >Category: bin >Synopsis: 9.0 RC1 bsdinstall has no help describing what is happening >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 10:30:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The bsdinstall has absolutely no help information available. One of the most complained about deficiencies of sysinstall is its lack of help information. Do not want to see this mistake made again with bsdinstall. Bsdinstall is a dialog run system and dialog was purposely used for ease of making corrections and additions. This is the time for the original author who has the inside knowledge of the logic flow to add (help) dialog info boxes to describe the bsdinstall install function flow. This is not a joke, but a serious requirement that needs to be added. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 11:20:01 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 356F0106566C for ; Sun, 23 Oct 2011 11:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E822D8FC14 for ; Sun, 23 Oct 2011 11:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBK0Ij008317 for ; Sun, 23 Oct 2011 11:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NBK0PE008316; Sun, 23 Oct 2011 11:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 11:20:00 GMT Resent-Message-Id: <201110231120.p9NBK0PE008316@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B807106564A for ; Sun, 23 Oct 2011 11:12:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1A8628FC08 for ; Sun, 23 Oct 2011 11:12:15 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBCE3Z095057 for ; Sun, 23 Oct 2011 11:12:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NBCEcq095056; Sun, 23 Oct 2011 11:12:14 GMT (envelope-from nobody) Message-Id: <201110231112.p9NBCEcq095056@red.freebsd.org> Date: Sun, 23 Oct 2011 11:12:14 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161928: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 11:20:01 -0000 >Number: 161928 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 11:20:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The three-button mouse has gone the same way as the floppy drive. I read a post saying that usb mouse has the copy/paste function enabled as default. I tested this on 9.0 RC1 and can report that with a two-button USB mouse the copy/paste function does not work. This statement has to be added to /etc/rc.conf to enable two-button mouse copy/paste function. This works for all USB, serial port, and ps2 two-button mouses. moused_flags="-m 2=3" Requesting that bsdinstall be updated to offer user option to enable two-button mouse copy/paste function. Lets bring the secret out into the open that Freebsd has text console two-button mouse copy/paste function and make it easy for the user to enable this function using the bsdinstall process. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 11:20:03 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFED31065674 for ; Sun, 23 Oct 2011 11:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ADA6D8FC18 for ; Sun, 23 Oct 2011 11:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBK3SX008396 for ; Sun, 23 Oct 2011 11:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NBK39f008393; Sun, 23 Oct 2011 11:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 11:20:03 GMT Resent-Message-Id: <201110231120.p9NBK39f008393@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEA8F106566B for ; Sun, 23 Oct 2011 11:19:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADAE38FC12 for ; Sun, 23 Oct 2011 11:19:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBJpUl012478 for ; Sun, 23 Oct 2011 11:19:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NBJp6O012477; Sun, 23 Oct 2011 11:19:51 GMT (envelope-from nobody) Message-Id: <201110231119.p9NBJp6O012477@red.freebsd.org> Date: Sun, 23 Oct 2011 11:19:51 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161929: 9.0 RC1 bsdinstall (change partition editor screen default) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 11:20:04 -0000 >Number: 161929 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (change partition editor screen default) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 11:20:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: On the partition editor screen the option should be the first in the list (ie; left most side, being the default) so if the user accepts this hard drive config, hitting enter moves to next menu screen instead of forcing the user to tab right skipping over the other options until finally highlighting the far right option taking more time and effort. This change will simplify navigation and not antagonize the user. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 12:10:03 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 138A8106564A for ; Sun, 23 Oct 2011 12:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E05378FC0C for ; Sun, 23 Oct 2011 12:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NCA2Un056201 for ; Sun, 23 Oct 2011 12:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NCA235056200; Sun, 23 Oct 2011 12:10:02 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 12:10:02 GMT Resent-Message-Id: <201110231210.p9NCA235056200@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 barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81B3C106566C for ; Sun, 23 Oct 2011 12:06:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 57A158FC12 for ; Sun, 23 Oct 2011 12:06:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NC66dN001263 for ; Sun, 23 Oct 2011 12:06:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NC661M001262; Sun, 23 Oct 2011 12:06:06 GMT (envelope-from nobody) Message-Id: <201110231206.p9NC661M001262@red.freebsd.org> Date: Sun, 23 Oct 2011 12:06:06 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161931: 9.0 RC1 bsdinstall (add sysinstall partition config as option) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 12:10:03 -0000 >Number: 161931 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (add sysinstall partition config as option) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 12:10:02 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: Change the bsdinstall "partition editor screen" to provide option to select the sysinstall partition config style setup. Using the manual option relies on the user knowing the correct console commands. This is a un-realistic and defeats the purpose of having a automated installer. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 12:30:05 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97552106566B for ; Sun, 23 Oct 2011 12:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 66FED8FC08 for ; Sun, 23 Oct 2011 12:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NCU5uA074548 for ; Sun, 23 Oct 2011 12:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NCU58f074541; Sun, 23 Oct 2011 12:30:05 GMT (envelope-from gnats) Date: Sun, 23 Oct 2011 12:30:05 GMT Message-Id: <201110231230.p9NCU58f074541@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: geoffroy desvernay Cc: Subject: Re: kern/140416: [mfi] [patch] mfi driver stuck in timeout X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: geoffroy desvernay List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 12:30:05 -0000 The following reply was made to PR kern/140416; it has been noted by GNATS. From: geoffroy desvernay To: bug-followup@FreeBSD.org, Stephane.DAlu@insa-lyon.fr Cc: Subject: Re: kern/140416: [mfi] [patch] mfi driver stuck in timeout Date: Sun, 23 Oct 2011 14:20:11 +0200 This patch works for me(r) on 8-STABLE from yesterday and 9-RC1 On dell PowerEdge 415 (PERC H700 Adapter) and PE515 (PERC H700 Integrated= ) Without the patch, same problem occurs (especially with ZFS). --=20 *Geoffroy Desvernay* C.R.I - Administration syst=C3=A8mes et r=C3=A9seaux Ecole Centrale de Marseille From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:00:52 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1AB74106564A; Sun, 23 Oct 2011 14:00:52 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ACCAD8FC15; Sun, 23 Oct 2011 14:00:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE0pn6062746; Sun, 23 Oct 2011 14:00:51 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE0pjv062737; Sun, 23 Oct 2011 14:00:51 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:00:51 GMT Message-Id: <201110231400.p9NE0pjv062737@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161928: bsdinstall(8): (add option to enable 2 button mouse copy/paste) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 14:00:52 -0000 Old Synopsis: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) New Synopsis: bsdinstall(8): (add option to enable 2 button mouse copy/paste) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign and fix synopsis http://www.freebsd.org/cgi/query-pr.cgi?pr=161928 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:02:38 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93FBD106566C; Sun, 23 Oct 2011 14:02:38 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA578FC0A; Sun, 23 Oct 2011 14:02:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE2cSd067286; Sun, 23 Oct 2011 14:02:38 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE2c7K067282; Sun, 23 Oct 2011 14:02:38 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:02:38 GMT Message-Id: <201110231402.p9NE2c7K067282@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161929: bsdinstall(8): (change partition editor screen default) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 14:02:38 -0000 Old Synopsis: 9.0 RC1 bsdinstall (change partition editor screen default) New Synopsis: bsdinstall(8): (change partition editor screen default) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161929 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:03:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 578DA106567A; Sun, 23 Oct 2011 14:03:04 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EF858FC21; Sun, 23 Oct 2011 14:03:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE34Pp067400; Sun, 23 Oct 2011 14:03:04 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE348x067395; Sun, 23 Oct 2011 14:03:04 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:03:04 GMT Message-Id: <201110231403.p9NE348x067395@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161931: bsdinstall(8): (add sysinstall partition config as option) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 14:03:04 -0000 Old Synopsis: 9.0 RC1 bsdinstall (add sysinstall partition config as option) New Synopsis: bsdinstall(8): (add sysinstall partition config as option) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161931 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:03:39 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FB15106564A; Sun, 23 Oct 2011 14:03:39 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47AEB8FC16; Sun, 23 Oct 2011 14:03:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE3d3D067511; Sun, 23 Oct 2011 14:03:39 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE3dle067507; Sun, 23 Oct 2011 14:03:39 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:03:39 GMT Message-Id: <201110231403.p9NE3dle067507@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 14:03:39 -0000 Old Synopsis: 9.0-RC1 bsdinstall disk layout trouble New Synopsis: bsdinstall(8): disk layout trouble Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: generate bugspam http://www.freebsd.org/cgi/query-pr.cgi?pr=161926 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:04:03 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEE6E1065679; Sun, 23 Oct 2011 14:04:03 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2CF8FC1C; Sun, 23 Oct 2011 14:04:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE436b067603; Sun, 23 Oct 2011 14:04:03 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE43K7067599; Sun, 23 Oct 2011 14:04:03 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:04:03 GMT Message-Id: <201110231404.p9NE43K7067599@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161927: bsdinstall(8): has no help describing what is happening X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 14:04:03 -0000 Old Synopsis: 9.0 RC1 bsdinstall has no help describing what is happening New Synopsis: bsdinstall(8): has no help describing what is happening Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161927 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:21:36 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E92B106564A; Sun, 23 Oct 2011 15:21:36 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from argol.doit.wisc.edu (argol.doit.wisc.edu [144.92.197.212]) by mx1.freebsd.org (Postfix) with ESMTP id 00D288FC12; Sun, 23 Oct 2011 15:21:35 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth3.wiscmail.wisc.edu by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTI00L00YNYNS00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:21:34 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTI00I6KYNX9G10@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:21:33 -0500 (CDT) Date: Sun, 23 Oct 2011 10:21:32 -0500 From: Nathan Whitehorn In-reply-to: <201110060433.p964XrV1073331@freefall.freebsd.org> To: eadler@FreeBSD.org Message-id: <4EA430FC.6000105@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-12, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.143314, SenderIP=76.210.66.1 References: <201110060433.p964XrV1073331@freefall.freebsd.org> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org Subject: Re: bin/161049: bsdinstall(8): could try to tell if SSDs support TRIM X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 15:21:36 -0000 On 10/05/11 23:33, eadler@FreeBSD.org wrote: > Old Synopsis: bsdinstall could try to tell if SSDs support TRIM > New Synopsis: bsdinstall(8): could try to tell if SSDs support TRIM > > Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall > Responsible-Changed-By: eadler > Responsible-Changed-When: Thu Oct 6 04:32:58 UTC 2011 > Responsible-Changed-Why: > > fix synopsys and assign > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=161049 Does anyone know a way to do this? It's not clear this information is readily accessible from userland. -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:43:07 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92E99106564A; Sun, 23 Oct 2011 15:43:07 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from argol.doit.wisc.edu (argol.doit.wisc.edu [144.92.197.212]) by mx1.freebsd.org (Postfix) with ESMTP id 6615B8FC0A; Sun, 23 Oct 2011 15:43:07 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth3.wiscmail.wisc.edu by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTI00000ZNU6Z00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:43:06 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTI00N4HZNT3L00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:43:05 -0500 (CDT) Date: Sun, 23 Oct 2011 10:43:04 -0500 From: Nathan Whitehorn In-reply-to: <201110231403.p9NE3dle067507@freefall.freebsd.org> To: phk@FreeBSD.org Message-id: <4EA43608.2070703@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-13, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.143314, SenderIP=76.210.66.1 References: <201110231403.p9NE3dle067507@freefall.freebsd.org> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 15:43:07 -0000 > Description > I tried to install a machine for use with src/tools/sysbuild, and ran > into a number of weird issues. > > Here is a blow by blow account: > > ada0 zeroed before boot > boot dvd > Choose "Install" > > > Keymap Selection -> No > "non-default key mapping" ??? > What kind of question is that ? > Can you suggest an alternate wording for this? This was a request from PR bin/160913. > Guided disk > Hmm, maybe I should use the manual option, > lets see, where is the "back" button ? > Ohh, there are *no* "back" buttons *anywhere* ? > jilles@ was going to add these at one point, so I dropped the issue. I don't know what happened with that -- perhaps it is worth revisiting. > Partition > ada0 Modify > "Invalid argument. arg0 'ada0' > MBR > Can you provide some more detail on how you got here? This is a geom bug, and it would be nice to track it down. > Create > 10GB > > Create > 10GB > > Create > 10GB > > Create > default size > > Active partition is the last one created ? > There is no place I can see it ? > There is no place I can change it ? > Active partition is the last bootable (e.g. freebsd) partition you created, yes. It's difficult to make a UI for setting active partitions since only MBR really has that concept, and this is mostly geared to supporting GPT (and VTOC8, APM, etc). libdialog also (irritatingly) doesn't support mixes of checkboxes and form fields. As usual, suggestions are appreciated. > ada0s1 Modify > "Invalid argument. arg0 'ada0s1' > Again, you've run into a GEOM bug. More details, please. > BSD > Create (ada0s1a) > freebsd, full size, / > > Finish > > Enter shell in new system > > gpart set -a active -i 1 ada0 > Fix the active partition > > sysctl kern.geom.debugflags=16 > gmirror label root ada0 > > Fix /etc/fstab ? > There is no /etc/fstab ? > Create /etc/fstab: /dev/mirror/roots1a / ufs rw 1 1 > boot0cfg -B /dev/ada0 > No, there is no fstab. There is no rc.conf either. They are both copied later, at the very end. This has to do with how the rc.conf editing tools work, so that you can get a second chance here. The first can be fixed fairly easily -- the second is much harder. I'm hoping to have some time to fix both of these soon. There are two basic ways to fix this: 1. Move "Shell" out of that screen, into the "Installation finished. What would you like to do now?" screen, when the install is actually complete. This is the easiest solution by far, and maybe the best. 2. Pre-copy fstab, and try to diff a user-edited rc.conf against the generated one, then reapply any user patches at the end. This seems fraught with peril. > reboot > > Comes up > /etc/fstab now contains ada0s1a ? > It gets replaced (see above). > fix /etc/fstab > add geom_mirror_load="YES" to /boot/loader.conf > reboot > > Comes up > > How-To-Repeat > > Per above. > > I tried once before with a disk which contained a Ubuntu installation, > there I ended up with partition 2 having size of "-37GB" on a 40GB > drive. > Again, can you provide more details on how you got there? You seem to have found a *lot* of bugs in gpart. > Fix > > At the very least, show people what's going on. > And for goodness sake, add "Back" buttons, OK ? Back buttons are kind of hard in shell scripts, but I'm on it :P > You really don't want me to write sysinstall2, right ? :-) :P -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:51:54 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E745106566C; Sun, 23 Oct 2011 15:51:54 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 179878FC0C; Sun, 23 Oct 2011 15:51:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NFprHr069647; Sun, 23 Oct 2011 15:51:53 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NFprlk069643; Sun, 23 Oct 2011 15:51:53 GMT (envelope-from adrian) Date: Sun, 23 Oct 2011 15:51:53 GMT Message-Id: <201110231551.p9NFprlk069643@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, adrian@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/98162: [request] AcerHK driver port needed for enabling WiFi on Acer's laptops X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 15:51:54 -0000 Synopsis: [request] AcerHK driver port needed for enabling WiFi on Acer's laptops Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: adrian Responsible-Changed-When: Sun Oct 23 15:51:39 UTC 2011 Responsible-Changed-Why: I'll take a crack at this; I have some relevant hardware. http://www.freebsd.org/cgi/query-pr.cgi?pr=98162 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 16:34:52 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC95D106564A; Sun, 23 Oct 2011 16:34:52 +0000 (UTC) (envelope-from rmh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B65138FC16; Sun, 23 Oct 2011 16:34:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGYqq3008013; Sun, 23 Oct 2011 16:34:52 GMT (envelope-from rmh@freefall.freebsd.org) Received: (from rmh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NGYqti008008; Sun, 23 Oct 2011 16:34:52 GMT (envelope-from rmh) Date: Sun, 23 Oct 2011 16:34:52 GMT Message-Id: <201110231634.p9NGYqti008008@freefall.freebsd.org> To: rmh@debian.org, rmh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: rmh@FreeBSD.org Cc: Subject: Re: kern/159278: [kern.mk] [patch] FreeBSD compiler extensions X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 16:34:52 -0000 Synopsis: [kern.mk] [patch] FreeBSD compiler extensions State-Changed-From-To: open->closed State-Changed-By: rmh State-Changed-When: Sun Oct 23 16:33:14 UTC 2011 State-Changed-Why: Fixed in r226665. http://www.freebsd.org/cgi/query-pr.cgi?pr=159278 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 16:50:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 048211065673 for ; Sun, 23 Oct 2011 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF9FC8FC14 for ; Sun, 23 Oct 2011 16:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGo3SV017130 for ; Sun, 23 Oct 2011 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NGo3lG017129; Sun, 23 Oct 2011 16:50:03 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 16:50:03 GMT Resent-Message-Id: <201110231650.p9NGo3lG017129@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, Ryan Steinmetz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 037741065673 for ; Sun, 23 Oct 2011 16:47:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CFAFD8FC08 for ; Sun, 23 Oct 2011 16:47:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGlcBL029318 for ; Sun, 23 Oct 2011 16:47:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NGlcm9029317; Sun, 23 Oct 2011 16:47:38 GMT (envelope-from nobody) Message-Id: <201110231647.p9NGlcm9029317@red.freebsd.org> Date: Sun, 23 Oct 2011 16:47:38 GMT From: Ryan Steinmetz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161936: [openbsm][patch] praudit can produce invalid XML output X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 16:50:04 -0000 >Number: 161936 >Category: bin >Synopsis: [openbsm][patch] praudit can produce invalid XML output >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 Oct 23 16:50:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ryan Steinmetz >Release: 8.2-RELEASE >Organization: Rochester Institute of Technology >Environment: >Description: When using praudit to display audit entries, the XML output argument (-x) will cause praudit to print invalid XML in certain circumstances. This surfaces anytime a command is audited that contains invalid XML characters (& or <). >How-To-Repeat: Ensure command logging is enabled and execute a command like the following: % echo hi < test && ls % praudit -x >file.tmp Then use an XML parser to try to parse file.tmp, it will complain about invalid characters due to the presence of & and < in places they should not be. >Fix: Applying the attached patch to contrib/openbsm/libbsm/bsm_io.c properly sanitizes the entries as they are printed by replacing instances of & with & and < with < cd /usr/src patch < /path/to/bsm_io.c.diff cd lib/libbsm && make clean;make obj && make depend && make && make install Patch attached with submission follows: --- contrib/openbsm/libbsm/bsm_io.c.orig 2011-10-23 12:10:40.000000000 -0400 +++ contrib/openbsm/libbsm/bsm_io.c 2011-10-23 12:35:31.000000000 -0400 @@ -214,6 +214,28 @@ } /* + * Prints the given data bytes as an XML-sanitized string + */ +static void +print_xml_string(FILE *fp, const char *str, size_t len) +{ + u_int32_t i; + + if (len > 0) { + for (i = 0; i < len; i++) { + if (str[i] != '\0') { + if (str[i] == '&') + fprintf(fp, "&"); + else if (str[i] == '<') + fprintf(fp, "<"); + else + fprintf(fp, "%c", str[i]); + } + } + } +} + +/* * Prints the beggining of attribute. */ static void @@ -1855,7 +1877,7 @@ for (i = 0; i < tok->tt.execarg.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execarg.text[i], + print_xml_string(fp, tok->tt.execarg.text[i], strlen(tok->tt.execarg.text[i])); fprintf(fp, ""); } else { @@ -1914,7 +1936,7 @@ for (i = 0; i< tok->tt.execenv.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execenv.text[i], + print_xml_string(fp, tok->tt.execenv.text[i], strlen(tok->tt.execenv.text[i])); fprintf(fp, ""); } else { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 18:31:51 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA883106566B; Sun, 23 Oct 2011 18:31:51 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id A7DC38FC0A; Sun, 23 Oct 2011 18:31:51 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 5C9225C39; Sun, 23 Oct 2011 18:15:00 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9NIF0Ah008393; Sun, 23 Oct 2011 18:15:00 GMT (envelope-from phk@phk.freebsd.dk) To: Nathan Whitehorn From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 23 Oct 2011 10:43:04 EST." <4EA43608.2070703@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Date: Sun, 23 Oct 2011 18:15:00 +0000 Message-ID: <8392.1319393700@critter.freebsd.dk> Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 18:31:52 -0000 In message <4EA43608.2070703@freebsd.org>, Nathan Whitehorn writes: >> Keymap Selection -> No >> "non-default key mapping" ??? >> What kind of question is that ? > >Can you suggest an alternate wording for this? This was a request from >PR bin/160913. "Do you want US/English keyboard ?" >> Ohh, there are *no* "back" buttons *anywhere* ? > >jilles@ was going to add these at one point, so I dropped the issue. I >don't know what happened with that -- perhaps it is worth revisiting. I have noted your candidacy for the "Understatement of the month" award. >> Partition >> ada0 Modify >> "Invalid argument. arg0 'ada0' >> MBR > >Can you provide some more detail on how you got here? This is a geom >bug, and it would be nice to track it down. Try dd if=/dev/zero of=/dev/$whatever bs=128 on your target disk before installation. >> Active partition is the last one created ? >> There is no place I can see it ? >> There is no place I can change it ? > >Active partition is the last bootable (e.g. freebsd) partition you >created, yes. That is *totally* bogus, at the very least, make it the first one. >> Enter shell in new system >> >> Fix /etc/fstab ? >> There is no /etc/fstab ? > >No, there is no fstab. There is no rc.conf either. That is very counter-intuitive, because people are very likely to make changes to them with this step. In fact, that is just about the only reason you have to enter the new system this way: To change something that improves your chances of booting the new system in a few moments. >1. Move "Shell" out of that screen, into the "Installation finished. >What would you like to do now?" screen, when the install is actually >complete. This is the easiest solution by far, and maybe the best. That works for me. >> I tried once before with a disk which contained a Ubuntu installation, >> there I ended up with partition 2 having size of "-37GB" on a 40GB >> drive. > >Again, can you provide more details on how you got there? You seem to >have found a *lot* of bugs in gpart. Sorry, that one is not reproducible now. You can try to install an Ubuntu on a 40GB disk, but... >Back buttons are kind of hard in shell scripts, but I'm on it :P You're doing this as shell-scripts ? The mind boggles... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 20:08:57 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C8771065741; Sun, 23 Oct 2011 20:08:57 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from agogare.doit.wisc.edu (agogare.doit.wisc.edu [144.92.197.211]) by mx1.freebsd.org (Postfix) with ESMTP id 500268FC0C; Sun, 23 Oct 2011 20:08:57 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth2.wiscmail.wisc.edu by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTJ00A00BYWWL00@smtpauth2.wiscmail.wisc.edu>; Sun, 23 Oct 2011 15:08:56 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTJ002P1BYUNU10@smtpauth2.wiscmail.wisc.edu>; Sun, 23 Oct 2011 15:08:55 -0500 (CDT) Date: Sun, 23 Oct 2011 15:08:54 -0500 From: Nathan Whitehorn In-reply-to: <8392.1319393700@critter.freebsd.dk> To: Poul-Henning Kamp Message-id: <4EA47456.7090008@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-11, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.200015, SenderIP=76.210.66.1 References: <8392.1319393700@critter.freebsd.dk> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 20:08:57 -0000 On 10/23/11 13:15, Poul-Henning Kamp wrote: > In message<4EA43608.2070703@freebsd.org>, Nathan Whitehorn writes: > >>> Keymap Selection -> No >>> "non-default key mapping" ??? >>> What kind of question is that ? >> Can you suggest an alternate wording for this? This was a request from >> PR bin/160913. > "Do you want US/English keyboard ?" OK, the wording can be changed. >>> Ohh, there are *no* "back" buttons *anywhere* ? >> jilles@ was going to add these at one point, so I dropped the issue. I >> don't know what happened with that -- perhaps it is worth revisiting. > I have noted your candidacy for the "Understatement of the month" award. There's not actually too much need for them, and so they never seemed pressing. Pressing control-C/choosing "cancel"/etc. will either skip steps that can be returned to later (post-extraction) or return to the beginning of the installation, which is where you already were, pre-extraction. It seemed better to have a back-button-free version than buggy back buttons like in sysinstall, anyway. >>> Partition >>> ada0 Modify >>> "Invalid argument. arg0 'ada0' >>> MBR >> Can you provide some more detail on how you got here? This is a geom >> bug, and it would be nice to track it down. > Try dd if=/dev/zero of=/dev/$whatever bs=128 on your target disk before > installation. Can't reproduce that one at all. What steps did you take after that? Just pressing create and choosing MBR? Or were there more? >>> Active partition is the last one created ? >>> There is no place I can see it ? >>> There is no place I can change it ? >> Active partition is the last bootable (e.g. freebsd) partition you >> created, yes. > That is *totally* bogus, at the very least, make it the first one. The UI problem is actually hard, and the correct solution without a UI solution is non-obvious. The usual use case, where only one MBR partition of type freebsd is added, works perfectly well. I'll try to find a reasonable solution to this, but have very little time at the moment -- patches would be much appreciated. >> 1. Move "Shell" out of that screen, into the "Installation finished. >> What would you like to do now?" screen, when the install is actually >> complete. This is the easiest solution by far, and maybe the best. > That works for me. I'll fix it this way, then. >>> I tried once before with a disk which contained a Ubuntu installation, >>> there I ended up with partition 2 having size of "-37GB" on a 40GB >>> drive. >> Again, can you provide more details on how you got there? You seem to >> have found a *lot* of bugs in gpart. > Sorry, that one is not reproducible now. You can try to install an > Ubuntu on a 40GB disk, but... > >> Back buttons are kind of hard in shell scripts, but I'm on it :P > You're doing this as shell-scripts ? > No -- that way would lie madness. There are several components to the installer which are separate executables, and all but the simplest are C programs. The main installation process is done by invoking them in sequence, as a short shell script. This substantially improves the modularity of the installer, and makes scripting it much easier. It also makes back buttons very hard to implement, since they break this encapsulation -- not severely, but enough to cause problems. As I said, I'll take another look at doing them, but it's a nontrivial thing. -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:32:45 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE778106564A; Sun, 23 Oct 2011 22:32:45 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A741C8FC17; Sun, 23 Oct 2011 22:32:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMWj1O039289; Sun, 23 Oct 2011 22:32:45 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMWjOX039285; Sun, 23 Oct 2011 22:32:45 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:32:45 GMT Message-Id: <201110232232.p9NMWjOX039285@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pjd@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: misc/161915: pjdtests don't articulate requirements very well X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 22:32:45 -0000 Synopsis: pjdtests don't articulate requirements very well Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:32:45 UTC 2011 Responsible-Changed-Why: you may want to look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=161915 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:32:50 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEB64106564A; Sun, 23 Oct 2011 22:32:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A72C78FC0A; Sun, 23 Oct 2011 22:32:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMWo8i039377; Sun, 23 Oct 2011 22:32:50 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMWoO0039373; Sun, 23 Oct 2011 22:32:50 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:32:50 GMT Message-Id: <201110232232.p9NMWoO0039373@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pjd@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: misc/161917: pjdfstest doesn't detect setup/teardown failures properly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 22:32:50 -0000 Synopsis: pjdfstest doesn't detect setup/teardown failures properly Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:32:50 UTC 2011 Responsible-Changed-Why: you may want to look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=161917 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:34:40 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E986E106564A; Sun, 23 Oct 2011 22:34:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C241C8FC0A; Sun, 23 Oct 2011 22:34:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMYeil039767; Sun, 23 Oct 2011 22:34:40 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMYer5039763; Sun, 23 Oct 2011 22:34:40 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:34:40 GMT Message-Id: <201110232234.p9NMYer5039763@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: kern/161908: [netgraph] [patch] ng_vlan update for QinQ support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 22:34:41 -0000 Old Synopsis: ng_vlan update for QinQ support New Synopsis: [netgraph] [patch] ng_vlan update for QinQ support Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:34:17 UTC 2011 Responsible-Changed-Why: assign and add tags http://www.freebsd.org/cgi/query-pr.cgi?pr=161908 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:53:43 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91901065670; Sun, 23 Oct 2011 22:53:43 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1C048FC0C; Sun, 23 Oct 2011 22:53:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMrhdc057693; Sun, 23 Oct 2011 22:53:43 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMrhDq057689; Sun, 23 Oct 2011 22:53:43 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:53:43 GMT Message-Id: <201110232253.p9NMrhDq057689@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pluknet@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/160516: pkg_delete(1) error messages miss which package had the problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 22:53:43 -0000 Synopsis: pkg_delete(1) error messages miss which package had the problem Responsible-Changed-From-To: freebsd-bugs->pluknet Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:53:33 UTC 2011 Responsible-Changed-Why: you committed the change http://www.freebsd.org/cgi/query-pr.cgi?pr=160516 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 23:08:50 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48F601065670; Sun, 23 Oct 2011 23:08:50 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 21B468FC12; Sun, 23 Oct 2011 23:08:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NN8oJ9066958; Sun, 23 Oct 2011 23:08:50 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NN8nxU066954; Sun, 23 Oct 2011 23:08:50 GMT (envelope-from csjp) Date: Sun, 23 Oct 2011 23:08:50 GMT Message-Id: <201110232308.p9NN8nxU066954@freefall.freebsd.org> To: csjp@FreeBSD.org, freebsd-bugs@FreeBSD.org, csjp@FreeBSD.org From: csjp@FreeBSD.org Cc: Subject: Re: kern/161936: [openbsm][patch] praudit can produce invalid XML output X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 23:08:50 -0000 Synopsis: [openbsm][patch] praudit can produce invalid XML output Responsible-Changed-From-To: freebsd-bugs->csjp Responsible-Changed-By: csjp Responsible-Changed-When: Sun Oct 23 23:08:22 UTC 2011 Responsible-Changed-Why: take http://www.freebsd.org/cgi/query-pr.cgi?pr=161936 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 01:10:01 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CB09106566C for ; Mon, 24 Oct 2011 01:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F18C68FC1A for ; Mon, 24 Oct 2011 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O1A0pv080986 for ; Mon, 24 Oct 2011 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O1A0g4080985; Mon, 24 Oct 2011 01:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 01:10:00 GMT Resent-Message-Id: <201110240110.p9O1A0g4080985@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, Richard Yao Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DF7B106564A for ; Mon, 24 Oct 2011 01:07:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0E3EF8FC0C for ; Mon, 24 Oct 2011 01:07:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O17eXA010532 for ; Mon, 24 Oct 2011 01:07:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O17el1010531; Mon, 24 Oct 2011 01:07:40 GMT (envelope-from nobody) Message-Id: <201110240107.p9O17el1010531@red.freebsd.org> Date: Mon, 24 Oct 2011 01:07:40 GMT From: Richard Yao To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161950: FreeBSD 9 installer enters infinite input loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 01:10:01 -0000 >Number: 161950 >Category: misc >Synopsis: FreeBSD 9 installer enters infinite input loop >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: Mon Oct 24 01:10:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Richard Yao >Release: FreeBSD9-RC1 >Organization: State University of New York at Stony Brook >Environment: FreeBSD freebsd9 9.0-RC1 FreeBSD 9.0-RC1 #0 Tue Oct 18 18:51:43 UTC 2011 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I ran the FreeBSD9-RC1 installer on a KVM virtual machine with virtio network and storage devices. Since FreeBSD9-RC1 did not support those, it didn't see either of them. The installer entered an infinite input loop upon selection of guided mode, where it stated "An installation step has been aborted." with some information on my options. This lead to the installer restarting itself from the beginning, with the same result when it came time to partition the disk. I reconfigured the VM to use a SCSI device, which broke the first infinite input loop and then ran into a similar loop when it came time to configure the network interfaces, where I kept being asked if I wanted to configure IPv4. >How-To-Repeat: Try to install FreeBSD9-RC1 on a system that has no disk or network interface card. >Fix: Check to see if a disk or network interface card exists and inform the user so that he does not enter an infinite input loop. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 01:23:18 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC5C8106566B; Mon, 24 Oct 2011 01:23:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A46D98FC15; Mon, 24 Oct 2011 01:23:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O1NIVl000179; Mon, 24 Oct 2011 01:23:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O1NItb000175; Mon, 24 Oct 2011 01:23:18 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 01:23:18 GMT Message-Id: <201110240123.p9O1NItb000175@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161950: bsdinstall(8): FreeBSD 9 installer enters infinite input loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 01:23:18 -0000 Old Synopsis: FreeBSD 9 installer enters infinite input loop New Synopsis: bsdinstall(8): FreeBSD 9 installer enters infinite input loop Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 24 01:23:01 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=161950 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 02:50:05 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F477106566C for ; Mon, 24 Oct 2011 02:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 464CF8FC0A for ; Mon, 24 Oct 2011 02:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O2o5bh075013 for ; Mon, 24 Oct 2011 02:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O2o5v7075012; Mon, 24 Oct 2011 02:50:05 GMT (envelope-from gnats) Date: Mon, 24 Oct 2011 02:50:05 GMT Message-Id: <201110240250.p9O2o5v7075012@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Harry Coin Cc: Subject: Re: kern/161884: Gssapi/krb5 memory leak, massive krb5.conf re-read slowness X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Harry Coin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 02:50:05 -0000 The following reply was made to PR kern/161884; it has been noted by GNATS. From: Harry Coin To: bug-followup@FreeBSD.org, hcoin@quietfountain.com Cc: Subject: Re: kern/161884: Gssapi/krb5 memory leak, massive krb5.conf re-read slowness Date: Sun, 23 Oct 2011 21:31:21 -0500 Withdrawn entirely as I found the the static 'create_key' mechanism in the odd do { } while(0) construction in the GSS... define. This can be closed, it was an error to have filed it. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 07:38:15 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE848106566B; Mon, 24 Oct 2011 07:38:15 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9605A8FC1F; Mon, 24 Oct 2011 07:38:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O7cF4n072668; Mon, 24 Oct 2011 07:38:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O7cFwm072664; Mon, 24 Oct 2011 07:38:15 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 07:38:15 GMT Message-Id: <201110240738.p9O7cFwm072664@freefall.freebsd.org> To: hcoin@quietfountain.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/161884: [kerberos] [patch] gssapi/krb5 memory leak, massive krb5.conf re-read slowness X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 07:38:15 -0000 Synopsis: [kerberos] [patch] gssapi/krb5 memory leak, massive krb5.conf re-read slowness State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Oct 24 07:38:05 UTC 2011 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=161884 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:40:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BF091065674 for ; Mon, 24 Oct 2011 08:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B0F28FC13 for ; Mon, 24 Oct 2011 08:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8e3ob033064 for ; Mon, 24 Oct 2011 08:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O8e3qc033063; Mon, 24 Oct 2011 08:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 08:40:03 GMT Resent-Message-Id: <201110240840.p9O8e3qc033063@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, subbsd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 446EF1065673 for ; Mon, 24 Oct 2011 08:39:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 340478FC08 for ; Mon, 24 Oct 2011 08:39:10 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8dAgx025893 for ; Mon, 24 Oct 2011 08:39:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O8d995025892; Mon, 24 Oct 2011 08:39:09 GMT (envelope-from nobody) Message-Id: <201110240839.p9O8d995025892@red.freebsd.org> Date: Mon, 24 Oct 2011 08:39:09 GMT From: subbsd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/161956: filesystem lock with mount nullfs in random cases X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 08:40:04 -0000 >Number: 161956 >Category: kern >Synopsis: filesystem lock with mount nullfs in random cases >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 08:40:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: subbsd >Release: 9.0-RC1 >Organization: >Environment: FreeBSD fbsd.my.domain 9.0-RC1 FreeBSD 9.0-RC1 #0: Wed Oct 19 23:11:33 MSK 2011 root@fbsd.my.domain:/usr/obj/usr/src/sys/GENERIC amd64 >Description: filesystem (zfs or ufs) is freezing in random time when mount nullfs is work. more information: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=270240+0+archive/2011/freebsd-fs/20111023.freebsd-fs >How-To-Repeat: making it easy to reproduce when do 'svn cleanup' for mounted directory, see http://docs.freebsd.org/cgi/getmsg.cgi?fetch=270240+0+archive/2011/freebsd-fs/20111023.freebsd-fs >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:50:02 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70028106564A for ; Mon, 24 Oct 2011 08:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F3C68FC16 for ; Mon, 24 Oct 2011 08:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8o2kS041881 for ; Mon, 24 Oct 2011 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O8o2oi041880; Mon, 24 Oct 2011 08:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 08:50:02 GMT Resent-Message-Id: <201110240850.p9O8o2oi041880@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, Alexey Markov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E71D4106564A for ; Mon, 24 Oct 2011 08:40:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D14B08FC0A for ; Mon, 24 Oct 2011 08:40:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8e2VH026061 for ; Mon, 24 Oct 2011 08:40:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O8e2SF026060; Mon, 24 Oct 2011 08:40:02 GMT (envelope-from nobody) Message-Id: <201110240840.p9O8e2SF026060@red.freebsd.org> Date: Mon, 24 Oct 2011 08:40:02 GMT From: Alexey Markov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161957: jls -v doesn't show anything if system compiled with WITHOUT_INET6 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 08:50:02 -0000 >Number: 161957 >Category: bin >Synopsis: jls -v doesn't show anything if system compiled with WITHOUT_INET6 >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: Mon Oct 24 08:50:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey Markov >Release: 8.2-RELEASE-p4 >Organization: JSC Complitex >Environment: FreeBSD meson.complitex.ru 8.2-RELEASE-p4 FreeBSD 8.2-RELEASE-p4 #0: Mon Oct 17 11:44:31 MSD 2011 redrat@meson.complitex.ru:/arc/obj/arc/src/sys/MESON amd64 >Description: I have a server which is compiled with WITHOUT_INET6 in src.conf. There is some jails on this server. While jls without switches works fine, with -v switch I got error: "jls: unknown parameter: ip6.addr". I think jls must omit ip6.addr parameter on systems without IPv6 support and just output the rest of parameters. >How-To-Repeat: # echo "WITHOUT_INET6" >> /etc/src.conf # cd /usr/src && make world # shutdown -r now # jls JID IP Address Hostname Path 3 127.0.0.2 port.jail /arc/jail/port # jls -v jls: unknown parameter: ip6.addr >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:56:30 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D47AB106566C; Mon, 24 Oct 2011 08:56:30 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 920508FC0C; Mon, 24 Oct 2011 08:56:30 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 22F5A5DC8; Mon, 24 Oct 2011 08:56:29 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9O8uSQ9021149; Mon, 24 Oct 2011 08:56:28 GMT (envelope-from phk@phk.freebsd.dk) To: Nathan Whitehorn From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 23 Oct 2011 15:08:54 EST." <4EA47456.7090008@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Date: Mon, 24 Oct 2011 08:56:28 +0000 Message-ID: <21148.1319446588@critter.freebsd.dk> Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 08:56:30 -0000 In message <4EA47456.7090008@freebsd.org>, Nathan Whitehorn writes: >On 10/23/11 13:15, Poul-Henning Kamp wrote: >There's not actually too much need for them, and so they never seemed >pressing. Pressing control-C/choosing "cancel"/etc. will either skip >steps that can be returned to later (post-extraction) or return to the >beginning of the installation, which is where you already were, Let me just note that neither the overall structure nor where I would end up by pressing Ctrl-C was not even remotely obvious to this particular user. >>>> Active partition is the last one created ? >>>> There is no place I can see it ? >>>> There is no place I can change it ? >>> Active partition is the last bootable (e.g. freebsd) partition you >>> created, yes. >> That is *totally* bogus, at the very least, make it the first one. > >The UI problem is actually hard, and the correct solution without a UI >solution is non-obvious. The usual use case, where only one MBR >partition of type freebsd is added, works perfectly well. I'll try to >find a reasonable solution to this, but have very little time at the >moment -- patches would be much appreciated. The fact that is is hard to do right, seems an incredibly lousy excuse for doing something totally counter-intutive. Systems with more than one MBR partition are quite common in the wild in my experience. How about you set the active flag on whatever parition contains the / filesystem as part of final cleanup ? I'm not going to be sending patches: I solved this problem once according to the priorities at the time, you get to solve it this time :-) My input should simply count as a single old grumbling fart, and if you think he is totally out of touch, you get to ignore him. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 09:10:01 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9426610656D3 for ; Mon, 24 Oct 2011 09:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6CF378FC1A for ; Mon, 24 Oct 2011 09:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O9A1DI059044 for ; Mon, 24 Oct 2011 09:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O9A1qv059043; Mon, 24 Oct 2011 09:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 09:10:01 GMT Resent-Message-Id: <201110240910.p9O9A1qv059043@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, Henning Petersen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E4EB106566C for ; Mon, 24 Oct 2011 09:07:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9748FC12 for ; Mon, 24 Oct 2011 09:07:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O97Jns081458 for ; Mon, 24 Oct 2011 09:07:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O97JxF081457; Mon, 24 Oct 2011 09:07:19 GMT (envelope-from nobody) Message-Id: <201110240907.p9O97JxF081457@red.freebsd.org> Date: Mon, 24 Oct 2011 09:07:19 GMT From: Henning Petersen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161958: Add keyword restrict to glob(). X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 09:10:01 -0000 >Number: 161958 >Category: misc >Synopsis: Add keyword restrict to glob(). >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 09:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Henning Petersen >Release: FreeBSD-current >Organization: >Environment: >Description: Add keyword restrict to glob(). >How-To-Repeat: >Fix: diff -u -r1.28 glob.c --- lib/libc/gen/glob.c 12 May 2010 17:44:00 -0000 1.28 +++ lib/libc/gen/glob.c 24 Oct 2011 06:33:08 -0000 @@ -163,7 +163,8 @@ #endif int -glob(const char *pattern, int flags, int (*errfunc)(const char *, int), glob_t *pglob) +glob(const char * __restrict pattern, int flags, + int (*errfunc)(const char *, int), glob_t * __restrict pglob) { const char *patnext; size_t limit; @@ -717,7 +718,7 @@ free(pglob->gl_pathv); pglob->gl_pathv = NULL; } - return(GLOB_NOSPACE); + return (GLOB_NOSPACE); } if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) { =============================================================================== diff -u -r1.11 glob.h --- include/glob.h 16 Feb 2010 19:39:50 -0000 1.11 +++ include/glob.h 24 Oct 2011 05:48:35 -0000 @@ -98,7 +98,8 @@ #endif /* __BSD_VISIBLE */ __BEGIN_DECLS -int glob(const char *, int, int (*)(const char *, int), glob_t *); +int glob(const char * __restrict, int, + int (*)(const char *, int), glob_t * __restrict); void globfree(glob_t *); __END_DECLS ================================================================================ diff -u -r1.34 glob.3 --- lib/libc/gen/glob.3 15 Feb 2011 20:07:35 -0000 1.34 +++ lib/libc/gen/glob.3 24 Oct 2011 05:50:17 -0000 @@ -42,7 +42,7 @@ .Sh SYNOPSIS .In glob.h .Ft int -.Fn glob "const char *pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t *pglob" +.Fn glob "const char * restrict pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t * restrict pglob" .Ft void .Fn globfree "glob_t *pglob" .Sh DESCRIPTION Patch attached with submission follows: diff -u -r1.28 glob.c --- lib/libc/gen/glob.c 12 May 2010 17:44:00 -0000 1.28 +++ lib/libc/gen/glob.c 24 Oct 2011 06:33:08 -0000 @@ -163,7 +163,8 @@ #endif int -glob(const char *pattern, int flags, int (*errfunc)(const char *, int), glob_t *pglob) +glob(const char * __restrict pattern, int flags, + int (*errfunc)(const char *, int), glob_t * __restrict pglob) { const char *patnext; size_t limit; @@ -717,7 +718,7 @@ free(pglob->gl_pathv); pglob->gl_pathv = NULL; } - return(GLOB_NOSPACE); + return (GLOB_NOSPACE); } if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) { =============================================================================== diff -u -r1.11 glob.h --- include/glob.h 16 Feb 2010 19:39:50 -0000 1.11 +++ include/glob.h 24 Oct 2011 05:48:35 -0000 @@ -98,7 +98,8 @@ #endif /* __BSD_VISIBLE */ __BEGIN_DECLS -int glob(const char *, int, int (*)(const char *, int), glob_t *); +int glob(const char * __restrict, int, + int (*)(const char *, int), glob_t * __restrict); void globfree(glob_t *); __END_DECLS ================================================================================ diff -u -r1.34 glob.3 --- lib/libc/gen/glob.3 15 Feb 2011 20:07:35 -0000 1.34 +++ lib/libc/gen/glob.3 24 Oct 2011 05:50:17 -0000 @@ -42,7 +42,7 @@ .Sh SYNOPSIS .In glob.h .Ft int -.Fn glob "const char *pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t *pglob" +.Fn glob "const char * restrict pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t * restrict pglob" .Ft void .Fn globfree "glob_t *pglob" .Sh DESCRIPTION >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 11:09:20 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3032E106568D for ; Mon, 24 Oct 2011 11:09:20 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C8B88FC0C for ; Mon, 24 Oct 2011 11:09:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OB9KF3027142 for ; Mon, 24 Oct 2011 11:09:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OB9Ij5027140 for freebsd-bugs@FreeBSD.org; Mon, 24 Oct 2011 11:09:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Oct 2011 11:09:18 GMT Message-Id: <201110241109.p9OB9Ij5027140@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 Cc: Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 11:09:20 -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 -------------------------------------------------------------------------------- f ports/161955 sunpoet [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 f ports/161954 glarkin [PATCH] net/phpldapadmin: PHP Code Injection Vulnerabi o ports/161946 glewis [PATCH] java/openjdk7: install jars to generate zonein f ports/161943 wen [patch] lang/ucc: respect CC/CFLAGS, drop USE_GMAKE f ports/161941 sunpoet [PATCH] devel/p5-indirect: update to 0.26 o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o ports/161922 [maintainer][patch] math/saga: cleanup unneeded helper f ports/161920 wen [PATCH] graphics/openjump: update to 1.4.2 f ports/161919 sunpoet [PATCH] net-p2p/p5-Net-DirectConnect: update to 0.11 o ports/161918 [patch] update math/R-cran-car from 2.0-10 to 2.0-11 o ports/161916 beat [patch] update deskutils/plasma-applet-cwp from 1.5.4 o ports/161914 lev [patch] devel/subversion: Correct checksum and expecte o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o ports/161911 ashish [patch] editors/emacs-devel: broken pthread_sigmask() o kern/161908 net [netgraph] [patch] ng_vlan update for QinQ support f ports/161907 glarkin [PATCH] databases/beansdb: fix typo in description o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [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 f ports/161879 sunpoet [PATCH] textproc/p5-Text-VimColor: update to 0.14 o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o ports/161870 jhay [PATCH] net/p5-Net-SMPP: update to 1.19 o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. f ports/161865 zi [PATCH] sysutils/memtest: Update 4.2.2 f ports/161860 sunpoet [PATCH] devel/p5-AnyEvent-I3: update to 0.09 o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup f ports/161853 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 o conf/161847 [patch] reaper of the dead: remove ancient devfs examp f ports/161845 [update] [patch] multimedia/mplayer-skins Bring in ups f ports/161844 [PATCH] graphics/geos: update to 3.3.1 o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o conf/161835 [patch] SVN-detection in sys/conf/newvers.sh fails wit f ports/161830 sunpoet [PATCH] net-mgmt/p5-Zenoss: update to 1.11 o ports/161823 zi [PATCH] www/joomla15: update to 1.5.24 o ports/161814 [patch] security update www/linux-opera to 11.52 o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata f ports/161806 sunpoet [PATCH] textproc/p5-PDF-Table: update to 0.9.5 o usb/161798 usb [patch] usbdevs / if_run.c modification f ports/161792 dinoex [PATCH] net/radiusd-cistron: add rc script o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 f ports/161776 sunpoet [PATCH] www/p5-Mojolicious: update to 2.0 f ports/161766 pawel [PATCH] databases/cassandra: update to 0.8.7 p sparc/161764 marius [patch] Support dumping to Solaris swap partitions o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico o ports/161761 garga [PATCH] archivers/sharutils: fix gshar.1 gunshar.1 f bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks f ports/161732 swills [PATCH] www/rubygem-rack-cache: update to 1.1 f ports/161731 swills [PATCH] devel/rubygem-spruz: update to 0.2.13 f ports/161730 swills [PATCH] mail/rubygem-mail: update to 2.3.0 f ports/161729 swills [PATCH] www/rubygem-jquery-rails: update to 1.0.16 f ports/161728 swills [PATCH] databases/rubygem-dm-do-adapter: update to 1.2 f ports/161727 swills [PATCH] devel/rubygem-sprockets: update to 2.0.2 f ports/161726 swills [PATCH] net/rubygem-amqp-utils: update to 0.5.1 f ports/161725 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 f ports/161716 glarkin [PATCH] math/py-matplotlib: fix build on 10-CURRENT o ports/161706 portmgr [patch] exp-run required for updating emacs-devel vers o ports/161696 [maintainer] [patch] java/jrosetta Update to 1.0.4 f ports/161684 sunpoet [PATCH] devel/p5-perlbrew: update to 0.30 o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o ports/161567 gnome [PATCH] audio/pulseaudio: fix pkg-plist o ports/161564 python [patch] lang/python27: prune __wchar_t define from CFL o ports/161558 portmgr [bsd.port.mk] [patch] exp-run required for X11BASE rem f ports/161550 eadler [PATCH] unbreak lang/fasm o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o ports/161545 danfe [patch] fix installing only server to games/openttd o ports/161525 marcus [PATCH] Fix plist for net/netatalk when using custom b f ports/161518 [patch] update/add devel/scons version 2.1.0 o bin/161510 [patch] newgrp(1) has a memory leak o ports/161502 stas [patch] lang/sbcl: allow bootstrapping on 10.0-CURRENT o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o arm/161498 arm [patch] ARM RAS code can fail to restart an atomic seq o ports/161495 portmgr [PATCH] typo: ${PKG_NAME} in bsd.port.mk o arm/161492 arm [patch] ARM thread-data/RAS page is not properly initi o ports/161484 miwi [PATCH] Upgrade devel/pear-PHP_Codesniffer from 1.2.1 o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161470 [patch] www/squid31 unintentionally picks up libmd5 as o ports/161457 yzlin [patch] devel/py-fabric: update from 1.0.2 to 1.2.2 o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE f ports/161446 sunpoet [PATCH] www/p5-HTML-TreeBuilder-LibXML: update to 0.13 o ports/161444 stas [PATCH] lang/sbcl: update to 1.0.52.0 o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161413 joerg [patch] update devel/avrdude to 5.11 o ports/161412 joerg [patch] update devel/avr-libc to 1.7.1 f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 o bin/161401 [patch] have service(8) run scripts with the same reso f ports/161378 sunpoet [PATCH] www/xapian-omega: update to 1.2.7 f ports/161376 sunpoet [PATCH] databases/p5-Search-Xapian: update to 1.2.7.0 f ports/161375 sunpoet [PATCH] databases/xapian-bindings: update to 1.2.7 f ports/161374 sunpoet [PATCH] databases/xapian-core: update to 1.2.7 o ports/161370 itetcu [PATCH] net-im/skype-devel: update to 2.2.0.35 o bin/161368 [netrate] [patch] IPv6 patches for netblast/netsend/ne f ports/161342 sunpoet [PATCH] databases/p5-Mysql-Diff: update to 0.42 o ports/161332 girgen [PATCH] databases/postgresql91-server: Update to 9.1.1 o ports/161331 girgen [PATCH] databases/postgresql90-server: Update to 9.0.5 o ports/161330 girgen [PATCH] databases/postgresql84-server: Update to 8.4.9 o ports/161329 girgen [PATCH] databases/postgresql83-server: Update to 8.3.1 o ports/161328 girgen [PATCH] databases/postgresql82-server: update to 8.2.2 o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o ports/161319 lippe [PATCH] databases/mysqlsla: fix dependency o ports/161302 [patch] math/giacxcas update to 0.9.3 f ports/161295 perl [PATCH] mail/p5-SES: update to 1.01 o ports/161287 portmgr [PATCH] Mk/bsd.port.mk: fix check-already-installed ta o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa f ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161259 lippe [PATCH] databases/mysqlreport: fix dependency f ports/161244 [PATCH] audio/libmikmod: fix failed patching o ports/161192 gahr [patch] /graphics/gegl unneeded use of ruby o ports/161185 gnome [patch] Remove unnecessary graphics/cairo dependency f o misc/161175 [tools] [patch] uninitialized variables on some regres o ports/161172 beech [maintainer] [patch] net/ndisc6: add rc.d script for r o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161117 [patch] games/sl fix build under clang o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o ports/160996 swills [PATCH] devel/rubygem-devise: update to 1.4.7 f ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 eadler [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o conf/160960 [patch] /etc/rc.d/named o ports/160959 marcus [PATCH] ports-mgmt/portlint: add *FLAGS checks o ports/160951 tobez [PATCH] math/p5-Math-BigInt: remove conditional ExtUti o ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160930 skreuzer [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o conf/160892 [network.subr] [patch] add vboxnet[0-9]* to noafif lis o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/160866 [tools] [patch] Swapped arguments in fifo_misc.c o conf/160848 dougb [patch] [periodic] 310.accounting ignore $daily_accoun o bin/160834 [patch] grep(1): fixes for POSIX conformance o ports/160824 [PATCH] net/rabbitmq-c-devel: Upgrade to changeset cbe o misc/160818 [patch] boot menu (/boot/menu.rc) clarity and readabil a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o bin/160806 [patch] Swapped argumets in xlint(1) o ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version o ports/160796 xfce [PATCH] Fix pkg-plist of x11/xfce4-conf p docs/160775 delphij [patch] provide a better example for passwordless gues o ports/160759 perl [PATCH] devel/p5-ExtUtils-MakeMaker: update to 6.59 s ports/160746 beech [PATCH] net/scribe: [Fix compile error with thrift 0.6 o ports/160714 [patch] misc/{py-,}xdelta3: update to 3.0.0 (stable re o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 p bin/160678 mckusick [patch] dump(8) cannot do incremental backups when dev o ports/160672 sylvio [PATCH] devel/tclxml: fix dependencies s ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160667 [patch] audio/xmmix: fix WARNING pid 4826 (xmmix): ioc o ports/160664 sylvio [patch] graphics/epdfview: depend on cups-client inste o ports/160661 johans [patch] comms/minicom: make lrzsz dependency optional o ports/160657 skreuzer [patch] devel/distcc: adding pump mode support to dist 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 f ports/160640 [patch] devel/php5-blitz new version f ports/160626 [patch] www/py-rssdler: deprecate in favor of www/py-f o bin/160596 [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT f ports/160579 eadler [PATCH] audio/firefly: portlint(1) fixes and more o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o ports/160547 demon [PATCH] devel/p5-Locale-gettext: follow Perl module na o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o ports/160528 miwi [patch] shells/mksh: update /etc/shells on deinstall f ports/160511 [PATCH] make math/py-graphtool actually work o ports/160507 gerald [PATCH] bsd.gcc.mk: prefer the default version of gcc o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 stas [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries o ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160482 nivit [PATCH] misc/py-yolk: eliminate py-elementtree depende o misc/160463 [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [patch] Disable interrupts during busdma cache sync op p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o ports/160395 flz [PATCH] devel/rbtools: depend on simplejson conditiona o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160323 [PATCH] japanese/p5-Mail-SpamAssassin. fix sa-update, o usb/160301 usb [patch] missing device usb and device ucom entries in o bin/160295 [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) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160273 flo [patch] Fix distfile sources for port net/AquaGatekeep o ports/160272 flo [PATCH] unbreak port net/AquaGatekeeper o ports/160271 skv [PATCH] devel/thrift: fix compile error with fb303, pa o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o docs/160269 doc [patch] Handbook wireless section: sand off some rough f ports/160257 [patch] mail/ssmtp: pkg-message needs further descript o conf/160235 [syscons] [patch] Spanish Dvorak keyboard f ports/160233 [patch][update] devel/pinba_engine Update to new revis o ports/160223 miwi [PATCH] major memory leak in graphics/ristretto o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160195 swills [patch][maintainer-update] security/rubygem-bcrypt-rub o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o ports/160036 dhn [PATCH]x11-wm/i3 update to v4.0.1 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160031 [PATCH] devel/yajl add yajl.pc 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/159962 python [PATCH] Mk/bsd.python.mk: prevent polluting filesystem f ports/159951 [patch] www/woof to support Python 2.7 o ports/159947 vd [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ a ports/159926 eadler [PATCH] lang/py-prolog: some cleanup f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o ports/159902 skv [patch][update] devel/thrift Update to 0.7.0 & FIX: bu o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o docs/159897 doc [handbook] [patch] improve HAST section of Handbook f ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o ports/159863 johans [patch] chinese/tin with tin 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max o bin/159833 camcontrol(8): [patch] add ATA security options to cam f ports/159821 [patch] www/squid31: dnsserver does not build o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159811 daichi [PATCH] Update japanese/mozc-server to new version o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o 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 ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co p www/159634 gjb [patch] add Javascriptt o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 usb [PATCH] USB stick extrememory Snippy needs quirks 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 bin/159568 [patch] allow daemon(8) to write pid file in /var/run o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE f ports/159535 mi [patch] add support for building www/websh with EAPI s f ports/159516 [patch] Port comms/mlan3 update to 310r2 version f ports/159409 [PATCH] devel/py-boto: update to 2.0 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/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map o kern/159279 [headers] [patch] __FreeBSD_cc_version in 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 ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o ports/158204 [PATCH] java/jde: update to 2.4.0.1 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 f ports/158058 culot [PATCH] lang/elk: update to 3.99.8 o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o ports/157917 skv [PATCH] sysutils/pmap: multiple build problems 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 ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin 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 o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157559 crees [PATCH] Fix port: databases/postgresql82-server should o ports/157558 crees [PATCH] Fix port databases/postgresql83-server should o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o ports/157369 stas [PATCH] x11-toolkits/ocaml-lablgtk2: add an option for o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 doc [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI 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/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o gnu/157025 [patch] gcc(1): gcc Bug 28796 - __builtin_nan() and __ o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces f ports/156897 edwin [PATCH] net/freenet6: update pkg-message o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o misc/156817 [build] [patch] WITHOUT_CDDL and NO_CTF ignored if WIT o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x 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' f ports/156687 mi [PATCH] graphics/libmng: misc improvements o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d 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 ports/156629 [patch] sysutils/puppet patch to use PACKAGEROOT inste o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o ports/156528 fluffy [PATCH] textproc/wv2: remove useless depends on gmake o ports/156527 fluffy [PATCH] multimedia/gstreamer-qt4: remove depends on gm o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter p kern/156433 avg [sound] [patch] OSS4/VPC is broken on 64-bit platforms o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o ports/156386 danfe [patch] x11/nvidia-driver: EnableMSI doesn't work f ports/156376 [PATCH] graphics/optipng: update to 0.6.5 o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156319 java [patch] java/openjdk6 does not compile with previous l o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o ports/156251 apache [PATCH] Enable module by default for www/mod_fastcgi 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 ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o docs/155989 doc [patch] Fix offset in boot.config(5) o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES 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 conf/155738 portmgr [patch] reaper of the dead: time to BURN_BRIDGES and r o conf/155737 portmgr [patch] reaper of the dead: remove OBJFORMAT variable o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk f ports/155404 dinoex [PATCH] mail/mutt-devel: doesn't build in presence of o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o bin/155365 net [patch] routed(8): if.c in routed fails to compile if o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o 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 bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o ports/154951 girgen [patch] databases/postgresql-jdbc: update to 9.0.801 o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154809 [PATCH] ports-mgmt/porttools should include PORTREVISI 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 ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o gnu/154445 [patch] gcc(1): Attempt to "fix" gcc -ftree-vrp f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 stas [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154287 [kernel] [patch] Avoid malloc(0) implementation depend f ports/154254 rene [patch] asmail imap login broken with gmail at al. o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio 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 bin/154042 [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with o ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f 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 ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh 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 usb/153599 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 tabthorpe [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h 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 f ports/153437 rene [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar o ports/153429 eadler [patch] Fix explicite uses of unzip in ports 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/153257 [libc] [patch] regex(3): Add support for \< and \> wor o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153206 [patch] netstat(1): "netstat -sz" doesn't reset any IP 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 ports/152982 [patch] net/nss_ldap, ignore option nss_initgroups_ign 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/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152871 portmgr [patch] Request for exp-run and comment w/rt MACHINE_A o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd f ports/152820 bapt [patch] shells/zsh: correct memory report for time bui f 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 s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p f ports/152537 girgen [patch] database/postgresql90-server no longer needs p p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o kern/152485 [patch] null(4)/zero(4): /dev/null seek offset is not o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us p ports/152262 office [patch] editors/openoffice.org-3 o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 s ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 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/152131 script(1): [patch] Useless code in script.c (part 1) o bin/152084 [patch] pw(8) does not allow @ or ! in gecos f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp 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 ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un f ports/151837 stephen [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151830 kde [patch] devel/cmake: install cmake-mode.el 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 bin/151600 [patch] route(8) does not always flush stdout o kern/151449 bz [patch] IPsec SPD rule does not match GIF with IPv6 ad s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o docs/151367 doc [patch] Update for puc.4 man page o kern/151365 eadler [puc] [patch] Two new Moxa puc(4) devices o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF 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 ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate 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 f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 olgeni [PATCH] databases/postgresql-jdbc: fix build with java 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 a conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re 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 ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 o www/150553 www [patch] update Russian "FreeBSD Community" page o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o docs/150365 doc [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 bin/150229 cperciva [PATCH] update man page of freebsd-update(8) o kern/150206 jh [libc] [patch] nmount(2): can't switch root partition 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 o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA 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 ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) o bin/149972 [patch] pw(8): usermod -u should error o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb 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 o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. 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 p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o misc/149510 [build] [patch] CFT: sys/conf/newvers.sh: Cleanup and o www/149446 www [patch] improve misleading title of "report a bug" p bin/149403 ed [patch] truss(1) hangs when user input is requested 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 docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 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 bsnmp dependen o bin/143830 [patch] atmconfig(8): Fix conditional inclusion for sb 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 conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o kern/143622 net [pfil] [patch] unlock pfil lock while calling firewall o kern/143621 ipfw [ipfw] [dummynet] [patch] dummynet and vnet use result 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/143533 [patch] Changes to support Sun jumpstart via bootparam o bin/143504 pf [patch] outgoing states are not killed by authpf(8) 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 kern/143370 [new driver] [patch] New splash_txt module - support f 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 kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall 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 o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional 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 conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks 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 p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q p kern/142999 eadler [puc] [patch] add support for the I-O DATA RSA-PCI2/R o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o 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 a 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 ports/142743 stas [PATCH] devel/cross-binutils: installed by *-rtems-gcc a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) p docs/142367 roam [patch] wlan(4) does not document requirement for kern o bin/142258 [patch] rtld(1): add ability to log or print rtld erro o docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o kern/142018 net [iwi] [patch] Possibly wrong interpretation of beacon- o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 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 kern/141682 [libc] [patch] Faster version of strncpy(3) 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 p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou o kern/141091 fs [patch] [nullfs] fix panics with DIAGNOSTIC enabled o kern/141090 [kernel] [patch] patch for COMPAT for /sys/sys/sysprot f ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. o kern/140728 jfv [em] [patch] Fast irq registration in em driver a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/140661 fs [zfs] [patch] /boot/loader fails to work on a GPT/ZFS- p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke 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 p docs/140457 doc [patch] Grammar fix for isspace(3) 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/140416 [mfi] [patch] mfi driver stuck in timeout o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu o kern/140349 [libpcap] [patch] libpcap's parser doesn't recognize n a bin/140309 [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 s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o ports/139872 [PATCH] ports-mgmt/porttools: improve port's directory o bin/139802 uqs [patch] fsck_msdosfs(8): sync with NetBSD sources, inc o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/139705 remko [patch] tunefs(8) man page bugs section ambiguous on a p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139425 [kernel] [patch] Wrong behavior of KTR_VERBOSE o bin/139389 pluknet [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 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a 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 kern/139080 [libc] [patch] closelog() can close negative file desc a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o bin/138926 cperciva [patch] freebsd-update(8) allows unattended upgrade o bin/138855 [patch] if the hostname is empty, opiepasswd(1) create o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA p conf/138692 netchild [request] [patch] 450.status-security should exit with o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/138421 fs [ufs] [patch] remove UFS label limitations o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o bin/138150 [build] [patch] fix for src/etc/Makefile mtree o ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de 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/137819 [libc] [patch] fpurge(3) violates stdio invariant 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 p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter f kern/137436 eadler [puc] [patch] Fix puc driver to support newer Timedia o 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 net [patch] ifconfig(8) print carp mac address o ports/136917 python [patch] lang/python26: gettext detection 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 [patch] du(1): permit per directory only sum (no herit o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . o kern/136669 [libc] [patch] setmode(3) should always set errno on e o bin/136661 net [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 p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE 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 kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 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 [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 [patch] nslu2_led driver for the LEDs on the NSLU2 p arm/134338 arm [patch] Lock GPIO accesses on ixp425 o kern/134249 [libiconv] [patch] ignore case for character set names o 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 kern/134010 [libgssapi][patch] Buffer overflow and use-after-free o conf/134006 rc [patch] Unload console screensaver kernel modules if s 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 o 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 bin/132692 [patch] getent(1): no support for netgroup o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o kern/132497 rwatson [boot] [patch] Stale pre-5.x mbuf references in new Bo o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132302 [patch] smbutil(1): contrib/smbfs subr.c: saved passwo o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o bin/132114 randi [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 f kern/131933 eadler [uart] [patch] add support for Sony Ericsson GC89 EDGE o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o docs/131918 doc [patch] Fixes for the BPF(4) man page o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm 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 p bin/131250 brian [patch] ppp(8) proxyarp does not work 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 net [rc.d] [patch] No good way to set ipfilter variables a f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a a kern/130386 rwatson [patch] add locking for generic interface address mani o kern/130286 [patch] hifn(4) changes o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El p bin/130159 brian [patch] ppp(8) fails to correctly set routes p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 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# o kern/129861 pf [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 bin/129405 [patch] tcsh(1) vfork bugs p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page 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 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o docs/129024 keramida [patch] ipfw(8) improvements o usb/128977 usb [usb67] [patch] uaudio is not full duplex p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 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 kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop 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 secteam [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 p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage 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 bin/127986 [patch] ee(1): fix compiler warnings caused by use of 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 docs/127908 doc [patch] readdir(3) error documentation o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o kern/127717 scsi [ata] [patch] [request] - support write cache toggling 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 o bin/127276 [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 p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des 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 o bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage 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 p bin/124392 [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under 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 p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) p bin/124052 [patch] adduser(8) throws errors when -f input file in 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 o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e 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 s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to 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 p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab 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 jkoshy [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 kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard 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/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [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 p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 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/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va 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 o 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 p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI 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 p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and 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 docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [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 p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar 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 ports/118301 python [patch] devel/py-setuptools easy-install.pth contents o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [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 [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 o conf/117935 rc [patch] ppp fails to start at boot because of missing s bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o bin/117687 [patch] fstab(5) format cannot handle spaces o usb/117598 usb [snd_uaudio] [patch] Not possible to record with Plant o bin/117520 [patch] csup(1) not-really-equivalent to cvsup o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117339 net [patch] route(8): loading routing management commands p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr 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 p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o bin/116209 [patch] [request] decimal suffix in split(1) 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 usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter 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 p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi 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 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords 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 p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume 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 o bin/114465 [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 f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug 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 [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 usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection 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 conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat 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/113702 portmgr [patch] bad output from "pkginfo -g" 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/113239 [patch] atrun(8) loses jobs due to race condition 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) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in 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 s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las 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 p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n 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 p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove 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 s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 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 usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o docs/110253 doc [patch] rtprio(1): remove processing starvation commen 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 bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max 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 conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 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 p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [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 bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting 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 kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 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 o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale o bin/104921 ipfw [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 p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [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 o 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 f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive 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 usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o ports/102946 secteam [patch] ports-mgmt/portaudit a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in 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 p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install 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 kern/102471 ipfw [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 threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o bin/100956 remko [patch] support setting carp device state with ifconfi 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 bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) 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/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 [patch] updates for src/share/examples/cvsup 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 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel 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 usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio 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/95239 [libc] [patch] nftw(3) returns EINVAL for large values s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e 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 s www/94423 danger [patch] XML'ified release todo list 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 usb/93872 usb [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 p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work p kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines 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 o 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/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an 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 yar [patch] add ftpd(8) SITE SHA256 command o kern/91134 fs [smbfs] [patch] Preserve access and modification time o 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 ports/90436 portmgr [patch] Add a way to handle configuration files to bsd 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 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks 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) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco o 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 ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. 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. a bin/86485 arundel [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 kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci 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 p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip 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 ( a bin/77651 [patch] init(8) can lose shutdown related signals s i386/77355 i386 [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match 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 s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o bin/76362 [patch] sys directory link points to wrong location o gnu/76169 [patch] Add PAM support to cvs pserver 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 bin/75258 [patch] dd(1) has not async signal safe interrupt hand 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 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni 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/73786 [patch] added WARNING in spanish to stable-supfile 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 kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [kbdmap] [patch] United States International keyboard o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/71994 [patch] dot.login: login shell may unnecessarily print 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/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro 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 p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI 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 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/68797 [patch] cut(1): fflush after each write if an option i o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por 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 kern/66960 [fdc] [patch] filesystems not unmounted during reboot 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 p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a 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/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p 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 kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut 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( a 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 brucec [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 ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 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 a 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 remko [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 docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc 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/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o 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 p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 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 o bin/55539 [patch] Parse fstab(5) with spaces in path names f 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 docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility 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 s ports/52706 portmgr [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/51583 fs [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s 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 mtm [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 remko [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 a 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 gcooper [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/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 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 f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- 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 kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 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 gcooper [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 a 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 conf/40777 [patch] disktab does not support 2.88MB floppies 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 mtm [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 o docs/38982 doc [patch] developers-handbook/Jail fix 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 gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [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 randi [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) a 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/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md 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 o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [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 o bin/30542 [patch] add -q option to shut up killall(1) s threa/30464 threads [patch] pthread mutex attributes -- pshared o conf/30399 [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt s kern/29423 [request] [patch] new feature: kernel security hooks i p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28364 [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 docs/27605 doc [patch] Cross-document references () 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 remko [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 [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 f kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [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) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k 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) a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c 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 mtm [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 bin/9868 [patch] date(1) add "date -a" 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 randi sysinstall(8): [patch] /stand/sysinstall core dumps (s o bin/4420 imp [patch] find(1) -exedir doesn't chdir for first entry s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk o bin/4116 [patch] [kerberos] Kerberized login as .root fai s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 1920 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 11:06:06 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E37291065675 for ; Mon, 24 Oct 2011 11:06:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCDB68FC1B for ; Mon, 24 Oct 2011 11:06:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OB65qb024494 for ; Mon, 24 Oct 2011 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OB62aB024491 for freebsd-bugs@FreeBSD.org; Mon, 24 Oct 2011 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Oct 2011 11:06:03 GMT Message-Id: <201110241106.p9OB62aB024491@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 X-Mailman-Approved-At: Mon, 24 Oct 2011 11:11:25 +0000 Cc: Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 11:06:06 -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/161959 jkim kernel panic in audio/oss o misc/161958 Add keyword restrict to glob(). o bin/161957 jls -v doesn't show anything if system compiled with W o kern/161956 filesystem lock with mount nullfs in random cases f ports/161955 sunpoet [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 f ports/161954 glarkin [PATCH] net/phpldapadmin: PHP Code Injection Vulnerabi o ports/161952 fjoe [UPDATE] databases/pgadmin3: update to 1.14.0 f ports/161951 mail/dovecot2-antispam-plugin hangs fails when built w o bin/161950 sysinstall bsdinstall(8): FreeBSD 9 installer enters infinite inp o amd64/161949 amd64 [kern] 64-bit structures are used even with 32-bit cod f ports/161948 ports-mgmt/bpkg: Fixed syntax error on 9.x in shell sc o power/161947 ppc multimedia/libdvdnav builds broken binaries on big end o ports/161946 glewis [PATCH] java/openjdk7: install jars to generate zonein o ports/161945 java java/openjdk6: install jars to generate zoneinfo files f ports/161943 wen [patch] lang/ucc: respect CC/CFLAGS, drop USE_GMAKE f ports/161941 sunpoet [PATCH] devel/p5-indirect: update to 0.26 o ports/161940 pav [exp-run] poppler 0.18.0 r ports/161939 portmgr [repocopy] graphics/poppler-gtk to graphics/poppler-gl o ports/161938 New port www/pyLoad a fast, lightweight and full featu o ports/161937 dougb [maintainer] databases/phpmyadmin -- update to 3.4.7 o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu f ports/161933 [UPDATE] textproc/py-creole to 1.0.0 o ports/161932 net-mgmt/net-snmp reports bogus data in UCD-SNMP-MIB:: f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o ports/161930 graphics/gpsman update overlooked minor pkg-descr chan 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/161926 sysinstall bsdinstall(8): disk layout trouble o ports/161925 perl databases/p5-Dancer-Plugin-Redis: Fixed reconnect func 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 ports/161922 [maintainer][patch] math/saga: cleanup unneeded helper o bin/161921 named(8): default configuration on 9.0-RC1 produces an f ports/161920 wen [PATCH] graphics/openjump: update to 1.4.2 f ports/161919 sunpoet [PATCH] net-p2p/p5-Net-DirectConnect: update to 0.11 o ports/161918 [patch] update math/R-cran-car from 2.0-10 to 2.0-11 o misc/161917 pjd pjdfstest doesn't detect setup/teardown failures prope o ports/161916 beat [patch] update deskutils/plasma-applet-cwp from 1.5.4 o misc/161915 pjd pjdtests don't articulate requirements very well o ports/161914 lev [patch] devel/subversion: Correct checksum and expecte o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o ports/161911 ashish [patch] editors/emacs-devel: broken pthread_sigmask() o ports/161910 [UPDATE] games/darkplaces o kern/161908 net [netgraph] [patch] ng_vlan update for QinQ support f ports/161907 glarkin [PATCH] databases/beansdb: fix typo in description o ports/161906 zi [MAINTAINER] sysutils/pdsh: update to 2.27 o ports/161905 pawel [MAINTAINER] astro/qlandkartegt: update to 1.2.4 o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161899 net [route] ntpd(8): Repeating RTM_MISS packets causing hi o ports/161898 pawel Update port: net-p2p/eiskaltdcpp-* to 2.2.4 o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o ports/161894 New port databases/datamodeler: Database modeling tool o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o ports/161891 mbr I have upgraded emulators/open-vm-tools to open-vm-too o ports/161890 ume security/cyrus-sasl2 update broke IMAPS in mail/mutt-d 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 f conf/161885 remko FreeBSD 9 BETA 3 apparently ignores ifconfig_alias set s ports/161883 dougb [MAINTAINER] databases/mariadb-server: [SUMMARIZE CHAN o kern/161881 [ahci] [panic] [regression] Panics after AHCI timeouts f ports/161879 sunpoet [PATCH] textproc/p5-Text-VimColor: update to 0.14 o ports/161878 pawel [NEW PORT] audio/lingot. LINGOT - LINGOT Is Not a Guit f ports/161877 jadawin cd: can't cd to /usr/ports/security/p5-IO-Socket-SSL/w o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161872 garga Port security/clamav requires libcheck as dependence e o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o ports/161870 jhay [PATCH] net/p5-Net-SMPP: update to 1.19 o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. o ports/161867 Revised Port: www/web-traceroute f ports/161865 zi [PATCH] sysutils/memtest: Update 4.2.2 o kern/161864 fs [ufs] removing journaling from UFS partition fails on o ports/161863 devel/geany-plugins: More broken options in devel/gean f ports/161860 sunpoet [PATCH] devel/p5-AnyEvent-I3: update to 0.09 o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup f ports/161853 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 o conf/161847 [patch] reaper of the dead: remove ancient devfs examp o bin/161846 gabor bsdgrep(1) causes regression in www/firefox port f ports/161845 [update] [patch] multimedia/mplayer-skins Bring in ups f ports/161844 [PATCH] graphics/geos: update to 3.3.1 o ports/161842 sylvio net-mgmt/net-snmp memory leak o ports/161841 zi [MAINTAINER] news/sabnzbdplus-0.6.9 -> 0.6.10 o ports/161839 danfe x11/nvidia-driver-96: won't compile o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit r ports/161836 portmgr [REPOCOPY] net-p2p/transmisson-remote-gui to net-p2p/t o conf/161835 [patch] SVN-detection in sys/conf/newvers.sh fails wit r ports/161834 portmgr [REPOCOPY] www/opera to www/opera-next and www/linux-o o ports/161832 [maintainer] update databases/mysql-connector-odbc to f ports/161830 sunpoet [PATCH] net-mgmt/p5-Zenoss: update to 1.11 o ports/161828 fjoe misc/mc 4.7.5.5: Subshell don't save the output of th o ports/161827 [maintainer] www/trac-bzr: update to 20110228 a ports/161825 eadler New port: www/linux-flashplugin11 o ports/161823 zi [PATCH] www/joomla15: update to 1.5.24 o ports/161822 glarkin [MAINTAINER] databases/postgresql-plpython: fix plist o ports/161820 port update news/sabnzbdplus o ports/161814 [patch] security update www/linux-opera to 11.52 o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option a docs/161808 bcr Missing documentation critical to correct usage of uui o bin/161807 fs [patch] add option for explicitly specifying metadata f ports/161806 sunpoet [PATCH] textproc/p5-PDF-Table: update to 0.9.5 o kern/161805 qingli [regression] [panic] [arp] Repeatable panic in ARP cod o docs/161804 doc New documentation: French translation for building-pro o ports/161803 wen graphics/mapserver don't need apache o ports/161800 [new ports] 2 new Pure bindings: math/pure-mpfr & deve f ports/161799 eadler lang/pure: [UPDATE] to 0.48 (all-in-one patch) o usb/161798 usb [patch] usbdevs / if_run.c modification o ports/161796 zi [Maintainer Update] lang/gambit-c o usb/161793 usb poor EHCI usb2 i/o performance f ports/161792 dinoex [PATCH] net/radiusd-cistron: add rc script f ports/161790 Update security/metasploit port o ports/161789 office editors/openoffice.org-3: compilations fails in module o ports/161786 girgen databases/postgresql84-server: regression breaks other o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 f ports/161776 sunpoet [PATCH] www/p5-Mojolicious: update to 2.0 a ports/161773 eadler New port graphics/tilecache - a Python-based WMS-C/TMS o ports/161770 New port graphics/tinyows - A High Performance WFS-T s o kern/161768 [ahci] [panic] Panics after AHCI timeouts f ports/161766 pawel [PATCH] databases/cassandra: update to 0.8.7 o ports/161765 mm net/relayd: relayd fails to initialize on systems with p sparc/161764 marius [patch] Support dumping to Solaris swap partitions o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico o ports/161762 kde x11/kdelibs4: /usr/local/include/qt4/QtCore/qstring.h: o ports/161761 garga [PATCH] archivers/sharutils: fix gshar.1 gunshar.1 a ports/161760 danfe audio/cdparanoia fails to compile on 9.0 o ports/161759 secteam [vuxml] security/vuxml: bid misreference o ports/161758 apache www/mod_rpaf2: slave seperation and Apache22+ limitati f 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-bugs 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/161749 kientzle bsdtar(1) --gname and --uname switches not working f ports/161748 perl Update Port: www/p5-Mojolicious to 2.0 o ports/161745 fjoe [Update]x11-toolkits/wxgtk29:update to 2.9.2 o ports/161740 hrs panic occurs when execute kldunload(ports multimedia/p o bin/161739 top(1): top -b does not restore ICANON and ECHO termin o ports/161737 chromium www/chromium 14.0.835.x stalls (probably javascript-re f ports/161732 swills [PATCH] www/rubygem-rack-cache: update to 1.1 f ports/161731 swills [PATCH] devel/rubygem-spruz: update to 0.2.13 f ports/161730 swills [PATCH] mail/rubygem-mail: update to 2.3.0 f ports/161729 swills [PATCH] www/rubygem-jquery-rails: update to 1.0.16 f ports/161728 swills [PATCH] databases/rubygem-dm-do-adapter: update to 1.2 f ports/161727 swills [PATCH] devel/rubygem-sprockets: update to 2.0.2 f ports/161726 swills [PATCH] net/rubygem-amqp-utils: update to 0.5.1 f ports/161725 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 o kern/161721 alc [boot] compiling kernel with KVA_PAGES=512 does not al o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition s kern/161719 [request] Support for Realtek 5209 SD card reader f ports/161716 glarkin [PATCH] math/py-matplotlib: fix build on 10-CURRENT o kern/161715 acpi [acpi] Dell E6520 doesn't resume after ACPI suspend o kern/161713 acpi [acpi] Suspend on Dell E6520 o conf/161710 rc SSHD starts on boot even if sshd_enable="NO" in 8.2 o ports/161706 portmgr [patch] exp-run required for updating emacs-devel vers p ports/161705 crees devel/tortoisehg1: does not work with current devel/me o kern/161702 firewire [firewire] Firewire messages on DELL E6520 running 8.2 o ports/161701 eadler New port: games/chocolate-doom Doom port o ports/161698 New port databases/pecl-mysqlnd_ms o ports/161696 [maintainer] [patch] java/jrosetta Update to 1.0.4 f ports/161694 sysutils/dvd+rw-tools: growisofs fails to close disc f kern/161692 bz Error in IPFW code halts kernel compile in 9.0-BETA3 o ports/161691 swills [MAINTAINER UPDATE] sysutils/rubygem-bundler: update t o ports/161690 New port: games/prboom-plus Port of ID Software's Doom f ports/161689 zi net/nss-pam-ldapd doesn't honor PREFIX -- DANGEROUS fo f ports/161684 sunpoet [PATCH] devel/p5-perlbrew: update to 0.30 o ports/161678 New port: sysutils/acpi_call kernle module for calling o bin/161677 geom gpart(8) Probably bug in gptboot o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o kern/161674 fs [ufs] snapshot on journaled ufs doesn't work o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161664 danfe Updated port: archivers/deutex Doom WAD Archive editor o ports/161631 multimedia Update port: audio/fluidsynth to 1.1.5 o ports/161608 zi Update port: net-mgmt/wide-dhcp to 1.4.0.7 o docs/161588 doc Missing "-l name" option from pw(8) USER section o ports/161586 oliver [UPDATE] multimedia/audacious and multimedia/audacious o ports/161585 gnome [UPDATE] devel/goffice to 0.8.17, math/gnumeric to 1.1 o kern/161579 fs [smbfs] FreeBSD sometimes panics when an smb share is o ports/161578 devel/strace is not working o ports/161574 demon Can't compile devel/p5-Locale-gettext on 9.0beta o ports/161571 perl New port: devel/p5-Gtk2-Notify - Perl interface to lib f ports/161570 deskutils/vym: [UPDATE] to 1.99.0 f ports/161569 [MAINTAINER] audio/libaacplus: aacplus.h has comma at o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o ports/161567 gnome [PATCH] audio/pulseaudio: fix pkg-plist o ports/161564 python [patch] lang/python27: prune __wchar_t define from CFL o usb/161559 usb Add LOGITECH Webcam C100 into usbdevs o ports/161558 portmgr [bsd.port.mk] [patch] exp-run required for X11BASE rem o kern/161553 Timestamp missing from msgbuf o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al o ports/161551 stas lang/ruby19 fails to handle a signal (TERM, HUP, etc) f ports/161550 eadler [PATCH] unbreak lang/fasm o ports/161549 timur Bugs with aio_suspend configure test in net/samba35 o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o ports/161545 danfe [patch] fix installing only server to games/openttd o ports/161544 mm graphics/ImageMagick: ImageMagick-6.7.3-0 compilation o misc/161540 cperciva gzippped kernel is not updated by FREEBSD-UPDATE o ports/161539 New port: audio/gmusicbrowser - Jukebox for large amou f ports/161536 www/php-yaf: rename to www/pecl-yaf o ports/161534 perl graphics/p5-OpenGL: Updates to 0.66 o kern/161533 fs [zfs] [panic] zfs receive panic: system ioctl returnin o www/161532 www Add Americatel Peru to http://www.freebsd.org/commerci 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 ports/161525 marcus [PATCH] Fix plist for net/netatalk when using custom b o ports/161523 zi [maintainer-update] Update games/stonesoup to version f ports/161521 eadler [new port] databases/py-carbon, backend storage applic f ports/161518 [patch] update/add devel/scons version 2.1.0 o bin/161515 systat(8) does not show Disk MB/s for md devices o ports/161512 marcus net-im/pidgin & net-im/libpurple fails when gstreamer o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o bin/161510 [patch] newgrp(1) has a memory leak p bin/161509 delphij usr.bin/newgrp has an off-by-1 error when checking ngr o ports/161504 stas update devel/opengrok for version 0.9 o ports/161502 stas [patch] lang/sbcl: allow bootstrapping on 10.0-CURRENT o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o arm/161498 arm [patch] ARM RAS code can fail to restart an atomic seq o docs/161496 doc zfs(1): Please document that sysctl vfs.usermount must o ports/161495 portmgr [PATCH] typo: ${PKG_NAME} in bsd.port.mk o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports o kern/161493 fs [nfs] NFS v3 directory structure update slow o arm/161492 arm [patch] ARM thread-data/RAS page is not properly initi o ports/161490 sbz security/rkhunter: rkhunter.conf file overwrote after o kern/161486 geom [geli] GELI password entry is too visible o ports/161484 miwi [PATCH] Upgrade devel/pear-PHP_Codesniffer from 1.2.1 o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161470 [patch] www/squid31 unintentionally picks up libmd5 as o ports/161467 [UPDATE] textproc/py-creole to 0.9.1 o ports/161462 net-mgmt/zabbix-agent: Zabbix_agentd opens a lot of fi o ports/161459 eadler New port: x11-fm/doublecmd Total Commander clone for t o ports/161457 yzlin [patch] devel/py-fabric: update from 1.0.2 to 1.2.2 o kern/161456 [libpam] on a system bound to an LDAP server, top trie o ports/161455 multimedia/transcode should depend on ffmpeg o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE f ports/161446 sunpoet [PATCH] www/p5-HTML-TreeBuilder-LibXML: update to 0.13 o ports/161444 stas [PATCH] lang/sbcl: update to 1.0.52.0 o ports/161442 [MAINTAINER] devel/gps: Update to version 5.0.1 a ports/161441 eadler New port: databases/4store o ports/161440 [NEW PORT] devel/libk8055: Velleman K8055 USB experime 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 ports/161431 skv lang/perl5.12: fix build on 10.0-CURRENT o kern/161425 [libc] Memory leak in localtime.c's tzload() o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o ports/161421 gecko [patch] www/firefox: use libevent2 o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li f ports/161415 eadler audio/lmms port upgrade to 0.4.12 f ports/161414 glarkin [UPDATE] lang/swi-pl: update to 5.10.5 o ports/161413 joerg [patch] update devel/avrdude to 5.11 o ports/161412 joerg [patch] update devel/avr-libc to 1.7.1 o ports/161409 johans devel/m4 doesn't compile --- missing libsigsegv, but l o ports/161408 freebsd x11-fm/thunar doesn't package o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 f ports/161403 zi net/libtcp4u: Fix double colon on do-configure target o bin/161401 [patch] have service(8) run scripts with the same reso o ports/161396 perl [maintainer] ports-mgmt/p5-FreeBSD-Portindex -- update o ports/161390 wen [maintainer] chinese/cxterm broken because does not co f ports/161383 gabor security/snortsam version 2.7.0 returns bad code from f ports/161382 gabor net/daq version 6.x is not compatible with snort 2.9.0 o kern/161381 net [re] RTL8169SC - re0: PHY write failed o ports/161379 security/openssl compile error caused by abbreviated-r f ports/161378 sunpoet [PATCH] www/xapian-omega: update to 1.2.7 f ports/161376 sunpoet [PATCH] databases/p5-Search-Xapian: update to 1.2.7.0 f ports/161375 sunpoet [PATCH] databases/xapian-bindings: update to 1.2.7 f ports/161374 sunpoet [PATCH] databases/xapian-core: update to 1.2.7 o ports/161370 itetcu [PATCH] net-im/skype-devel: update to 2.2.0.35 o bin/161368 [netrate] [patch] IPv6 patches for netblast/netsend/ne f ports/161363 marius sysutils/cdrtools: CLANG: ==> GENERATING include file o ports/161359 maho math/gotoblas build fails on "Sandy Bridge" CPU o ports/161356 haskell lang/ghc: bootstrap assumes `gcc', ignoring CC f ports/161346 pawel [NEW PORT] emulators/kcemu v0.5.1 o threa/161344 kib Failure to init TLS variables with func ptr inside sha f ports/161342 sunpoet [PATCH] databases/p5-Mysql-Diff: update to 0.42 o ports/161335 perl [NEW PORT] net/p5-Net-Subnet Fast IP-in-subnet matcher o ports/161332 girgen [PATCH] databases/postgresql91-server: Update to 9.1.1 o ports/161331 girgen [PATCH] databases/postgresql90-server: Update to 9.0.5 o ports/161330 girgen [PATCH] databases/postgresql84-server: Update to 8.4.9 o ports/161329 girgen [PATCH] databases/postgresql83-server: Update to 8.3.1 o ports/161328 girgen [PATCH] databases/postgresql82-server: update to 8.2.2 o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o ports/161319 lippe [PATCH] databases/mysqlsla: fix dependency o kern/161318 xen [xen] sysinstall crashes with floating point exception o ports/161317 kde x11/xde4: KDE 4.6.5 does not prompt for authentication o ports/161314 portmgr bsd.port.mk comments for BUILD_ and RUN_DEPENDS fail t f ports/161308 dougb databases/mysql-connector-odbc build fails with mariad o ports/161306 jlaffaye [MAINTAINER] print/cups-pdf: update to 2.6.1 o ports/161302 [patch] math/giacxcas update to 0.9.3 f ports/161299 science/paraview: CLANG: Linking CXX shared library . f ports/161295 perl [PATCH] mail/p5-SES: update to 1.01 o kern/161293 wireless [iwn] hang at startup when starting network o gnu/161289 Please update contrib/gperf to 3.0.3 (last GPL2 versio o ports/161287 portmgr [PATCH] Mk/bsd.port.mk: fix check-already-installed ta f ports/161286 gabor security/snort update: multi-interface patch for snort o kern/161280 fs [zfs] Stack overflow in gptzfsboot o ports/161278 anders net/dante: getoutaddr(): address [...] selected, but n o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa f ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161268 sysutils/fusefs-ntfs fails to mount ntfs "invalid argu s kern/161260 [request] need mps on RELENG_7 for dell servers (PERC o ports/161259 lippe [PATCH] databases/mysqlreport: fix dependency o ports/161258 perl [NEW PORT] security/p5-Net-SSL-ExpireDate: obtain expi o bin/161257 procstat(1): procstat should grow a -l flag to display o ports/161254 girgen databases/postgresql91-server not build whith openldap s kern/161251 [request] Port otus driver from OpenBSD. o ports/161249 shaun net-p2p/bitcoin fails to build o kern/161248 [ahci] Time out, extremly slow response while copying f ports/161244 [PATCH] audio/libmikmod: fix failed patching o ports/161239 Graphics/pgplot fails to build w/gcc46 o kern/161233 [build] update RELENG_8 make buildworld error gcc. o ports/161231 [NEW PORT] www/sencha-touch: The First HTML5 Mobile We o ports/161230 nork japanese/xgate: update tomcat dependency o ports/161226 security/fprint_demo: Updates to last git version o ports/161225 security/pam_fprint: Updates to the last git version o ports/161219 cy Repocopy request: copy sysutils/syslog-ng3-devel to sy 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/161192 gahr [patch] /graphics/gegl unneeded use of ruby o ports/161185 gnome [patch] Remove unnecessary graphics/cairo dependency f o ports/161180 gnome [UPDATE] sysutils/gnome-schedule: update to 2.1.5 o misc/161175 [tools] [patch] uninitialized variables on some regres o www/161174 www Make http://www.freebsd.org/cgi/search.cgi search GNAT o ports/161172 beech [maintainer] [patch] net/ndisc6: add rc.d script for r o kern/161169 fs [zfs] [panic] ZFS causes kernel panic in dbuf_dirty o ports/161167 security/botan configure does not work with python 3.1 o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 o ports/161151 perl math/PDL: updates to 2.4.9 o ports/161148 swills New port: databases/infobright -- the infobright colum o ports/161139 restore sysutils/gpart f ports/161136 sbz editors/gobby: CLANG: o arm/161128 arm gcc 4.2.1 ARM produces bad code with -fstack-protector f ports/161119 Update textproc/lucene to version 3.4.0 f ports/161117 [patch] games/sl fix build under clang 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 ports/161106 sysutils/openipmi is dropping core o ports/161103 stas graphics/rawtherapee fails to build 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 f ports/161096 glarkin [UPDATE] devel/zeroinstall-injector: update to 1.3. Ma o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp p ports/161078 crees www/myghty: request for marking it DEPRECATED p ports/161077 crees devel/py-myghtyutils: request for marking it DEPRECATE o ports/161076 gahr [UPDATE] x11-toolkits/fltk to v1.3.0 p ports/161074 crees devel/py-reverse: request for marking it DEPRECATED f ports/161072 update mail/davmail to 3.9.4 o ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT o ports/161069 mm multimedia/ffmpeg: CLANG: /usr/bin/ld: libavcodec/x86/ p ports/161067 crees astro/weatherget: request for marking it BROKEN and DE o ports/161064 sylvio net-mgmt/net-snmp cores and memory leak p ports/161063 crees devel/py-vmaps: request for marking it DEPRECATED o ports/161059 dinoex print/a2ps-letter: some files in the plist are not ins o bin/161058 enc(1): enc0 not capturing outgoing IPSEC encrypted tr o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook 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/161048 sysinstall bsdinstall(8): should run a concurrent shell on anothe o bin/161047 sysinstall 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 o kern/161043 [psm] PS/2 mouse does not work in 9.0-BETA2/-CURRENT [ o ports/161041 sylvio net/ntop fix ./configure options, and fix python-confi o ports/161040 girgen databases/postgresql-jdbc: update to 9.1-901 o ports/161038 mnag databases/py-pysqlite20: request for marking it DEPREC o ports/161037 sylvio net/ntop new version has compatibility issues on 7.4 o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o ports/161033 girgen Port-Update of postgresql*-server/client needed o bin/161028 [PATCH] service(8) -- Minor improvements f ports/161027 pav Update security/dradis to 2.7.2 o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO p bin/161016 mckusick umount(8) doesn't fully sync UFS filesystems on 9.x o ports/161015 pawel textproc/meld: update to 1.5.2 f kern/161013 pjd [geli] geli with HMAC/MD5 authentication fails during f ports/161005 graphics/geos: CLANG : for functional-style cast from f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o ports/160996 swills [PATCH] devel/rubygem-devise: update to 1.4.7 o kern/160994 buf_ring(9): MD assumption in MI code f ports/160993 crees New port: security/sqlcipher o kern/160992 buf_ring(9) statistics accounting not MPSAFE f ports/160991 net/opennx : Unexpected termination of nxssh p bin/160979 burncd(8): 9.0 burncd error caused by change to cd0 fr o bin/160975 ipfw(8): ipfw's uid matching doesn't function with IPv f ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 eadler [patch] ports/x11/libXi broken manpages o bin/160967 newsyslog(8) is not working o ports/160963 x11 [patch] x11/bigreqsproto: disable specs f ports/160962 eadler NEW PORT: mail/spamdb-curses Curses interface for Open o conf/160960 [patch] /etc/rc.d/named o ports/160959 marcus [PATCH] ports-mgmt/portlint: add *FLAGS checks o ports/160951 tobez [PATCH] math/p5-Math-BigInt: remove conditional ExtUti o ports/160948 xfce [UPDATE] sysutils/xfce4-utils to 4.8.3 o ports/160947 xfce [UPDATE] sysutils/xfce4-settings to 4.8.3 o ports/160946 xfce [UPDATE] x11-wm/xfce4-wm to 4.8.2 o ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160936 office Can't install editors/libreoffice o ports/160935 chromium www/chromium doesn't update o ports/160933 gecko Bad port interactions between Mozilla projects o ports/160930 skreuzer [PATCH] devel/gdb: HW watchpoint support for amd64 f ports/160927 lang/gauche: needs upgrade o kern/160922 kientzle [libarchive] libarchive stops buildworld using WITHOUT o ports/160921 oliver devel/libzvbi: CLANG: ./misc.h:59:5: error: invalid to o ports/160920 xfce [UPDATE] x11-wm/xfce4-panel to 4.8.6 o ports/160918 stas devel/valgrind's memcheck-x86-freebs module drops core o usb/160911 usb The usb flash drive JetFlash Transcend 16GB 1100 doesn f ports/160910 wen devel/py-waf: request for marking it DEPRECATED o ports/160906 brooks net/openmpi compile error on FreeBSD 8 o ports/160900 sylvio net-mgmt/net-snmp 5.7_3 TCP-MIB::tcpCurrEstab.0 return o ports/160897 kevlo ports/security/bro update o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o kern/160893 fs [zfs] [panic] 9.0-BETA2 kernel panic o conf/160892 [network.subr] [patch] add vboxnet[0-9]* to noafif lis f ports/160891 [UPDATE]: audio/qmpdclient Update to new release, 1.2. o ports/160890 miwi missing dependency in net/pear-XML_RPC2 o ports/160888 bf patch for nmap compile for nanobsd o ports/160887 osa patch for nginx-devel for nanobsd o ports/160885 bf patch for lua for nanobsd nuild o ports/160877 bf port fix to build audio/cmt on nanobsd o ports/160875 xfce [UPDATE] x11-fm/thunar to 1.2.3 o ports/160874 xfce [UPDATE] deskutils/xfce4-tumbler to 0.1.22 o kern/160873 net [igb] igb(4) from HEAD fails to build on 7-STABLE o ports/160870 www/mod_security port not updated o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/160866 [tools] [patch] Swapped arguments in fifo_misc.c o ports/160861 New port: security/racoon-tool Manage setkey and racoo o kern/160860 fs Random UFS root filesystem corruption with SU+J [regre o ports/160856 mm graphics/opencv-core: CLANG build fails f ports/160850 eadler New Port: www/graphite-web o conf/160848 dougb [patch] [periodic] 310.accounting ignore $daily_accoun o ports/160843 cperciva portsnap3.FreeBSD.org, Snapshot appears to be more tha 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 docs/160827 blackend New documentation: French translation for linux-users o ports/160825 eadler [MAINTAINER] www/MT: Perl modules introduced when usin o ports/160824 [PATCH] net/rabbitmq-c-devel: Upgrade to changeset cbe o ports/160823 [NEW PORT] devel/pecl-amqp: AMQP API f ports/160821 audio/libmp3splt: Building WITHOUT_ID3 fails o ports/160820 maintainer update: mail/dovecot2 and dovecot2-pigeonho o misc/160818 [patch] boot menu (/boot/menu.rc) clarity and readabil o ports/160817 Can not build mew port with zh_TW.Big5 as value of LC_ a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o bin/160806 [patch] Swapped argumets in xlint(1) 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 ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version o ports/160796 xfce [PATCH] Fix pkg-plist of x11/xfce4-conf o ports/160795 xfce [UPDATE] x11-wm/xfce4-desktop to 4.8.3 o ports/160794 xfce [UPDATE] x11-wm/xfce4-session to 4.8.2 o ports/160793 xfce [UPDATE] deskutils/orage to 4.8.2 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 p docs/160775 delphij [patch] provide a better example for passwordless gues o www/160774 www Irish mirror of freeBSD website is very out of date o ports/160764 gnome If libinotify is installed, net/avahi-app doesn't buil o ports/160763 office editors/libreoffice-legacy soffice.bin coredump o kern/160760 (Kernel) Log messages garbled/interleaved o ports/160759 perl [PATCH] devel/p5-ExtUtils-MakeMaker: update to 6.59 o kern/160750 net Intel PRO/1000 connection breaks under load until rebo s ports/160746 beech [PATCH] net/scribe: [Fix compile error with thrift 0.6 o bin/160745 sed(1) appends '\n' at the end of binary data (unlike s ports/160740 ume Stop in /usr/ports/mail/cyrus-imapd24/work/cyrus-imapd o ports/160730 xfce [UPDATE] x11-wm/xfce4 update pkg-descr o ports/160717 python port: lang/python27 causing other ports to hang during s ports/160716 avilla multimedia/kdenlive: Notifying port developer of a bug o ports/160714 [patch] misc/{py-,}xdelta3: update to 3.0.0 (stable re 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/160702 apache devel/apr1: CLANG build produces unusable library for o docs/160698 doc Remove outdated FreeBSD Jumpstart guide 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 o kern/160692 FreeBSD must consider shipping with SC_PIXEL_MODE on ( o kern/160691 Negative ping times (serious time keeping problem?) on o bin/160689 FreeBSD should have .cshrc updated for modern hardware o ports/160688 hrs print/acroread9 runtime fails with "failed to load mod o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 o ports/160685 gnome graphics/gimp-app included gnome-libtool fails to loca p bin/160678 mckusick [patch] dump(8) cannot do incremental backups when dev o ports/160672 sylvio [PATCH] devel/tclxml: fix dependencies s ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160667 [patch] audio/xmmix: fix WARNING pid 4826 (xmmix): ioc o ports/160666 [maintainer-update] p5-Sys-Filesystem default package o ports/160664 sylvio [patch] graphics/epdfview: depend on cups-client inste o ports/160661 johans [patch] comms/minicom: make lrzsz dependency optional o ports/160659 xfce [UPDATE] x11-themes/gtk-xfce-engine to 2.9.0 o ports/160657 skreuzer [patch] devel/distcc: adding pump mode support to dist 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 f ports/160640 [patch] devel/php5-blitz new version o ports/160631 mm graphics/pecl-imagick: Small change to honor WITHOUT_X f ports/160626 [patch] www/py-rssdler: deprecate in favor of www/py-f o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o ports/160623 vanilla lang/v8 javascript engine update o kern/160611 lzjb_uncompress possible access violation? o bin/160596 [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT o ports/160592 sunpoet sysutils/freeipmi Add bmc-watchdog.rc 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 ports/160580 girgen databases/postgresql[89] broken f ports/160579 eadler [PATCH] audio/firefly: portlint(1) fixes and more o ports/160566 [new port] mail/dbmail-devel: dbmail upgraded to versi o ports/160563 gnome portupgrade of sysutils/tracker-client fails o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o amd64/160561 amd64 no C-states on atom D525 o ports/160560 nork update japanese/nkf o java/160553 java Jaikoz java based audio tagger core dumps o ports/160551 wen graphics/mapserver: CLANG: ./include/agg_renderer_outl o ports/160548 ale databases/mysql55-server - make OpenSSL available to m o ports/160547 demon [PATCH] devel/p5-Locale-gettext: follow Perl module na f ports/160544 rene sysutils/lsof: build fails with clang o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o ports/160540 office editors/libreoffice version 3.4.3: soffice.bin and oos f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o ports/160528 miwi [patch] shells/mksh: update /etc/shells on deinstall o misc/160517 X pseudo-terminals are not registered in utmp and wtmp p bin/160516 pluknet pkg_delete(1) error messages miss which package had th f ports/160511 [PATCH] make math/py-graphtool actually work o ports/160507 gerald [PATCH] bsd.gcc.mk: prefer the default version of gcc o ports/160506 gnome [update] deskutils/gnote: update to 0.7.5 o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 stas [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries o ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn f ports/160488 office patching editors/libreoffice fails on 9.0-BETA2 o ports/160485 gnome [UPDATE] deskutils/ontv: update to 3.2.0 o ports/160482 nivit [PATCH] misc/py-yolk: eliminate py-elementtree depende o ports/160481 office devel/icu: Errors in total: 1. TestCompile o ports/160475 vbox emulators/virtualbox-ose: virtualbox causes panic in v o ports/160471 gnome www/webkit-gtk2 fails to build/link o ports/160465 acm print/foo2zjs: Install of ppd files to /usr/local/shar o misc/160463 [build] [patch] fix build dependency for dtrace module o www/160461 bugmeister Send-pr uses different terminology than docs / executa o docs/160460 bcr [handbook] Network setup guide suggestion p ports/160448 marcus ports-mgmt/portlint shall warn about CPPFLAGS being pa o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL a ports/160444 gecko www/seamonkey fails to build o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o usb/160436 usb ucom wedges machine on parity error ? o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [patch] Disable interrupts during busdma cache sync op p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o ports/160422 nox astro/google-earth: crashes on FreeBSD 9.0 o kern/160420 net [msk] phy write timeout on HP 5310m o kern/160419 acpi [acpi_thermal] acpi_thermal kernel thread high CPU usa a ports/160415 dinoex x11-toolkits/Xaw3d: ===> Configuring for Xaw3d-1.5E_4 o bin/160412 wrong value in systat(1) o ports/160411 gecko www/libxul: does not compile/configure using clang o kern/160410 fs [smbfs] [hang] smbfs hangs when transferring large fil o kern/160409 geom [geli] failed to attach provider o ports/160408 sunpoet graphics/gdal: error: command '/bin/sh' failed with ex a ports/160407 dinoex graphics/xv: clang compilation error: cannot exec clan o ports/160404 jpaetzel Unbreaking databases/ruby-bdb1 for Ruby-1.9 o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o ports/160402 knu databases/ruby-bdb regression-test target broken; test o docs/160399 doc Man page for re(4) missing jumbo frames info f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o ports/160395 flz [PATCH] devel/rbtools: depend on simplejson conditiona 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 brooks security/ca_root_nss: Allow user to trust extra local o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/160370 pf [pf] Incorrect pfctl check of pf.conf s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160366 New port: misc/xmonad-log-applet An applet that will d p ports/160357 x11 x11/dri2proto port update o ports/160354 x11 x11-drivers/xf86-video-intel29 port update o ports/160351 gecko www/libxul installs incorrect mozilla-nss.pc o ports/160323 [PATCH] japanese/p5-Mail-SpamAssassin. fix sa-update, o bin/160320 netstat(1): netstat -f inet6 does not output properly s ports/160315 avilla multimedia/mlt: kdenlive crashes on 2 pass VOB renderi o ports/160313 New port:databases/pg_reorg f ports/160308 [MAINTAINER] dns/powerdns: fix loading a whole new set o kern/160307 [dtrace] dtrace -lv can not identify the args of the o usb/160301 usb [patch] missing device usb and device ucom entries in 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 [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 ports/160291 ruby devel/rubygem-rake 0.9.2 update breaks redmine o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160273 flo [patch] Fix distfile sources for port net/AquaGatekeep o ports/160272 flo [PATCH] unbreak port net/AquaGatekeeper o ports/160271 skv [PATCH] devel/thrift: fix compile error with fb303, pa o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o docs/160269 doc [patch] Handbook wireless section: sand off some rough o ports/160268 gnome www/webkit-gtk2 build process bails: unable to mmap er o ports/160265 [NEW PORT] lang/pypy 1.6 o ports/160263 obrien shells/bash bug: testing condition for [ -x file ] is o ports/160262 New port: net-mgmt/better-cacti-templates - better Cac f ports/160260 wen databases/py-axiom: request for marking it BROKEN and f ports/160257 [patch] mail/ssmtp: pkg-message needs further descript o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/160235 [syscons] [patch] Spanish Dvorak keyboard f ports/160233 [patch][update] devel/pinba_engine Update to new revis o conf/160227 [keyboard] Please include new keyboard mapping: French o conf/160225 [periodic] /etc/periodic/weekly/310.locate doesn't see o ports/160224 gnome building x11-toolkits/gtk30 fails o ports/160223 miwi [PATCH] major memory leak in graphics/ristretto o ports/160215 office editors/libreoffice-legacy fails to build with KDE 4.6 f ports/160210 [update] devel/php5-pinba o ports/160208 [NEW PORT} print/py27-pdfcolorsplit - script to split o ports/160207 [NEW PORT] devel/php5-dav: The PHP WebDAV extension o kern/160206 net [gif] gifX stops working after a while (IPv6 tunnel) o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160195 swills [patch][maintainer-update] security/rubygem-bcrypt-rub o usb/160192 usb [install] Installation from USB-Stick doesn't find the o ports/160190 timur [New port]: net/samba36-devel Test version of Samba 3. o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o ports/160178 [NEW PORT] www/vimprobable1 - webkit browser inspired o ports/160177 eadler [NEW PORT] www/vimprobable2 - webkit browser inspired o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o ports/160168 sunpoet Update port: www/p5-Gtk2-WebKit update to 0.09 o ports/160060 collision: sysutils/coreutils Collision between system o ports/160047 timur devel/talloc 2.0.5 fails to configure with MAKE_JOBS_U o ports/160036 dhn [PATCH]x11-wm/i3 update to v4.0.1 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr f ports/160033 [maintainer] update port devel/libffi o ports/160031 [PATCH] devel/yajl add yajl.pc o ports/160022 eclipse release port: java/eclipse-cdt f ports/160017 [new port] NeoRouter client & server 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/160007 [NEW PORT] ports-mgmt/porttree: Show dependences of Fr o ports/160006 [new port] devel/premake4: cross-platform build script a ports/160003 olgeni drop lang/erlang-lite and update lang/erlang o ports/159982 swills [MAINTAINER] mail/rubygem-vmail: update to 2.3.2 o ports/159981 roam ftp/curl install depends bug? o ports/159977 fluffy news/inn doesn't package its examples f ports/159976 new port: games/blackjack o kern/159971 fs [ffs] [panic] panic with soft updates journaling durin o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159963 stas [update] Update graphics/djview4 from 4.7 to latest re o ports/159962 python [PATCH] Mk/bsd.python.mk: prevent polluting filesystem f ports/159958 [UPDATE] x11/deskpaint to 3.1 f ports/159951 [patch] www/woof to support Python 2.7 o ports/159947 vd [patch] databases/gnats4 set default index type to pla 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 o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ o ports/159938 gnome graphics/shotwell received an X Window System error. o kern/159936 yongari [request] add support for ALI PCI fast ethernet contro o kern/159930 fs [ufs] [panic] kernel core p ports/159928 gnome Updates graphics/clutter to 1.6.16 a ports/159926 eadler [PATCH] lang/py-prolog: some cleanup p usb/159919 hselasky Patch for HUAWEI E173 (u3g/umodem) 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 ports/159908 [new port] devel/php5-blitz-devel Templating engine o ports/159902 skv [patch][update] devel/thrift Update to 0.7.0 & FIX: bu o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o docs/159897 doc [handbook] [patch] improve HAST section of Handbook o ports/159894 [new port] databases/php52-rrdtool o ports/159888 timur net/samba35: pkg_add -r samba35 doesn't accept openlda f ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o ports/159863 johans [patch] chinese/tin with tin 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 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 p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max o bin/159833 camcontrol(8): [patch] add ATA security options to cam o ports/159831 gecko www/firefox is broken f ports/159821 [patch] www/squid31: dnsserver does not build o kern/159817 net [udp] write UDPv4: No buffer space available (code=55) o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159811 daichi [PATCH] Update japanese/mozc-server to new version o kern/159809 [build] RELENG_8_1 /UPDATING wrong re: COMPAT_IA32 ali o ports/159807 johans RC file for net/mrouted causes kernel panic by running o ports/159803 zi update security/monkeysphere to 0.35 o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i f ports/159791 x11-fonts/terminus-font patch apply fails f ports/159790 sysutils/freesbie cannot build iso o ports/159787 java java/openjdk6 nio muti-thread bug o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o kern/159768 bschmidt [iwn] [panic] iwn_auth being called with wrong ni_chan f ports/159766 cannnot execute sysutils/ezjail on 9.0 BETA1 o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159730 make(1) in parallel mode fails report failure of @-pre f ports/159728 sysutils/htop 0.9.0_1 is broken (does not show process o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT f ports/159721 gnome x11/gdm: Usernames that are too long get logged onto G o ports/159705 brooks Patch adding an option for disabling IPV6 in the net/o o ports/159703 ohauer NEW PORT: Apache Libcloud 0.5.2 o ports/159687 gnome devel/gvfs fails to compile o ports/159677 wen graphics/qgis: /usr/ports/graphics/qgis/work/qgis-1.7 o bin/159665 [patch] ctm(1) does not work with bzip2 or xz compress o www/159664 www Add for June/July 2011: FreeBSD in top 3 reliable serv o kern/159663 [socket] [nullfs] sockets don't work though nullfs mou o ports/159661 apache [maintainer] Minor cleanup to www/mod_macro22 o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr s ports/159656 mandree bsd.database.mk fails to locate installed bdb51 librar o misc/159654 46 kernel headers use register_t but don't #include cp437 console map o kern/159279 [headers] [patch] __FreeBSD_cc_version in size of mbuf chain when o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o ports/159012 gnome multimedia/totem cannot be build o ports/159008 kde cannot portupgrade editors/koffice-kde4 to version 2.3 o ports/159003 stas devel/cross-gcc attempts to use $PRFIX/../../ranlib on o ports/159001 stas devel/cross-gcc: 4.5.2 libiberty fails on missing sys/ o ports/158987 multimedia multimedia/py-kaa-multimedia: fix build error for grap s 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 docs/158973 gordon Update man(1) f ports/158971 kde textproc/qt4-xmlpatterns: build fails due to missing . f ports/158968 Update port: lang/mosh version 0.2.7 o ports/158966 gnome graphics/libchamplain: broken build after GnuTLS updat o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support 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" a ports/158941 shaun [PATCH] ports-mgmt/portscout: add MySQL backend and fi o ports/158936 portmgr [bsd.port.mk] Add a filename field to DESKTOP_ENTRIES f ports/158935 cs [PATCH] print/lpr-wrapper: update to 0.7 o ports/158931 print/perlftlib is not built with perl5.14 o kern/158930 net [bpf] BPF element leak in ifp->bpf_if->bif_dlist o ports/158925 delphij New Port: audio/pithos GNOME Pandora player o ports/158909 stas [PATCH] net/enet: update to 1.3.3 f ports/158907 [PATCH] www/interchange: update to 5.6.3 f ports/158904 [PATCH] finance/openerp-web: update to 6.0.2 a ports/158899 roam [PATCH] sysutils/prips: update to 0.9.9 f ports/158898 [PATCH] www/libecap: update to 0.2.0 a ports/158894 danfe audio/ardour: upgrade to 2.8.11 o ports/158893 stas [PATCH] net-mgmt/braa: update to 0.82 p kern/158880 mp [bpf] bpf_filter() can leak kernel stack contents o ports/158878 [patch] textproc/dadadodo assumes long is 32 bits o kern/158874 [vesa] I cannot change tty screen with vidcontrol(1) ( p kern/158873 bz [pf] [panic] When I launch pf daemon, I have a kernel s ports/158842 mm converters/wkhtmltopdf port compilation issues o kern/158839 fs [zfs] ZFS Bootloader Fails if there is a Dead Disk o ports/158838 girgen [patch] Update www/mod_jk to 1.2.32 o ports/158817 mm multimedia/ffmpeg fails to build, when RTMP option is o docs/158813 doc [patch] grammar updates for jme(4) o ports/158803 mva sysutils/flexbackup calls dump without -L on mounted f o kern/158802 fs [amd] amd(8) ICMP storm and unkillable process. o ports/158800 mm [PATCH] devel/pear-PHPUnit3: update to 3.4.15 o bin/158794 line has been ignored in /etc/newsyslog.conf o ports/158791 sbz Update security/openvas-* o ports/158781 eadler New port: games/drcreep Platform Puzzle Game p bin/158775 jhb [patch] top(1)'s output when using 'C' and 'H' interac f ports/158759 ohauer mail/dovecot2 fails installation if user dovenull exis o bin/158756 newfs_msdos(8) creates invalid image o kern/158755 [libc] mmap fails with addr=NULL, flags=MAP_STACK a ports/158744 [Maintainer] textproc/scim-kmfl-imengine: fix pkg-plis o conf/158734 netif stop don't destroy cloned_interfaces f ports/158731 sysutils/byobu wants module "snack" o kern/158726 net [ip6] [patch] ICMPv6 Router Announcement flooding limi o bin/158725 [patch] column(1): `column -t` always separates column o ports/158722 gnome [patch] devel/gobject-introspection does not build if o ports/158715 mm www/lighttpd: consider USE_GMAKE=yes o ports/158713 kde Unable to build /usr/ports/multimedia/phonon-xine afte o kern/158711 fs [ffs] [panic] panic in ffs_blkfree and ffs_valloc o ports/158708 gnome x11/gdm doesn't build o kern/158707 [panic] kernel trap 12 with interrupts disabled o bin/158706 [regression] sed(1) in 8.2 gives incorrect output comp f ports/158704 eadler New port: mail/mailfromd f ports/158703 New port: mail/mailutils o kern/158694 net [ix] [lagg] ix0 is not working within lagg(4) o ports/158693 gnome x11-wm/nautilus 2.32.2.1_1 fails to build o ports/158692 stas devel/cross-gcc: minor patch to enable arm-none-eabi s o kern/158689 acpi [acpi] value of sysctl hw.acpi.thermal.polling_rate ne f ports/158687 wen [UPDATE] deskutils/freemind: update to 0.9.0 o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o ports/158684 gnome graphics/evince can not be build p bin/158682 jhb top(1) man page not mentioning all flags that are togg o ports/158680 gnome devel/gvfs doesn't build 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 p bin/158652 brueffer [patch] csup(1): .csup/auth isn't read if the server n o ports/158647 novel audio/bebocd: request for marking it BROKEN and DEPREC o ports/158639 gnome ports-mgmt/packagekit cannot be build o misc/158637 Cannot reinstall 8.2-RELEASE after HEAD o kern/158635 net [em] TSO breaks BPF packet captures with em driver o ports/158628 mm graphics/opencv and daily periodic disks clean o ports/158616 vd graphics/vigra prevents installing libreoffice o ports/158599 fjoe [PATCH] databases/pgadmin3 o 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 ports/158565 apache www/apache22: Add rlimits based on login class for mpm o conf/158557 rc [patch] /etc/rc.d/pf broken messages f ports/158556 wen [Update]databases/postgis:update to 1.5.3 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 f ports/158544 apache Port www/mod_perl2 fails to build o bin/158543 named(8) spams logs with unexpected errors o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f ports/158533 [NEW PORT] devel/tiled: 2D game map editor o ports/158529 x11 [patch] x11-servers/xorg-server: conditionalize --with o ports/158513 x11 Broken Xvideo in x11-drivers/xf86-video-intel drivers o ports/158506 stas In multimedia/emotion leave only one backend enabled b 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 bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for o kern/158418 [includes] /usr/include librarys broken by unnecessary f ports/158403 New port: mail/dovecot2-deleted-to-trash-plugin: dovec 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 doc 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 ports/158374 acm databases/firebird21-client coredumps o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB f ports/158352 cs [UPDATE] devel/bzr-builder 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" o bin/158206 jilles sh(1) doesn't properly return IO errors to conditional o ports/158204 [PATCH] java/jde: update to 2.4.0.1 o 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 f ports/158181 gavin databases/unixODBC databases/libodbc software packages o ports/158179 some packages do not fully honor -P dir option in pkg_ o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s f ports/158167 swills [NEW PORT] databases/percona-server: Multithreaded SQL o kern/158160 [coretemp] coretemp reports incorrect CPU temperature o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe f www/158126 www We offer a freebsd installation and consulting service o bin/158125 [patch] whois(1) takes too long to move to next addres f ports/158105 dhn [maintainer-update] games/traindirector: Respect CXX ( 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 f kern/158063 [panic] kmem_malloc(20480): kmem_map too small f ports/158061 kwm New ports: net-im/sofia-sip and net-im/telepathy-sofia f ports/158058 culot [PATCH] lang/elk: update to 3.99.8 o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o ports/158044 net/iaxmodem - multiple instances started o ports/158036 clsung databases/py-redis: [2.2.4] this port don't actually i o misc/158023 Binaries have no SUID bits in FreeBSD-8.2-RELEASE-amd6 o ports/158013 autotools devel/gmake: TARGET_ARCH variable prevents cross-compi 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 ports/157917 skv [PATCH] sysutils/pmap: multiple build problems o docs/157908 doc [handbook] Description of post-install should include o ports/157906 gabor print/latex horribly outdated o conf/157903 [devd.conf] [patch] automated kldload for USB class de o ports/157899 skv textproc/p5-XML-XPath xpath script missing quiet optio o ports/157887 osa [UPDATE] sysutils/ccd2iso update and change maintainer o kern/157879 geom [libgeom] ABI change without version bump in 8.2 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 a ports/157855 roam [update] sysutils/timelimit to 1.8 o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o misc/157835 Do not copy symlinks or through mtree, or via rsync f kern/157802 net [dummynet] [panic] kernel panic in dummynet o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157785 net amd64 + jail + ipfw + natd = very slow outbound traffi o misc/157776 Unable to load kernel modules in fixit shell without c o kern/157770 scsi [iscsi] [panic] iscsi_initiator panic o ports/157769 miwi [exp-run] devel/bison update to 2.5 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 ports/157746 brooks port bug: net/openmpi has incorrect path for sge depen 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/157722 fs [geli] unable to newfs a geli encrypted partition o ports/157719 [new port] net-mgmt/zenpack-CheckPing: Provides nagios p bin/157718 edwin input data trigers a core dump from calendar(1) [regre o ports/157715 [new port] net-mgmt/zenpack-libvirt: Provides monitori o ports/157709 makc irc/quassel: version bump to 0.7.2 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 ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead 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 ports/157669 crees Fix port: databases/postgresql90-server should use USE o ports/157666 crees Fix port: databases/postgresql84-server should use USE p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157636 brix [repocopy] xapian* => xapian*10 o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o ports/157631 linimon Fix port: databases/gnats should use USERS o ports/157600 eclipse java/eclipse: option WITH_TESTS missing distinfo entry f ports/157567 culot [Maintainer Update] cad/brlcad 7.18.4 -> 7.20.0 o ports/157559 crees [PATCH] Fix port: databases/postgresql82-server should o ports/157558 crees [PATCH] Fix port databases/postgresql83-server should 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 nork Updates for databases/linux-oracle-instantclient-* o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o misc/157524 [build] make buildkernel fails while updating 8.1-RELE o ports/157505 crees [new port] net-mgmt/zenpack-DeviceSearch: Provides the f ports/157504 crees [new port] net-mgmt/zenpack-NetApp: Provides monitorin o ports/157503 crees [new port] net-mgmt/zenpack-InterfaceGraphs: Provides 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 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c o kern/157429 net [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 ports/157398 mbr emulators/open-vm-tools is broken on FreeBSD 8.2 amd64 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 misc/157382 host cvsup.freebsd.org has been refusing connections f o usb/157376 usb LaCie USB disk not recognized o ports/157369 stas [PATCH] x11-toolkits/ocaml-lablgtk2: add an option for o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o ports/157342 skreuzer devel/gdb: Problem with running simple pthreads progra o docs/157337 doc [handbook] [patch] Indentation changes to network serv o ports/157320 [NEW PORT] databases/pecl-pdo_user: PECL classes provi o docs/157316 doc [patch] update devstat(9) man page o ports/157313 hrs cad/spice SEGV o bin/157308 getextattr(8) incorrect listing of attibutes with glob o ports/157301 [New port] net-mgmt/zbxlog: Syslog server receives mes o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c 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/157282 eadler [MAINTAINER PATCH] net/xrdp: effective login name is n s ports/157261 itetcu net-im/skype: Cannot Visit account page o kern/157259 [build] kernel: install: mps.ko.symbols: No such file 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 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw f ports/157194 crees [new port] net-mgmt/zenpack-NtpMonitor: Monitors the o o ports/157191 [new port] net-mgmt/zenpack-MACReport: Lists MAC addre o ports/157190 [new port] net-mgmt/zenpack-GraphPortlet: Enables user o conf/157189 Default /etc/sysctl.conf should be removed. 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/157175 mnag Fix port: www/pecl-APC o ports/157174 wen fix typos and small mistakes in various ports o ports/157168 portmgr [bsd.port.mk] New hook: CONF_FILES automatically handl o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe o ports/157135 [new port] net-mgmt/zenpack-DellMonitor: Provides Zeno o ports/157133 [new port] net-mgmt/zenpack-ApacheMonitor: Provides pe o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI 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 f ports/157109 conflict between net/netpipes and sysutils/timelimit o kern/157108 geom [gjournal] dumpon(8) fails on gjournal providers f ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o www/157076 www freebsd-wireless mailing list not shown on web All Lis 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 standards OSS implementation lacks AFMT_FLOAT o docs/157049 doc FreeBSD Handbook: Chapter 14 (Security) Inaccuracy o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o threa/157040 threads [libthr] valgrind detects leaks in libthr.so.3 o gnu/157025 [patch] gcc(1): gcc Bug 28796 - __builtin_nan() and __ f ports/157021 multimedia/mplayer: does not build with multimedia/lib o bin/157017 vidcontrol(1): "vidcontrol -r" no longer works [regres o bin/157015 bsnmpd(8) does not create 64bit counters for interface o ports/157014 devel/jam: does not compile on FreeBSD 9.0 CURRENT/amd o ports/156987 apache www/apache22: Harden SSL cipher suites strength and SS o ports/156975 bsam devel/qct plist is wrong o kern/156974 [boot] [panic] Panic during kernel boot on HP Proliant o docs/156955 doc bug in share/man/man2/setsockopt.2 o ports/156949 x11 x11-drivers/xf86-video-ati 6.14.1 produce black blank o conf/156945 [nsswitch.conf] Name service Switch does not work as d s ports/156936 avilla multimedia/kdenlive crash o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP a 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 f ports/156897 edwin [PATCH] net/freenet6: update pkg-message f ports/156889 gecko www/firefox36: firefox 3.6.17 eats cpu on current/x64 o kern/156884 wireless [ath] ath instablity o ports/156881 stas devel/valgrind: Fix build with newer gcc o kern/156877 net [dummynet] [panic] dummynet move_pkt() null ptr derefe o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o ports/156836 mm multimedia/x264: undefined reference to `__gcov_init' o ports/156834 New port: games/fairymax-devel latest version of games o misc/156817 [build] [patch] WITHOUT_CDDL and NO_CTF ignored if WIT o docs/156815 doc chmod(1): manpage should describe that chmod kicks +t o arm/156814 arm OpenRD Ultimate does not boot on DB-88F6XXX or SHEEVAP o kern/156799 HEAD panic: Multiple IRQs for PCI interrupt 0.31.INTA: o kern/156797 fs [zfs] [panic] Double panic with FreeBSD 9-CURRENT and o ports/156787 apache www/mod_auth_kerb2 fails on undefined symbol with base o kern/156781 fs [zfs] zfs is losing the snapshot directory, o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x 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 f ports/156747 multimedia/mplayer: fix 24-bits OSS + some improvement p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o usb/156735 usb Need Quirk for Goflex USB Disk Drives o bin/156729 make(1) does not respect.ORDER in non-parallel mode o kern/156726 multimedia [snd_uaudio]: snd_uaudio(4) fails to detach when mixer o usb/156725 usb USB stack stall cause complete system input loss f ports/156719 apache ab: apr_socket_recv: Connection reset by peer (54) 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 f ports/156687 mi [PATCH] graphics/libmng: misc improvements o kern/156684 [libc] getaddrinfo(3) returns improper error o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d 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 ports/156629 [patch] sysutils/puppet patch to use PACKAGEROOT inste o www/156614 www Change log_pagesize on ViewVC (svnweb) 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/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156556 [hpet] FreeBSD fails to boot on ACER 2920: "bad stray p kern/156545 fs [ufs] mv could break UFS on SMP systems o kern/156540 [hwmpc] hwpmc(4) crash when loaded on unknown AMD cpu o misc/156537 Mismatch of Control Sums for ISO-image Files of Old Di o ports/156528 fluffy [PATCH] textproc/wv2: remove useless depends on gmake o ports/156527 fluffy [PATCH] multimedia/gstreamer-qt4: remove depends on gm o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o ports/156492 skv Multiple versions of Perl not supported o bin/156484 ntpd(8) regularly flips between PLL and FLL mode (time o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o ports/156472 [new port] devel/ocaml-react - OCaml library for react o kern/156463 [panic] kernel panic at pcpu.h:224 o ports/156452 makc irc/quassel: quasselcore should have an init script p kern/156433 avg [sound] [patch] OSS4/VPC is broken on 64-bit platforms o ports/156426 decke New ports: devel/libg19, devel/libg19draw - libs to he o ports/156425 python lang/python26: Needs to include -L/usr/local/lib/pth i f ports/156424 x11 8.2R xrandr & xf86-video-intel & xorg-server packages o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o ports/156415 danfe [NEW PORT] net-im/py-hotot, Twitter and Identi.ca micr o kern/156408 net [vlan] Routing failure when using VLANs vs. Physical e o ports/156405 x11 x11-drivers/xf86-video-ati driver: no hardware renderi o ports/156386 danfe [patch] x11/nvidia-driver: EnableMSI doesn't work f ports/156376 [PATCH] graphics/optipng: update to 0.6.5 o ports/156369 x11 x11-drivers/xf86-video-vmware: DPI value wrong calcula o ports/156368 x11 x11-drivers/xf86-video-vmware: pwcview does not work o ports/156362 New port: games/rftg Race for the Galaxy AI o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156343 multimedia/xbmc 10.1_1 mp3 playback problem - CALSADir o ports/156335 gecko www/firefox: Repeatable firefox-4.0_1,1 crash 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 ports/156319 java [patch] java/openjdk6 does not compile with previous l o kern/156317 net [ip6] Wrong order of IPv6 NS DAD/MLD Report o ports/156287 kuriyama security/gnupg does not work without pinentry 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 ports/156263 bapt shells/zsh fails to compile watch.c due to wtmpx.h inc o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. f ports/156252 New port: devel/radar Opensource tools to disasm, debu o ports/156251 apache [PATCH] Enable module by default for www/mod_fastcgi o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 o misc/156242 hrs [build] /usr/src/release/Makefile o 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 p kern/156218 pjd [zfs] IO on ZFS filesystems does not register in top(1 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 f ports/156171 port multimedia/mplayer patch-libao2-ao_oss.c is incor f kern/156168 rmacklem [nfs] [panic] Kernel panic under concurrent access ove o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, f ports/156143 New port: devel/arduino-mk: Build Arduino sketches fro o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a f ports/156115 gahr sysutils/tmux: teken, tmux and vim: multiplexer proble 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 ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite f ports/156075 [new port] graphics/openfst: library for constructing, o kern/156074 [hang] Removing CD-Rom from Lenovo T61p hangs system s ports/156066 ruby [NEW PORT] databases/rubygem-xapian-full (self contain o ports/156042 x11 x11/xorg hang in combination with KWin-Tiling o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o ports/156035 novel security/libgpg-error 1.10 wrongly identifies libiconv f ports/156034 print/lyx-devel spell checking with enchant does not w 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 ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o usb/156000 usb rum(4) Fatal trap 18: integer divide fault while in ke o usb/155996 usb NanoBSD not booted as Disk o kern/155994 geom [geom] Long "Suspend time" when reading large files fr f ports/155991 kuriyama textproc/p5-XML-Parser build error o docs/155989 doc [patch] Fix offset in boot.config(5) o ports/155987 kuriyama misc/amanda-client: $HOME of amanda user don't allow f 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 ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 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 ports/155947 xfce x11-wm/xfce4 does not launch or start f ports/155941 mwserv library support is not included in nepenthes.co o ports/155938 mlaier Unbreak sysutils/pftop on 9.X o ports/155936 python lang/python27 Pthread: previous declaration of ... f kern/155927 ipfw [ipfw] ipfw stops to check packets for compliance with o misc/155925 CD tray is not locked even if using /dev/adc0. o bin/155902 ifconfig(8): ifconfig wlan0 create wlandev foo0 wlanad f ports/155898 Update port devel/libthai o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o ports/155888 girgen databases/postgresql84-server won't build with PAM ena 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 o docs/155773 doc dialog(1): dialog manpages not updated o kern/155772 net 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 conf/155738 portmgr [patch] reaper of the dead: time to BURN_BRIDGES and r o conf/155737 portmgr [patch] reaper of the dead: remove OBJFORMAT variable o kern/155736 pf [pf] [altq] borrow from parent queue does not work wit f ports/155697 ports-mgmt/pkg_replace doesn't want to replace java/op 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 ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o kern/155680 net [multicast] problems with multicast o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155657 java java/openjdk6: missing symlink for include/freebsd/* o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an s kern/155642 net [request] Add driver for Realtek RTL8191SE/RTL8192SE W o ports/155639 timur net/samba-libsmbclient: unrecorded libtdb dependency o kern/155628 [ahci] ahci disables dvd device o ports/155626 skv lang/perl5.x fails to build on Sheevaplug (ARM) o kern/155615 fs [zfs] zfs v28 broken on sparc64 -current o kern/155606 [libc] select() does not return EBADF on closed file d o kern/155604 net [flowtable] Flowtable excessively caches dest MAC addr o ports/155601 fluffy new port audio/festvox-russian o kern/155597 net [panic] Kernel panics with "sbdrop" message o ports/155593 lang/mpd .16.1 ignores embedded cue sheets in FLAC fil f ports/155592 polish/ekg, after polish/libgadu update, contacts are o kern/155587 fs [zfs] [panic] kernel panic with zfs o kern/155585 net [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155577 emulation [boot] BTX halted after install. Reboot during install o bin/155567 [patch] cvs(1): add -r tag:date to CVS o bin/155548 pkg_info(1): pkg_info -g mistakenly adds $PREFIX to gl f ports/155547 crees java/jboss5 port build failure o ports/155546 autotools devel/libtool doesn't work properly if not using built o ports/155538 new port devel/radlib radlib developer library. Event- o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o usb/155496 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [sysctl][patch] Document some sys/kern sysctls 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 s ports/155461 gnome [UPDATE] editors/abiword-docs to 2.9.0 s ports/155460 gnome [UPDATE] editors/abiword to 2.9.0 p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No o ports/155436 fluffy Missing Files in pkg-plist of news/inn o ports/155431 xfce x11-wm/xfce4: The little bugs o kern/155429 [headers] including malloc.h should not abort compile. o kern/155421 [hang] System can't dump corefile [regression] o kern/155420 net [vlan] adding vlan break existent vlan o kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk o kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r f ports/155404 dinoex [PATCH] mail/mutt-devel: doesn't build in presence of o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o bin/155365 net [patch] routed(8): if.c in routed fails to compile if 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 ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 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 o ports/155275 secteam ports-mgmt/portaudit does not report installed vulnera o ports/155268 danfe games/warsow 0.6 does not work as dedicated server f kern/155249 [build] 8.1 buildworld failure f ports/155220 clsung deprecate security/gpgme03, security/cryptplug: mark D o 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 f ports/155182 demon security/qca-tls 1.0_7 does not build in 9-CURREN o kern/155177 net [route] [panic] Panic when inject routes in kernel o ports/155166 update deskutils/org-mode.el to 7.4 o kern/155165 bz [ip6][ipsec] IPv6 over IPv6 IPsec tunnel MTU(?) issue. o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o ports/155157 stas devel/libdispatch don't build with clang on 8.2-RELEAS 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 f ports/155141 wen [UPDATE] www/py-turbogears2: update to 2.1 o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o kern/155125 [lor] triple LOR in mkdir(1) f ports/155115 devel/doxygen: dependancy loop 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 f ports/155070 eadler NEW PORT: games/CastleVox - new fast strategy board ga o ports/155067 novel security/gnutls will not build inside jail o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/155030 net [igb] igb(4) DEVICE_POLLING does not work with carp(4) p bin/155028 init(8): "init q" in single user causes segfault o ports/155011 bland x11/nvidia-settings versions 195 and above fail to all o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel o kern/155004 net [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 ports/154969 jpaetzel Update to net/socks5 (unbreak for -current) 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 bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o ports/154951 girgen [patch] databases/postgresql-jdbc: update to 9.0.801 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 o kern/154915 [libc] [patch] Force stdio output streams to line-buff o ports/154897 mbr emulators/open-vm-tools: Bug in open-vm-tools-313025_2 o threa/154893 threads pthread_sigmask don't work if mask and oldmask are pas o ports/154890 mva [UPDATE] devel/py-game to 1.9.1 o ports/154884 java java/openjdk6: Every NetBeans version on FreeBSD 8.1 c o bin/154877 portmgr pkg_info(1) error message should contain information a p stand/154873 pjd ZFS violates POSIX on open/O_CREAT -> ftruncate o kern/154860 ae gmirror(8): [panic] geom_mirror panices system on spec s kern/154851 net [request]: Port brcm80211 driver from Linux to FreeBSD o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o stand/154842 standards invalid request authenticator in the second and subseq 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/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum o kern/154814 [lor] LOR between bufwait/dirhash o ports/154809 [PATCH] ports-mgmt/porttools should include PORTREVISI 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 ports/154711 security/heimdal: kadmin: hdb_open: hdb_open failed in o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. o kern/154709 [heimdal] Kerberos V5 refuses authentication because R o kern/154683 des [libpam] [request] Allow pam_krb5 to authenticate no l o ports/154682 net/iaxmodem: add rc script for running more than 1 ia o kern/154679 net [em] Fatal trap 12: "em1 taskq" only at startup (8.1-R o ports/154674 office Build of editors/openoffice.org-3 3.0 fails o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o ports/154632 wen astro/gpsbabel needs update o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o ports/154628 gabor /usr/ports/textproc/bsddiff/ segfaults with -N 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 flz 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 o i386/154578 i386 [boot] BTX Loader hangs > 1,5 min after listing BIOS d o bin/154570 [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 conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154546 update port: games/gemrb to version 0.6.3 f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o usb/154506 usb [umass] Copying dir with large files makes FreeBSD loa o ports/154502 xdm authorization failure when used with E17 window ma o kern/154491 fs [smbfs] smb_co_lock: recursive lock for object 1 o conf/154484 [patch] request for new functionality. jail zfs datase f ports/154475 danfe x11/nvidia-driver-96: X11 error using latest Nvidia-Dr 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 p bin/154469 bz ftp-proxy(8) bug, can be fixed via merge from openbsd o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o ports/154449 eadler x11/xorg: missing manpage (7) Xsecurity o kern/154447 fs [zfs] [panic] Occasional panics - solaris assert somew o gnu/154445 [patch] gcc(1): Attempt to "fix" gcc -ftree-vrp o kern/154443 net [if_bridge] Kernel module bridgestp.ko missing after u o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh o kern/154428 xen [xen] xn0 network interface and PF - Massive performan o ports/154423 x11 x11-drivers/xf86-video-radeonhd: radeon xorg driver ca o bin/154419 dig(1) segfault with +trace o bin/154409 indent(1) bug report p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o www/154406 webmaster Mailing List Archives search broken and outdated o ports/154401 New port: www/jetty7 - newer fork by Eclipse/Codehaus o ports/154352 stas [patch] multimedia/xmms: update using desktop and mime o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o arm/154306 warner named crashes with signal 11 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/154287 [kernel] [patch] Avoid malloc(0) implementation depend 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 f ports/154254 rene [patch] asmail imap login broken with gmail at al. 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 o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio 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 ports/154217 eadler New port: ports-mgmt/portsreinstall o kern/154214 net [stf] [panic] Panic when creating stf interface f ports/154209 python [PATCH] lang/python: Install symlink for ptags o ports/154202 New port: security/scannedonly - A Samba VFS virus sca o usb/154192 usb [umass] In Garmin Oregon GPS, only the first umass dev o arm/154189 arm lang/perl5.12 doesn't build on arm o kern/154185 net race condition in mb_dupcl o ports/154183 mm graphics/pecl-imagick libthr preload issue s ports/154179 jlaffaye Fix goinstall in lang/go port o kern/154170 davidxu Panic in sched_switch (/usr/src/sys/kern/sched_ule.c:1 o 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 f ports/154118 mm graphics/ruby-rmagick: rmagick fails to automaticly re 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 conf/154054 cperciva etc/portsnap.conf FreeBSD-7.4 remove INDEX-5 and INDEX o bin/154042 [patch] fix several rtprio(1) issues o ports/154031 New port: audio/shoutcast2: SHOUTcast Distributed Netw o kern/153996 fs [zfs] zfs root mount error while kernel is not located o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag 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 ports/153952 python lang/python26 + pth fails to reconfigure cflags to inc 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 ports/153926 New port net/freeswitch-snapshot o kern/153924 [rtld] Bug is inside rtld (ELF dyn loader) o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153918 des [openpam] Consider compiling OpenPAM with debug loggin o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with 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 kern/153847 fs [nfs] [panic] Kernel panic from incorrect m_free in nf o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o ports/153845 wen devel/py-mwlib.rl update to 0.12.7 o ports/153844 wen devel/py-mwlib update to 0.12.14 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 ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries o kern/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar 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 o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh a ports/153735 jsa 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 f ports/153715 zi net/freeradius: FreeRADIUS exiting with Signal 11 on F 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" f ports/153612 linimon Update devel/arm-elf-binutils to version 2.17 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 usb/153599 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif o ports/153593 x11 graphics/dri: clutter segfault, something to do with i o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 tabthorpe [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o ports/153565 ohauer APACHE_PORT needs to be better documented o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable o kern/153514 scsi [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 ports/153495 x11 x11-drivers/xf86-video-ati wavy line problem for lenov 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 kern/153440 mav [ata] 8.2 doesn't detect ICH8M anymore f ports/153437 rene [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar o ports/153429 eadler [patch] Fix explicite uses of unzip in ports 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 ports/153406 apache www/apache22's SUEXEC_RSRCLIMIT option does not take e o ports/153386 stas devel/valgrind does not build/include man pages o arm/153380 arm Panic / translation fault with wlan on ARM o misc/153373 [build] Cannot buildworld for 8.1_RELEASE-p2 o amd64/153372 amd64 [panic] kernel panic o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o ports/153358 x11 x11-drivers/xf86-video-intel: Intel driver freeze with 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 girgen databases/postgresql90-server crashes during compilat o bin/153276 [patch] uudecode(1) error message is incorrect o ports/153264 apache www/apache22 and apache13-modssl -- rc.d script improv f ports/153262 pgollucci [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor 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 a bin/153240 des fetch(1): http transfer hangs after ^T (status) on tty o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153211 cperciva freebsd-update(8) can not fetch updates over a proxy w o bin/153206 [patch] netstat(1): "netstat -sz" doesn't reset any IP 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 ports/153195 nivit New port: www/mathjax cross-browser JavaScript display 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 ports/153167 python Problem with signals, threads, and subprocesses in lan o kern/153161 ipfw IPFIREWALL does not allow specify rules with ICMP code 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 f bin/153153 syrinx net-mgmt/bsnmp-ucd build fails o kern/153150 xen [xen] xen/ec2: disable checksum offloading on interfac o usb/153149 usb [umass] USB stick quirk regression [regression] o ports/153147 danfe Repocopy request: graphics/yafray -> graphics/yafaray o bin/153142 [zfs] ls -l outputs `ls: ./.zfs: Operation not support o ports/153128 stas graphics/ocaml-lablgl fails to build 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 ports/153114 gecko www/firefox 3.6.12_1,1 crash: Assertion failure: prop 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 o ports/153008 brooks lang/clang: clang/binutils incompatibility 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 ports/152982 [patch] net/nss_ldap, ignore option nss_initgroups_ign 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 ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i f bin/152909 gavin scp mistake file to directory o ports/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152899 stas 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 ports/152871 portmgr [patch] Request for exp-run and comment w/rt MACHINE_A o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o kern/152853 net [em] tftpd (and likely other udp traffic) fails over e o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd o kern/152828 net [em] poor performance on 8.1, 8.2-PRE f ports/152820 bapt [patch] shells/zsh: correct memory report for time bui o gnu/152808 gdb(1) crash on exit o conf/152807 [periodic] security 900.tcpwrap does not report any re f 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 f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' o kern/152582 [em] request: merge em Intel Driver Upgrage to Version o kern/152569 net [net]: Multiple ppp connections and routing table prob o ports/152568 portmgr New option framework proposal p bin/152551 gavin [libc] Remove unused variables. s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p o bin/152546 gdb(1): internal-error: fbsd_thread_new_objfile: Asser o misc/152543 listing color format cause kernel panic in .zfs dir f ports/152537 girgen [patch] database/postgresql90-server no longer needs p p misc/152531 maxim Incorrect sysctl description o bin/152525 ntpd(8) on 8.1 loops on select() with EBADF o ports/152502 girgen databases/postgresql90-server core dumps when built wi o kern/152500 multimedia [hdac] play interrupt timeout, channel dead p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o kern/152485 [patch] null(4)/zero(4): /dev/null seek offset is not 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 acpi [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/152389 sem sysutils/grub and sysutils/grub2 misinterpret disklabe o bin/152385 ee(1) has different keybindings in the livefs environm o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us f ports/152376 eadler New port: audio/lastfmsubmitd o ports/152355 hrs net/openbgpd stops syslogging after syslogd restart o ports/152341 bapt shells/zsh fails to load zsh/regex with ZSH_STATIC kno o kern/152310 [uart] [hang] Serial I/O hangs in FreeBSD 8.x f ports/152306 mm devel/binutils create binary incompatible kernel modul o kern/152293 [libstdc++] SEGV in libstdc++.so.6 p ports/152262 office [patch] editors/openoffice.org-3 o bin/152259 bsnmpd(1) fails with stack overflow during GETBULK of o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu 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 ports/152224 python [patch] fix installed permissions for lang/python27 s ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl [PATCH] databases/p5-Search-Xapian update to 1.2.3 f ports/152192 [PATCH] databases/xapian-bindings update to 1.2.3 o ports/152191 [PATCH] databases/xapian-core update to 1.2.3 o kern/152162 [syscons] On syscons, pressing delete key results in p o ports/152159 x11 [hang] xorg/x11: X11 freezes with Intel Mobile 965 and 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 bin/152131 script(1): [patch] Useless code in script.c (part 1) o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o kern/152113 ipfw [ipfw] page fault on 8.1-RELEASE caused by certain amo f ports/152111 timur databases/tdb: Cannnot install tdb from ports f ports/152109 stephen New port: x11/keylaunch2 A fork of keylaunch that a o docs/152103 chinsan man ipnat is out-dated a ports/152099 cs [NEW PORT] www/loggerhead 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 ports/152066 mnag [new port] databases/py-MySQLdb40 and so forth: New sl a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe f ports/152040 obrien [patch] editors/vim remove gettext autodetection, resp 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 ports/151970 bf New port math/slatec Common Maths libraries, over 1400 o ports/151954 miwi [patch] Mk/*.mk: remove emacs mode, -*- mode: ...; -*- o kern/151942 fs [zfs] panic during ls(1) zfs snapshot directory o bin/151940 dhclient(8): Implement multiple options in Domain Sear o bin/151937 [patch] netstat(1) utility lack support of displaying o ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq o kern/151924 very slow boot from disk: 15m+ o ports/151923 java [patch] java/openjdk6: free and native openjdk bootstr 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.org-3-devel port misbehaviour p bin/151866 des [libfetch] [patch] closing the cached FTP connection o bin/151850 [patch] style cleanups to newfs_msdosfs(8) o kern/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un f ports/151837 stephen [patch] sysutils/bsdstats : does honor BATCH when inst o ports/151830 kde [patch] devel/cmake: install cmake-mode.el o kern/151813 FreeBSD 8.1/amd64: garbage in /var/log/messages o ports/151808 oliver security/courier-authlib: courier-authdaemond doesn't p threa/151767 davidxu pthread_mutex_init returns success with bad attributes o ports/151764 timur security/vuxml update for security vulnerability: port o kern/151758 [panic] tmux kernel panic, with out root privilegies o docs/151752 doc pw.conf(5) doesn't define format for file clearly o ports/151747 new port: emulators/wine-fbsd64: request for (a variat 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 ports/151662 swills ports-mgmt/portupgrade: upgrade of autoconf leaves old 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 ports/151614 acm net-p2p/transmisson-remote-gui misspelled o kern/151608 [ata] FreeBSD doesn't detect Sandforce-based SSD o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o bin/151600 [patch] route(8) does not always flush stdout o ports/151596 x11 x11/xorg: wacom bamboo button 1 no longer works o kern/151593 net [igb] [panic] Kernel panic when bringing up igb networ o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o ports/151534 python lang/python26 + WITH_PTH doesn't install correctly o ports/151472 ume mail/cyrus-imapd23 failed to compile f ports/151467 stephen New port: sysutils/autojump acts as a complement to cd 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 f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o www/151438 bugmeister query-cgi use monospace font o www/151437 bugmeister query-cgi broken with base64 encoded mime email o ports/151427 wen math/FriCAS: fatal error encountered in SBCL pid 19170 s ports/151424 obrien [patch] make gettext support optionnal in editors/vim o ports/151414 portmgr Add 'work' when WRKDIRPREFIX is used. o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c o amd64/151385 amd64 [boot] Installation hangs on MacBook o kern/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O o docs/151367 doc [patch] Update for puc.4 man page o kern/151365 eadler [puc] [patch] Two new Moxa puc(4) devices 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 p bin/151321 jh mount_nfs(8) won't recognize readahead o ports/151318 eadler [repocopy][new port] x11-wm/stumpwm: rename to x11-wm/ o ports/151314 sunpoet www/shellinabox: update rc script to allow passing of o ports/151306 stas devel/libdispatch fails to install static version of t o kern/151305 [patch] - CTASSERT(sizeof(struct jmvrec) == JREC_SIZE) o ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF o ports/151280 matusita emulators/vmware-guestd6 port install error in /usr/po o bin/151264 syrinx 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 bin/151229 sysinstall sysinstall(8) - shift-tab doesn't work as expected 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 o 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/151111 fs [zfs] vnodes leakage during zfs unmount p docs/151104 keramida mksnap_ffs(8) should mention 20 snapshot limit on UFS o kern/151091 [ahci] JMicron JMB363 unusable after S3 suspend/resume o www/151084 www A major Bulgarian ISP which uses FreeBSD o ports/151042 java [patch] java/openjdk6 Respect CC o bin/151036 [patch] Default snaplen of tcpdump(1) is not adequate 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 a ports/150980 dinoex print/cups-base: I can not create package for cups-bas s ports/150968 kuriyama textproc/p5-XML-Parser fails test o threa/150959 threads [libc] Stub pthread_once in libc should call _libc_onc f ports/150940 olgeni [PATCH] lang/clojure-mode.el: update to 1.7.1 o ports/150934 olgeni [PATCH] databases/postgresql-jdbc: fix build with java 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 ports/150903 bsam databases/dbf: options --sql / --csv does produce crap 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/150848 stas sysutils/devcpu-data: cpucontrol microcode update lead 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 a conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re o bin/150723 syrinx 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 o kern/150640 [panic] Fatal Trap 9 - 8.1-release o ports/150633 x11 x11-servers/xorg-server: KVM switching causing X serve o ports/150631 gecko www/firefox 3.6.9 does not build if you have previousl 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 f ports/150594 eadler [patch] graphics/dri: add support for ATI Radeon HD 42 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 www/150553 www [patch] update Russian "FreeBSD Community" page f ports/150541 gahr [new port] sysutils/yum - Installer/updater for rpm o www/150531 www [patch] ru/community/irc.sgml: MFen 1.2 -> 1.4 o bin/150530 [patch] syslogd(8) doesn't support ipv6 addrs as desti o www/150522 www [patch] ru/community/mailinglists.sgml: MFen 1.4 -> 1. o kern/150516 jfv [em] e1000 receive queue handling problem s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr 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 ports/150431 girgen DTrace support for databases/postgresql84-server o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv 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 doc [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 f ports/150295 nivit audio/sonata fails in __init__ at mpd.MPDClient() : o 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/150229 cperciva [PATCH] update man page of freebsd-update(8) o bin/150224 net ppp(8) does not reassign static IP after kill -KILL co o docs/150219 doc zfs(8) manual page misses jail/unjail o kern/150206 jh [libc] [patch] nmount(2): can't switch root partition 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 o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o ports/150155 x11 x11/xorg hangs after xrandr(1) usage 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 ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo o ports/150040 shaun [patch] security/fwtk: plug-gw does not run on 64bit a o kern/150036 [rpc] Sun RPC license has less restrictions now. f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) o ports/149973 mva [REPOCOPY] graphics/blender -> graphics/blender-devel 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 ports/149958 stas x11-toolkits/ocaml-lablgtk2's varcc should (maybe) be f ports/149949 mbr emulators/open-vm-tools: Problems with DHCP on startup o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/149936 [libmagic] [patch] wrong handling of decompression uti p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o ports/149902 itetcu [PATCH] mail/dspam: important cleanup p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb 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 kern/149857 [kqueue] kqueue not reporting EOF under certain circum a ports/149851 jsa multimedia/vlc and mplayer - race conditions? o ports/149846 kwm graphics/gimp-gap: outdated (not maintained) port 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 ports/149817 ruby [wishlist] ports-mgmt/portupgrade: portinstall -p opti 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/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev 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 o ports/149678 portmgr Mk/bsd.port.mk: add a sanity check for OPTIONS p usb/149675 thompsa [uftdi] [usb_serial] doesn't react to break properly s kern/149665 imura [PATCH] mount_smbfs the CP932 to UTF-8 mount as not. 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 ports/149636 x11 x11/xorg: buffer overflow in pci_device_freebsd_read_r 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 ports/149564 patch for various games/ adding appropriate LICENSEs t p docs/149549 brueffer [patch] MLINK choosethread.9 to runqueue.9 o kern/149532 jfv [igb] igb/ixgb controllers panic on FreeBSD 8.1-RELEAS o docs/149522 doc Russian network article: incorrect translation about n 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 p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c o www/149446 www [patch] improve misleading title of "report a bug" o ports/149420 ume security/cyrus-sasl2 fails to build GSSAPI, breaking p o bin/149412 secteam bdes(1) in CFB/OFB modes can't decrypt own output p bin/149403 ed [patch] truss(1) hangs when user input is requested o kern/149373 wireless [realtek/atheros]: None of my network card working o threa/149366 threads pthread_cleanup_pop never runs the configured routine 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 arm/149288 arm mail/dovecot causes panic during configure on Sheevapl 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/149232 cperciva portsnap(8) does not generate INDEX-9 on FreeBSD 9-CUR o kern/149219 [ciss] DL380 G6 P212 trouble 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 ports/149186 timur net/samba34 builds broken binaries on Sheevaplug (ARM) 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 docs/149051 doc [request] No document for clang or clang++ o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o docs/149047 doc [patch] tcsh(1) bears no mention of brace expansion in p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 p docs/149033 pjd hastctl.8 manpage wrong 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 f ports/144794 amdmi3 multimedia/aegisub: fails to build with multiple optio o kern/144777 qingli [arp] proxyarp broken in 8.0 [regression] s kern/144770 [ata] hard drive spindown functionality broken? o ports/144769 ruby [PATCH] ports-mgmt/portupgrade should have a configura o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r o kern/144754 gssapi(3): cyradm crashes inside libgssapi.so o kern/144743 [libteken] mouse positioning partialy working o bin/144736 devd(8) should consider spaces in event description wh 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 bin/144722 [patch] port over character escape fix for hexdump(1) 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 docs/144630 doc [patch] domainname(1) manpage contains old information 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/144572 net [carp] CARP preemption mode traffic partially goes to 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 o docs/144543 chinsan [handbook] IPFW doc change o docs/144537 doc Missing _mdconfig_list and _mdconfig2_list explanation o ports/144536 skv lang/perl5.10: /libexec/ld-elf.so.1: /usr/local/sbin/e s ports/144533 portmgr [bsd.port.mk] ports tree Makefiles fail to setup a sta s 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 o docs/144488 doc share/examples/etc/make.conf: contains dangerous examp 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 p docs/144408 eadler [patch] update makefs(8) (remove device option) 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 f bin/144377 ed Display of diacritics is mildly broken in ee(1) 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 f kern/144323 bschmidt [ieee80211] A response management frame appears in wir 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 s bin/144313 vwe ld(1) can't find libs in /usr/local/lib but ldconfig(8 o kern/144311 bz [pf] [icmp] massive ICMP storm on lo0 occurs when usin o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o bin/144285 [patch] ps(1): ps -axo user,%cpu,%mem - most processes o bin/144278 sysinstall [install] Fixit from USB dont work 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 conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot 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 i386/144045 acpi [acpi] [panic] kernel trap with acpi enabled 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 ports/144010 apache devel/apr1 tries to use SYSVIPC even in jails o i386/144005 [hang] System freezes a kern/144000 andre [tcp] setting TCP_MAXSEG by setsockopt() does not seem f ports/143981 bapt [patch] shells/zsh: ZSH_MEM, ZSH_SECURE_FREE, DEBUG o 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 f ports/143938 stephen [NEW PORTS] textproc/linux-f10-ibus-qt et al.: Linux v o kern/143868 wireless [ath] [patch] [request] allow Atheros watchdog timeout o docs/143850 doc procfs(5) manpage for status > controlling terminal is o kern/143846 net [gif] bringing gif3 tunnel down causes gif0 tunnel to o kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen 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 ports/143723 nork graphics/dri fails to build after graphics/libdrm upda 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 f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in 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/143521 [irq] [panic] nmi_calltrap in siopoll() 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 standards gethostname(3) references undefined value: HOST_NAME_M o kern/143455 geom gstripe(8) in RELENG_8 (31st Jan 2010) broken o kern/143426 [panic] System crash with Firefox-3..7.5 & FreeBSD-7.2 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 kern/143370 [new driver] [patch] New splash_txt module - support f 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 s bin/143351 [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 o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall 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' o bin/143142 cperciva [PATCH] Fix non-POSIX compliant multiline conditional 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 conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks 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 f kern/143074 bschmidt [wi]: wi driver triggers panic 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 o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 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] p kern/143033 [headers] [patch] _SWAP not listed in comment in sys/q o bin/143017 watch(8): fatal: cannot attach to tty o kern/143006 [build] [request] ACCEPT_FILTER_DATA and ACCEPT_FILTER p kern/142999 eadler [puc] [patch] add support for the I-O DATA RSA-PCI2/R o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s o 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 p docs/142938 wkoszek [kld] share/examples: fix warnings 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 a 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/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 o ports/142743 stas [PATCH] devel/cross-binutils: installed by *-rtems-gcc o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in o kern/142728 [panic] Fatal trap 12 in g_io_request o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone f kern/142624 gavin Sending large chunks of data fails o kern/142597 fs [ext2fs] ext2fs does not work on filesystems with real p kern/142595 jhb Implementation of "filesystems" file in linprocfs(5) o kern/142594 pjd [zfs] Modification time reset to 1 Jan 1970 after fsyn a bin/142570 portmgr [PATCH] clean up quiet mode (-q | --quiet) output of p o kern/142563 geom [geom] [hang] ioctl freeze in zpool o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/142489 fs [zfs] [lor] allproc/zfs LOR o conf/142467 /var/log/auth.log may not be rotated for years 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 p docs/142367 roam [patch] wlan(4) does not document requirement for kern 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 ports/142259 itetcu sysutils/apcupsd segfaults during shutdown 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 simon 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 docs/142168 doc [patch] ld(1): ldd(1) not mentioned in ld(1) manpage 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 sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/142082 dchagin [patch] [panic] linuxulator: getppid: use after free o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L 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 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o i386/141942 mav [irq] interrupt storm (VIA 6421A atapci controller) o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 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 conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu 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 ports/141762 danfe net-p2p/linuxdcpp segmentation fault 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 s stand/141705 standards [libc] [request] libc lacks cexp (and friends) a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic o kern/141682 [libc] [patch] Faster version of strncpy(3) 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 ports/141660 x11 x11/xorg: X can't determine amount of video memory on o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key 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 f amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze s bin/141340 netstat(1): wrong netstat -w 1 output o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM 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 p misc/141311 [build] "make delete-old" leaves some unnecessary file o kern/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( o conf/141275 rc [request] dhclient(8) rc script should print something o bin/141264 ntpd(8) crashes when tries to use an oncore reference a docs/141227 blackend Handbook/sysinstall documentation about distributions o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o ports/141200 mav net/mpd5 asserts on reconnection over tcp p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 p bin/141175 kientzle [patch] New cpio(1) in FreeBSD 8 regressed and left ou 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 f amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher o docs/141032 doc misleading documentation for rtadvd.conf(5) raflags se a kern/141023 glebius [carp] CARP arp replays with wrong src mac 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 sysintall(8): 8.0-RELEASE-i386-memstick Fixit broken - o ports/140968 python x11-toolkits/py-tkinter(devel/pth): py26-tkinter-2.6.4 o conf/140965 [terminfo] Cannot create terminfo database because ncu f ports/140939 rea [patch] security/vuxml: fix and extend files/newentry. 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 f ports/140882 lev devel/py-subversion: subversion-1.6.6_1 build error wi 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 docs/140725 darrenr wrong directory in ipnat(8) man page o amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit o kern/140697 pf [pf] pf behaviour changes - must be documented a kern/140690 [libc] [patch] swab(3) with negative len should do not 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 p conf/140650 cperciva [build] [patch] WITHOUT_MODULES cannot be used from ke 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 o 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/140600 [swi] [panic] current process = 15 (swi1: net) 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 p docs/140457 doc [patch] Grammar fix for isspace(3) 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 arundel ls(1), section STANDARD: the -A is exception from POSI o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne o kern/140416 [mfi] [patch] mfi driver stuck in timeout o misc/140376 [build] installworld fails trying to use 'chflags schg o docs/140375 doc [UPDATE] Updated zh_TW.Big5/articles/nanobsd o ports/140364 ruby [patch] ports-mgmt/portupgrade-devel: #! line substitu f 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 [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 [patch] bad syntax causes yacc(1) segfault o bin/140304 [patch] add MAILFROM ability to cron(8) o ports/140273 swills ports-mgmt/portupgrade-devel chokes on bsdpan pkgs 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 f ports/140170 nork net/liveMedia: install shared libraries and thus fix r 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/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with 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 ports/140008 ruby ports-mgmt/portupgrade: many papercut omissions on por o i386/139999 i386 [panic] random freeze and crash o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o gnu/139982 ld(1): BFD internal error o amd64/139924 amd64 [boot] cd or dvd not load o ports/139872 [PATCH] ports-mgmt/porttools: improve port's directory 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 i386/139743 i386 [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 amd64/139614 avg [minidump] minidumps fail when many interrupts fire p bin/139606 portmgr [patch] pkg_add(1) coredumps silently on atlantis syml o bin/139601 [patch] make(1): variable substitution for $@ in depen a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u o ports/139579 jkim overflow in audio/oss f kern/139576 ed [syscons] [patch] blink screen too noisy o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo 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 p bin/139492 portmgr pkg_install(1) - overlapping data buffer in call to sn 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 pluknet [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 delphij [tmpfs] [patch] tmpfs mmap synchronization bug o kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a 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 usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o kern/139232 [panic] Kernel panic (spin lock held too long) p kern/139204 net [arp] DHCP server replies rejected, ARP entry lost bef a ports/139203 sysutils/freebsd-snapshot more careful patch not depen o bin/139181 randi 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 ports/139148 multimedia/dvdauthor: progress estimation bug in dvdun 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/139080 [libc] [patch] closelog() can close negative file desc f kern/139079 bschmidt [wpi] Failure to attach wpi(4) o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 p bin/139052 kan gcc(1): Stack protection breaks -fprofile-generate on 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 a bin/139015 portmgr [patch] pkg_info(1): fix exit code for pkg_info -g o kern/139014 [null] /dev/null must be immunable to delete/unlink o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers 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) allows unattended upgrade f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 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 f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o i386/138737 bde [endian] [patch] Patch for bswap64(9) operation on IA o java/138729 java java/jdk16: setting 'export AWT_TOOLKIT=MToolkit' caus o java/138728 java java/jdk16: SIGSEGV in java runtime 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/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ o kern/138678 net [lo] FreeBSD does not assign linklocal address to loop o docs/138663 doc 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 kern/138631 [panic] FreeBSD 7.2 panics when I try to start X o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked 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 kern/138526 [null] /dev/null does not support nonblocking operatio 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/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh o kern/138332 net [tun] [lor] ifconfig tun0 destroy causes LOR if_adata/ o bin/138331 sam FreeBSD 8.0-beta3 wpa_supplicant(8) lost auth o kern/138292 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/138266 net [panic] kernel panic when udp benchmark test used as r o ports/138228 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS f i386/138211 gavin [loader] Boot fails on Intel X5550 o amd64/138210 acpi [acpi] acer aspire 5536 ACPI problems (S3, brightness, o 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 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit 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 usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is o kern/138117 [kernel] [panic] spin lock held too long 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 ports/137958 ruby [patch] ports-mgmt/portupgrade fails with recursive de o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o ports/137940 glewis java/jdk15, java/jdk16: bsd java does not start from n o kern/137881 net [netgraph] [panic] ng_pppoe fatal trap 12 f usb/137872 usb [usb67] [boot] slow booting on usb flash drive 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 o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un p kern/137776 net [rum] panic in rum(4) driver on 8.0-BETA2 o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o ports/137729 www/mod_auth_kerb2 port broken on 8.0-BETA2 due to sec 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 o conf/137629 rc [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 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/137586 des [libpam] Need to build pam_ssh module even it openssh o misc/137514 cperciva freebsd-update doesn't update the system under some ci p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o conf/137470 rc [PATCH] /etc/rc.d/mdconfig2 : prioritize cli parameter o kern/137443 [headers] Including /usr/include/rpc/xdr.h fails with f kern/137436 eadler [puc] [patch] Fix puc driver to support newer Timedia 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 o bin/137365 [patch] let last(1) read from stdin via "-f -" o kern/137361 [panic] FreeBSD panics with random intervals 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 ports/137332 hrs add caution messages to some adobe products 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 ports/137250 portmgr OPTIONS that change PREFIX cause an error after 'make 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/137053 acpi [hang] FreeBSD 8.0 BETA2Compaq Mini 700 locks on boot o kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r o kern/137041 [hang] powerd(8) hangs my systems within aprox 15 min o bin/136994 net [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 ports/136917 python [patch] lang/python26: gettext detection 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 [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 kern/136777 [build] Building new Kernel with PF and PAE support fa o kern/136762 [ichsmb] ichsmb can't map resources of compatible IXP o bin/136733 disklabel(8) handle incorrently o docs/136712 doc [handbook] [patch] draft new section on gmirror per pa p gnu/136705 emaste [patch] gdb(1): remove a semicolon from i386-tdep.c . 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 net [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 p bin/136419 portmgr [regression] pkg_add(1) segfault on adding package whe o kern/136363 [panic] panic: vm_fault: fault on nofault entry, addr: 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 [boot] Asus M3N78-EM motherboard cannot boot with gene o bin/136325 cperciva portsnap(8): "portsnap fetch" not useable by other pro 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 ports/136072 portmgr Propose new ports category, internationalization 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 o docs/135999 jfv Netgear GS105v3 should be added to list of switches th o kern/135986 [panic] FreeBSD crashes after VLC close 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 usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 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 bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE 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 o bin/135562 randi sysinstall(8): Filesystem operations should only be pe o bin/135559 randi route table shouldn't automatically be deleted with pr 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/135485 [modules] [patch] During a shutdown, kernel modules sh o kern/135476 ipfw [ipfw] IPFW table breaks after adding a large number o o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced 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 bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o conf/135338 rc [rc.d] pf startup order seems broken [regression] o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o bin/135317 randi install.cfg feature request o kern/135307 Boot Loader problem on Acer Aspire 5735 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L 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 o usb/135182 usb UMASS quirk - Olympus FE20 camera f kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135164 [keyboard] UK currency key inactive o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel 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 amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S 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 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [headers] [patch] Large upgrades from source cause com o bin/134919 [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 ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic s ports/134714 ruby ports-mgmt/portupgrade deletes user data without quest 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 f 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/134519 [panic] Kernel panics (2 page faults in kernel) 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 [patch] nslu2_led driver for the LEDs on the NSLU2 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 o 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 ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134123 doc The RUNQUEUE(9) man page is out of date o kern/134113 geom [geli] Problem setting secondary GELI key f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops p arm/134092 cognet [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive 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 conf/134006 rc [patch] Unload console screensaver kernel modules if s 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 amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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/133926 [request] MAXLOGNAME, the username length limit, is to o kern/133919 [mpt] [panic] 7.1 panics after completing rebuild of m o kern/133892 sam /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 amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO 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 power/133382 ppc [install] Installer gets signal 11 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/133218 glebius [carp] [hang] use of carp(4) causes system to freeze f kern/133213 net arp and sshd errors on 7.1-PRERELEASE o kern/133174 fs [msdosfs] [patch] msdosfs must support multibyte inter s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132987 daichi [unionfs] unionfs_readdir has math problem 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 kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent 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 bin/132692 [patch] getent(1): no support for netgroup 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 conf/132596 examples/cvsup/ports-supfile still oriented on cvsup p 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 amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change f i386/132535 gavin [acpi] if ACPI enabled, i can't change brightness leve o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves 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 o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o kern/132397 fs reboot causes filesystem corruption (failure to sync b p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 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 o ports/132294 stas [PATCH] lang/ruby18: Add option to build with Profile- o ports/132293 stas [PATCH] lang/ruby19: Add option to build with Profile- o 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/132250 scsi [ciss] ciss driver does not support more then 15 drive 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 kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/132145 fs [panic] File System Hard Crashes o bin/132114 randi [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/131968 danger ipnat man page points to wrong directory f kern/131933 eadler [uart] [patch] add support for Sony Ericsson GC89 EDGE o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit 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 ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh p kern/131718 [lor] kern_sysctl.c / acpi_video.c o docs/131626 doc [patch] dump(8) "recommended" cache option confusing o kern/131601 net [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/131573 [mutex] lock_init() assumes zero-filled struct f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o ports/131554 stas net-mgmt/flow-tools: flow-capture consuming all availa 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 amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems o kern/131448 Bad display while booting 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 i386/131426 i386 hald makes cdrom fail 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 s bin/131354 des ssh: SSH session hangs 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 p bin/131250 brian [patch] ppp(8) proxyarp does not work s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o bin/131143 [patch] amd(8) causes annoying "embedded slash in map o ports/131111 ruby ports-mgmt/portupgrade-devel: completely removes packa 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 kern/130998 [dtrace] DTrace stops tracing because of struct thread 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 s bin/130954 vwe ps(1): can not obtain which process take all CPU time 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 f misc/130728 joel There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o kern/130657 bz [ip6] [patch] ipv6 class option o bin/130655 randi 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 net [rc.d] [patch] No good way to set ipfilter variables a o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau a bin/130504 [libc] Serious bug in regular expression library (rege o ports/130479 apache www/apache20 and www/apache22 configure_args busted s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/130387 portmgr [PATCH] Mk/bsd.port.mk - Add macros for COPYTREE_WWW a 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 o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute 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 usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El 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 p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 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/129989 cperciva portsnap(8) quietly forgets to fetch some ports o bin/129965 gavin [patch] ps(1): ps -lH doesn't show the proper CPU# o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o ports/129930 ruby ports-mgmt/portupgrade - portinstall tries to install s www/129923 www Need stylesheet for FreeBSD Subversion DAV tree s ports/129891 ruby ports-mgmt/portupgrade fails to recognize variations o o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo o kern/129861 pf [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: o 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 amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 edwin FreeBSD Multimedia page should automatically pick up Y p docs/129398 trhodes [patch] ddb(8): various tweaks to ddb-related man page 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 amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o bin/129287 [request] powerd(8) should grow signals to switch betw o kern/129261 simokawa [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 emulation [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 f 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 s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb67] [patch] uaudio is not full duplex f ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o java/128948 java java/jdk16 built from source can't bind a socket, but o kern/128933 kib [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic 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/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o ports/128783 stas net-mgmt/flow-tools: flow-send Does not work on freebs f amd64/128765 amd64 [install] Install CD loads to Install choices but stop 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 weongyo zyd teoretically supported usb device makes kernel pan o bin/128727 host(1) does not work properly with the -6 option o bin/128668 [request] Kerberos in the base system is too old 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 p kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop 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 secteam [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 o ports/128556 mnag net/py-zsi installs with insufficient rights 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/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 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 s 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 f kern/128276 geom [gmirror] machine lock up when gmirror module is used o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p kern/128247 bz [ip6] [panic] Fatal Trap 12 in ip6_forward = o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re o 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 p docs/128089 kientzle [patch] Incorrect type in archive_write(3) manpage 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/128076 [panic] Fatal trap 12: page fault while in kernel mode 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 ports/128028 portmgr bsd.port.mk - Ports-Script do not recognize dialog-ret o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p bin/127986 [patch] ee(1): fix compiler warnings caused by use of 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 scsi [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 docs/127908 doc [patch] readdir(3) error documentation p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 ruby 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 p docs/127840 murray [patch] fix entity references in release/doc/en_US.ISO 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 s ports/127778 brooks lang/llvm-gcc4: llvm can't create shared lib o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o kern/127717 scsi [ata] [patch] [request] - support write cache toggling 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 mi 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 s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127439 pf [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 f kern/127375 fs [zfs] If vm.kmem_size_max>"1073741823" then write spee 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 f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] 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 ports/127292 timur net/samba3: not work cancel inheritance on share o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127276 [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 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l o threa/127225 threads bug in lib/libthr/thread/thr_init.c 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 p kern/127057 bz [udp] Unable to send UDP packet via IPv6 socket to IPv s bin/127056 lp(1) doesn't use -o options o 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 ports/127019 ruby ports-mgmt/portupgrade does not recognize fail conditi o kern/126973 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126971 [boot] loader/kernel does not obey comconsole_speed o kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o bin/126936 locate.updatedb(8): updatedb fails silently when attem s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu 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 ports/126853 stas ports-mgmt/portaudit: speed up audit of installed pack o usb/126848 usb [usb]: USB Keyboard hangs during Installation o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f o kern/126788 [boot] Can not boot FreeBSDv7.0.iso from USB formated o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o bin/126721 gcc(1) g++(1) Compiling, assembling and linking code w o 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 p bin/126657 [patch] w(1) breaks multibyte date format o bin/126619 randi sysinstall(8) deletion of routes when reinitializing m o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126553 daichi [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 p bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o misc/126312 [build] debug message going to stderr while doing "mak 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 p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching f ports/126140 ruby ports-mgmt/portupgrade runtime error 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 thierry 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 docs/125921 doc lpd(8) talks about blocks in minfree while it is KB in 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 o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg o kern/125806 np [cxgb] cxgb packet counters do not work 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 brucec 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/125723 [ciss] System randomly crashes or can not boot - ciss f kern/125722 [boot] [install] error "BTX halted" at installation Fr 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 kern/125647 [ciss] [panic] System randomly crashes - ciss driver 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 bin/125449 [patch] awk(1): /usr/bin/awk fails mawk's FPE test f kern/125442 glebius [carp] [lagg] CARP combined with LAGG causes system pa 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/125185 csh(1) exit on signal 11 o bin/125184 des sshd(8) does not always log IP address for login failu o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 brooks [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage 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 amd64/125002 amd64 [install] amd64, SATA hard disks not detected o kern/124989 [mfi] mfi driver error - unexpected sense 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/124825 mlaier tcpdump(8) does not support pfsync(4) data 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 kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov f i386/124516 xen [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o docs/124470 remko incomplete (and out of sync) glabel(8) manpage p docs/124468 remko sticky(8) should be sticky(7) o misc/124452 [install] 7.0-RELEASE amd64 bootonly media fails to us o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o misc/124431 bde [build] [patch] minor revision of BDECFLAGS o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o bin/124409 fsck(8) requires exact entry for mountpoints when exec p bin/124392 [patch] bootparamd(8) does not work on arm o kern/124389 [build] make installkernel fails with KMODDIR iff $(KM p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o kern/124341 net [ral] promiscuous mode for wireless device ral0 looses p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under 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 docs/124253 sam Broken command in the handbook for configuring a wirel 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 s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 p misc/124164 markm [patch] Add SHA-256/512 hash algorithm to crypt(3) 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 kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po 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 p bin/124052 [patch] adduser(8) throws errors when -f input file in 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 o 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 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not 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 o 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 daichi [unionfs] df(1) -t option destroys info for unionfs (a o ports/123570 itetcu audio/cpige version 1.5 coredumps if new .conf entries f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW 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 kern/123520 scsi [ahd] unable to boot from net while using ahd f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla 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 i386/123462 i386 clock is too fast 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/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 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 o conf/123119 rc [patch] rc script for ipfw does not handle IPv6 f kern/123045 net [ng_mppc] ng_mppc_decompress - disabling node o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e 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 o 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 i386 [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 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/122813 usb [udbp] [request] udbp driver should be removed in favo 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 amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial 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 f ports/122333 net/arping - patch to lookup for interface and src ip, 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 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 s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 [patch] Have crontab(1) use snprintf instead of sprint 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 p bin/122070 [patch] crontab(1): Zero out pw_passwd in crontab 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 p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 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 p kern/121907 [request] output to console can obscure other messages 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 f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 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 p docs/121721 trhodes telnetd(8) not describing -X authentication types o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k f java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con 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 jkoshy [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 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin 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 usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard 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 ports/121420 glewis java/jdk16: Java applet fails to find class under fire o ports/121416 glewis java/jdk15 can't build if BIN environment variable is o kern/121396 [ata] 7.0 fails on mcp55 sata controller [regression] f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121385 daichi [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 ports/121347 hrs print/teTeX-base and print/texinfo install files in th o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 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 darrenr [panic] Panic in ether_input() with different NIC's. 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 p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se 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 o kern/121122 ipfw [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 o conf/121064 [patch] Use ASCII characters for box/line characters i o kern/121061 sam [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 o ports/120947 x11 x11/xsm ignores system.xsm and .xsmstartup s docs/120917 doc [request]: Man pages mising for thr_xxx syscalls p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 p bin/120870 jh [patch] truss(1) shows 'pipe' system call as having 6 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 o kern/120717 [ata] boot problem when recognizing ata1 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 docs/120539 doc Inconsistent ipfw's man page 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/120487 scsi [sg] scsi_sg incompatible with scanners 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/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o kern/120344 rwatson [panic] FreeBSD 6.3-STABLE panics on high loaded web s p kern/120343 ups [panic] Reproducible Crash - network interface related 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 simon [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 p bin/120256 gavin [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o kern/120177 [ata] ATA DMA modes don't work on CF cards o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o 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 o 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 p bin/119610 wkoszek [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o kern/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 bde [i386] 7.0-RC1 times out in calibrate_clocks() [regres o kern/119572 [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 kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver 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 f kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust f bin/119354 csup(1) in free(): error: chunk is already free p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f 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 [dc] [patch] Collect various stats regarding dc(4) int o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H 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 f kern/118990 yongari [nve] nve + PAE bus_addr_t/void * inconsistencies o java/118956 java eclipse and netbeans break on diablo-jdk15 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 docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages o kern/118880 bz [ip6] IP_RECVDSTADDR & IP_SENDSRCADDR not implemented f misc/118855 pjd [zfs] ZFS-related commands are nonfunctional in fixit p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o bin/118759 cvs(1): cvs -R doesn't handle non-existent tags o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 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 gcooper [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 s 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 randi sysinstall(8): Installer failing dns lookups o kern/118447 [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( o gnu/118415 nm -D fails if a file has no symbols p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar 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 bin/118318 mohans [nfs] NFS server hangs under special circumstances p kern/118317 delphij [zlib] [patch] Incorrect gzeof() return value in zlib p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o ports/118301 python [patch] devel/py-setuptools easy-install.pth contents o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o i386/118285 [i386] Segmentation fault in reloc_non_plt. p bin/118260 bin: more informative error message for install(1) o 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 f 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 [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 a bin/118071 darrenr ipnat(8): ipnat -s expired counter does not update [re 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 randi [keyboard] 7.0 Beta 2 sysinstall keyboard emits contro o docs/118020 doc ipfilter(4): man pages query for man 4 ipfilter return 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 o 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 s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o usb/117893 usb [umass] Lacie USB DVD writing failing o kern/117867 [heimdal] kinit generates bad tickets on multihomed IP s bin/117830 [patch] who(1) no longer displays entries for folk log o bin/117812 passwd(1): incapable of changing LDAP passowrds using f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 [rpc] rpcbind binds to all interfaces on random ports o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces f kern/117655 sam [ral] ral%d: device timeout when running as an access 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 o bin/117520 [patch] csup(1) not-really-equivalent to cvsup 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 o 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 kern/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o usb/117313 usb [umass] [panic] panic on usb camera insertion f amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A p bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap o kern/117242 [syscons] [hang] console hangs when powerd is adaptive p bin/117214 bz ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 antoine [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr 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 weongyo [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 a conf/117027 yar rc.subr doesnt deal with perl daemons p docs/117013 trhodes mount_smbfs(8) doesn't document -U (username) argument o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o misc/116946 holographic shell breaks live CD shell o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o kern/116935 [ata] Intermittent error with Promise PDC40718 o conf/116931 fs lack of fsck_cd9660 prevents mounting iso images with p stand/116826 jilles [patch] sh(1) support for POSIX character classes o bin/116784 mount_msdosfs(8): mount_msdosfs -L ru_RU.KOI8-R -W koi o bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/116770 [kqueue] Unfortunate fifo/O_NONBLOCK/kevent interactio o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o bin/116722 ntpd(8): ntpd core dumps if hostnames are not specifed 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 java/116667 java linux-sun-javac1.4 hangs on SMP o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta f amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on s ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o docs/116588 remko 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 kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss f www/116479 www cvsweb+enscript formatting bugfix 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 conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat 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 f kern/116270 [ata] READ_DMA48 UDMA ICRC error s ports/116222 portmgr files installed with the wrong UID/GID via make instal o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot p threa/116181 attilio /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116133 Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note 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 kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o ports/115957 itetcu Questionable ownership and security on dspam port o bin/115951 [tun] pppoed(8): tun not closed after client abruptly o bin/115947 acpi [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter 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 amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp s docs/115716 jhb remove cue from supported hardware list p kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/115666 multimedia [sound] Microphone does not work 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 p bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi 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 kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 p docs/115065 doc [patch] sync ps.1 with p_flag and keywords 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/114995 [drm] acpi_video prevents savage drm from loading succ 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 o 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 s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/114667 [umass] UMASS device error log problem f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o java/114644 java tomcat goes out of PermSpace, jvm crashes o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs s kern/114578 [libc] wide character printing using swprintf(dst, n, o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114550 [cbb] Cardbus WiFi card activation problem o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile 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 o bin/114465 [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 f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 [RFE] [modules] [patch] add dynamic module references p kern/114237 csjp [lor] kernel lock 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/114165 acpi [acpi] Dell C810 - ACPI problem 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 [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 usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha p kern/114057 jh [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff f usb/113977 gavin [request] Need a way to set mode of USB disk's write c f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o conf/113915 rc [patch] ndis wireless driver fails to associate when i p conf/113913 olli [patch] [requst] new file /etc/periodic/daily/490.stat 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 f i386/113853 FreeBSD 6.2-RELEASE Crashes and Reboots on i386 o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral f kern/113851 [boot] Unable to boot install cd from USB-CDROM 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 ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o bin/113702 portmgr [patch] bad output from "pkginfo -g" o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 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/113239 [patch] atrun(8) loses jobs due to race condition 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) s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in 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 s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl o ports/112818 ruby ports-mgmt/portupgrade -a fails with database error o docs/112804 doc 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 p bin/112694 jon [patch] segfault in pam_lastlog(8) on sshd exit when n o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 o docs/112682 doc Handbook GEOM_GPT explanation does not provide accurat 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 f java/112595 java Java appletviewer frequently hangs (kse_release loop) o docs/112579 mlaier [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 p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove 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 conf/112441 deprecated lines in /etc/hosts.allow 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 p bin/112288 gavin ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and s kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 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/111967 [geli] glabel - label is seemingly not written to disk 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 a ports/111356 csjp net/bpfstat: man bpfstat has no descption for the flag 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 f kern/111196 [ata] [hang] SATA drives cause errors and cause system 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 o docs/111147 doc hostapd.conf is not documented 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 o ports/111066 secteam ports-mgmt/portaudit does not skip ports fixed listed 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 usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. s ports/110826 dinoex port graphics/tiff: tiff2pdf tints images with wrong c o docs/110692 doc wi(4) man page doesn't say WPA is not supported p kern/110662 sam [safe] safenet driver causes kernel panic o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f 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 docs/110253 doc [patch] rtprio(1): remove processing starvation commen 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 f kern/110140 bschmidt [ipw] ipw fails under load o bin/110068 [patch] rewrite of mdmfs(8) in shell 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 p docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled o docs/109981 doc No manual entry for post-grohtml o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o docs/109977 doc No manual entry for ksu p docs/109975 trhodes No manual entry for elf2aout o docs/109973 doc No manual entry for c++filt 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 ports/109745 portmgr NO_PACKAGE handling by ports build system 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 conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 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 o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo 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 conf/109272 rc [request] increase default rc shutdown timeout 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 kern/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system 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] f sparc/108732 sparc64 ping(8) reports 14 digit time on sparc64 o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in 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 kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed 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 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) s ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC 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 f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/107944 net [wi] [patch] Forget to unlock mutex-locks f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk 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 o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found 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 p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM s www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea p kern/107285 [panic] freeze and reboot by mounting CDROM volume twi f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X 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 kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o bin/106872 [patch] [request] extattr support for find(1) f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang 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- f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo 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/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o bin/106431 [patch] atacontrol(8): Inform user of ata RAID5 acting 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 docs/106135 doc [request] articles/vinum needs to be updated o kern/106107 fs [ufs] left-over fsck_snapshot after unfinished backgro o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o kern/106028 [pxeboot] tftp inside pxeboot isn't initialised proper o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p p docs/105997 trhodes sys/kern/sys_pipe.c refer to tuning(7), but there is n 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 o 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/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/105579 [libalias] dcc resume over natd in 6.x o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s 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 o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp p conf/105100 [patch] [locale] no support for lv (latvian) locale f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo 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 o bin/104921 ipfw [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 java/104744 glewis java/berkeley-db installation error p stand/104743 jilles [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [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 f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o bin/104553 [patch] [request] Add login group support to login.acc o 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 f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive 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 www/103938 brd cvs-src archive does not rebuild since 12 Mar 2006 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never 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 ports/103751 nork databases/linux-oracle-instantclient-sqlplus: ldconfig 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 usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103283 pf pfsync fails to sucessfully transfer some sessions o kern/103281 pf pfsync reports bulk update failures 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 o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele 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/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul a bin/102834 [patch] mail(1) hangs on the sigsuspend system call in 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 f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install 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 bin/102515 [libc] fsck_ufs crashes if no console at all o conf/102502 net [netgraph] [patch] ifconfig name does't rename netgrap o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [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 kern/102252 acpi acpi thermal does not work on Abit AW8D (intel 975) 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 f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o kern/102035 net [plip] plip networking disables parallel port printing o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau 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 usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca s ports/101450 stas multimedia/transcode: tcprobe broken for devfs f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea 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 threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o docs/101271 remko serial console documentation implies kernel rebuild re o kern/101226 jfv [em] Access to IPMI module is lost when the em driver f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o kern/100974 rwatson [panic] sorele. FreeBSD 6.1 RELEASE i386 o bin/100956 remko [patch] support setting carp device state with ifconfi 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 kern/100858 davidch [bce] Broadcom bce driver and SMP hangup s bin/100805 yar 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 usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 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 p docs/100242 trhodes sysctl(3) description of KERN_PROC is not correct anym 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 bin/100018 [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ s bin/99973 yar systat(1): systat -ifstat traffic counter overflow o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] 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/99800 [libc] [patch] Add support for profiling multiple exec o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s 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 misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o docs/99506 doc FreeBSD Handbook addition: IPv6 Server Settings o kern/99485 Disk IO Causes multimedia/mplayer To Drop Frames o conf/99444 rc [patch] Enhancement: rc.subr could easily support star 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 conf/99328 [patch] updates for src/share/examples/cvsup 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/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 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 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel 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/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 p misc/98383 yar [request] include the mt command in the rescue CD 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 [request] AcerHK driver port needed for enabling WiFi 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 o 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 usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf 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 stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio 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 p conf/96015 jilles uncommenting the msgs invocation in /etc/profile can f o gnu/95936 egrep(1) misparses multiline parenthetical grouping o bin/95698 philip [patch] moused(8): Software control of sysmouse o 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 remko 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/95239 [libc] [patch] nftw(3) returns EINVAL for large values 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 s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e 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 stand/94729 standards [libc] fcntl() throws undocumented ENOTTY 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 s www/94423 danger [patch] XML'ified release todo list 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 o kern/94227 'no dump device defined' on random occasions s kern/94182 [altq] [request] altq support for vlan driver p bin/94181 ume portsnap(8) should remove the trailing dot from the se p bin/94180 ume portsnap(8) does not handle HTTP_PROXY_AUTH correctly 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 usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [iconv] [patch] new utility: kiconv_cs_preload(8): Uti o www/93854 postmaster Cannot proceed to page after the first in mailing list 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 i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva 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 a kern/93685 [pipe] select on pipe write fails from '0' end 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 p bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. 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 p kern/93331 [kernel] [patch] broken asm in kernel o bin/93317 ld-elf.so doesn't translate unresolved weak symbol int o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o ports/93279 skv 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/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o gnu/93127 [patch] add __FreeBSD_kernel__ to pre-defines 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/92798 scsi [ahc] SCSI problem with timeouts 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 ports/92651 stas graphics/gmt - WITH_EVERYTHING doesn't fetch o docs/92626 doc jail manpage should mention disabling some periodic sc f kern/92552 yongari A serious bug in most network drivers from 5.X to 6.X o 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 glebius [ppp]: ppp does not work on renamed network interfaces o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o kern/92164 scottl [ips] [lor] SCSI target mode LOR 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 kern/92092 [iicbus] [patch] Panic if device with iicbus child is 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 sam dhclient(8) option missing, script incompability o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 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 net [ipf] [patch] wrong behaviour with skip rule inside an 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/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 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 o docs/91506 doc ndis(4) man page should be more specific about support 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 kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 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 yar [patch] add ftpd(8) SITE SHA256 command s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 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 o 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 o kern/90837 [sound] PCM - ICH6 - device is busy, but old process d 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 o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd s bin/90367 [request] libmap.conf needs exclusivity support o bin/90311 [patch] add "eject" to mt(1) o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device 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 kern/90086 net [hang] 5.4p8 on supermicro P8SCT hangs during boot if 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 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a conf/89589 secteam virecover follows hardlinks, possibly exposing sensiti 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) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco 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 s usb/89003 usb [request] LaCie Firewire drive not properly supported o conf/88913 rc [patch] wrapper support for rc.subr o bin/88826 randi 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 s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg f misc/88680 [build] !compiling freebsd components 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 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o kern/88518 rodrigc 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 kern/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi 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 s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w 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 kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 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 p bin/87726 dfr gssapi.h is not c++ aware 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 net [ipf] [panic] using ipfilter "auth" keyword leads to k 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 mlaier pf does not log dropped packets when max-* stateful tr 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 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 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 mlaier pf does not use default timeouts when reloading config o bin/86665 randi 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 a bin/86485 arundel [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 kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 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 net [ipf] Illegal NAT Traversal in IPFilter o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. s kern/85975 [cam] devfs does not create entries when removable med o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci o gnu/85824 obrien gas crashes when assembling this file o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/85809 darrenr panic: mutex "ipf state entry" already initialized 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 p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip f kern/85257 [boot] BTX boot loader fails on USB CDROM (HP DL145 Op 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 a bin/77651 [patch] init(8) can lose shutdown related signals s i386/77355 i386 [patch] Detect i*86 subarches for uname o kern/77341 net [ip6] problems with IPV6 implementation f usb/77294 usb [ucom] [panic] ucom + ulpcom panic o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 o bin/77261 login(1) doesn't chdir into a group-protected home dir s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77156 FreeBSD does not redirect packets on proper interface. o bin/77089 natd(8) ignores -u with passive FTP o bin/77001 randi sysinstall(8): sysinstall binary upgrade clobbers /etc o kern/76972 64-bit integer overflow computing user cpu time in cal o bin/76756 des function pw_equal in pw_util.c does not test pw_passwd o bin/76736 dwmalone syslogd(8) pipelines losing messages o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi p bin/76697 simon newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l 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) s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 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 f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location o conf/76226 Default local.9600 gettytab initially uses parity o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o gnu/76169 [patch] Add PAM support to cvs pserver f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 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 f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) 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 o bin/75258 [patch] dd(1) has not async signal safe interrupt hand 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 a 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 f usb/74771 usb [umass] [hang] mounting write-protected umass device a s kern/74708 [umapfs] [panic] UMAPFS kernel panic o gnu/74654 libsupc++.a lacks necessary functions o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 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 darrenr [patch] Connect src/etc/periodic/security/610.ipf6deni 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/73786 [patch] added WARNING in spanish to stable-supfile 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 driver stating cardbus firewire card has incorr 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 kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q 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 conf/72277 [patch] update for /usr/share/skel o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/72210 darrenr ipnat problem with IP Fastforward enabled s ports/72202 simon portaudit warns about the CVS server vulnerability whi 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 o conf/71994 [patch] dot.login: login shell may unnecessarily print 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/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71631 [patch] cleanup of the usr.sbin/pppctl code o bin/71630 [patch] cleanup of the usr.sbin/pppd code o bin/71628 [patch] cleanup of the usr.sbin/rpcbind code o bin/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [patch] sicontrol(8): cleanup of the usr.sbin/sicontro 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 kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support 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 conf/70715 [periodic] Lack of year in dates in auth.log can cause 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 kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k 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 p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup 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 ' p docs/69861 trhodes [patch] usr.bin/csplit/csplit.1 does not document POSI 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 i386/69750 acpi Boot without ACPI failed on ASUS L5 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 f bin/69362 mbr amd(8) does not properly detect the local network sett 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 i386/69218 simokawa [boot] failure: 4.10-BETA and later do not boot on Asu 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/68797 [patch] cut(1): fflush after each write if an option i o bin/68727 gdb(1) coredumps after recent CURRENT upgrade o kern/68690 [libc] write(2) returns wrong value when EFAULT o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por 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 rodrigc [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 kern/66960 [fdc] [patch] filesystems not unmounted during reboot 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 p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a 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 o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p 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 randi 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 kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut 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( a 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 usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes o bin/63608 Add a -c option to time(1) to display csh output o www/63552 gabor Validation errors due to CAPs in attribute values 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 kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries 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 brucec [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 docs/61605 doc [request] Improve documentation for i386 disk geometry 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 kern/61404 silby RFC1323 timestamps with HZ > 1000 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 s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/60892 [patch] added -p option to kldxref(8) to allow creatio s kern/60874 [request] auto-assign devfs ruleset numbers 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 kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 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 kern/60598 scsi wire down of scsi devices conflicts with config s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o docs/60529 ume resolver(5) man page is badly out of date p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60174 debugging a kernel module in load/attach routines o kern/60089 scottl [udf] UDF filesystem appends garbage to files s kern/59912 alc 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 a 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 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o ports/59254 portmgr ports that write something after bsd.port.mk o docs/59240 blackend [patch] [handbook] update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour 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 o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o bin/58483 [patch] mount(8): allow type special or node relative o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/58293 vi(1) replace with CR (ASCII 13) doesn't work o kern/58154 mckusick Snapshots prevent disk sync on shutdown o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement a stand/57911 fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) returns FNM_ o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps o bin/57715 [patch] tcopy(1) enhancement a 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 o ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil f misc/57464 [boot] loader(8) seems to confuse files [4.7] s bin/57407 [patch] Better NTP support for dhclient(8) and friends s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di 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 s bin/57255 usb [patch] usbd(8) and multi-function devices o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c o bin/57045 trpt(8) option -t was disabled on -current s bin/57018 [patch] convert growfs(8) to use libufs(3) o 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 s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 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 o kern/56024 acpi ACPI suspend drains battery while in S3 s kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/55965 sshd(8) problems with HostBasedAuthentication and NSS 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 i386/55661 acpi ACPI suspend/resume problem on ARMADA M700 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 o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in f misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi f bin/55349 mbr 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 o kern/54884 mckusick FreeBSD -stable and -current free space handling for U 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 docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use s bin/54446 portmgr [patch] pkg_delete(1) doesn't honour symlinks, portupg 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 s stand/53682 [feature request] [patch] add fuser(1) utility 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 randi 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 s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than 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 [usb] [request] umass driver support for InSystem ISD2 o kern/51982 remko [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 kern/51583 fs [nullfs] [patch] allow to work with devices and socket o docs/51480 doc Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec s www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) 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 p bin/50656 cp(1) - wrong error on copying of multiple files p bin/50569 jilles sh(1) doesn't handles ${HOME}/.profile correctly 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 s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under o kern/48741 darrenr ipnat corrupts packets on gre interface with rul 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 mtm [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. s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o conf/47596 [periodic] daily security run complains if timezone ch o docs/47594 remko [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 a kern/47286 [request] [patch] make device probing verbose when usi o kern/46973 [syscons] [patch] [request] syscons virtual terminals s conf/46913 darrenr ipf denied packets of security run output contains non 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 remko Remove skel from BSD.root.dist. s kern/46036 [RFE] select is unsuitable for implementing a periodic o bin/45990 dwmalone top(1) dumps core if specific errors in password file o kern/45896 dwmalone 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 randi 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 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko 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 randi 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/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND 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 docs/44519 obrien ftpd.conf(5) contains references to ftpd(8) when it is s bin/44518 yar ftpd(8) does not show OPIE OTP challenge 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/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o bin/44212 [request] Unify 'recursive' options -r and -R o kern/44202 [rp] [patch] -stable rp driver does not work with mult o www/44181 re www "Release Information" organization o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 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 f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- 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 kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 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 o kern/42089 ntp_gettime returns time in wrong scale o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o bin/42022 randi sysinstall(8): non-interactive mode prompts when only o bin/42018 portmgr pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne a bin/41947 gcooper [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 a 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/41297 mp tcsh(1)/csh(1) backquote/braces expansion bug 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 conf/40777 [patch] disktab does not support 2.88MB floppies 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 > f 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 s 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 mtm [patch] Add several options to fingerd(8) o bin/39439 tcopy(1) will not duplicate tapes with block size larg o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o stand/39256 standards 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 docs/38982 doc [patch] developers-handbook/Jail fix 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 randi sysinstall(8): should be able to mount ISO images on D s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si s ports/38593 portmgr [request] Third level ports o docs/38556 doc EPS file of beastie, as addition to existing examples 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 gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p 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 conf/37569 [patch] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [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 randi [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 darrenr 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) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect f docs/36432 gabor Proposal for doc/share/mk: make folded books using psu 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 s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f o bin/35769 w(1) does not correctly interpret X sessions s docs/35678 doc docproj Makefiles for web are broken for paths with sp o kern/35669 [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 randi 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 kern/35234 scsi World access to /dev/pass? (for scanner) requires acce 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 dwmalone dmesg(8) issues with console output o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md s threa/34536 threads accept() blocks other threads 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 p bin/34270 man(1) -k could be used to execute any command. o docs/34239 trhodes tunefs(8) man page doesn't describe arguments. s bin/34171 yar 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 o bin/33774 [patch] for killall(1) 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 bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o bin/32808 dwmalone [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 dwmalone 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 o bin/30542 [patch] add -q option to shut up killall(1) o bin/30517 randi 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 o conf/30399 [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 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 a docs/30008 doc [patch] French softupdates document should be translat 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 p bin/29363 simon [patch] newsyslog(8) can support time as extension f kern/29355 [kernel] [patch] add lchflags support a bin/29253 natd(8) forgets about udp connections o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol s i386/28975 [rp] RocketPort problems o bin/28789 [patch] last(1) does not filter for uucp connects o bin/28424 remko mtree(8) fails to report directory hierarchy mismatch o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [patch] iso-8859-1_to_cp437.scm doesn't contain some u a bin/28223 remko 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/27829 pax(1) uid/gid cache is read-only o bin/27687 fs fsck(8) wrapper is not properly passing options to fsc o docs/27605 doc [patch] Cross-document references () o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c o kern/27403 [lpt] lpt driver doesn't handle flags anymore o bin/27319 obrien df(1) displays amd 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 randi sysinstall(8): can not get to shell prompt from serial o kern/27008 kernel function sysbeep(xxx, 0) does produce sound s bin/26803 des fetch(1) Fix fetch to allow FTP puts in '-o' & allow ' o kern/26787 [patch] sysctl change request o bin/26695 change request: killall(1) -l output 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 remko [libc] [patch] setnetgrent hangs when netgroup contain s gnu/26362 "cvs server" doesn't honour the global --allow-root o docs/26286 doc *printf(3) etc should gain format string warnings o kern/26261 [sio] silo overflow problem in sio driver f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem 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 f 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 o kern/25733 [intpm] mismatch between error reporting in smbus fram s bin/25598 yar patch to let ftpd(8) output message when changing dire s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o kern/25445 kernel statistics are displayed in wrong types and wra 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) o bin/24757 yar ftpd(8) not RFC compliant 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 f 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 [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 s kern/21463 eadler [linux] Linux compatability mode should not allow setu f bin/21315 Shells often behave oddly when executing shell scripts 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 s bin/20521 rmt(8) /etc/rmt several problems o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/20391 jhb sysinstall(8): sysinstall should check debug.boothowto s kern/20333 des [libpam] ftp login fails on unix password when s/key a o bin/20282 randi sysinstall(8): sysinstall does not recover some /etc f o bin/20054 yar 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! a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese o bin/19772 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 s conf/19573 des 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 dwmalone 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 dwmalone 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 f kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 [patch] crontab(1) leaves files in /var/cron/tabs when o bin/17289 gad [patch] wrong permissions on /var/run/printer s kern/17109 darrenr 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 dwmalone [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 p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k 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 randi 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 p bin/13869 man(1) program saves multiple cached copies of the sam s conf/13775 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. a bin/13128 portmgr [patch] pkg_delete doesn't handle absolute pathnames c 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 o bin/12545 peter kldload(8) should be more sensitive to errors in *_mod 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 mtm [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 bin/9868 [patch] date(1) add "date -a" o kern/9679 [portalfs] [patch] fix for uninterruptible open in por o kern/9619 rodrigc Restarting mountd kills existing mounts o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o bin/8867 randi 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 s bin/5296 slattach fails creating pidfile with ioctl(TIOCSCTTY): 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 s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk o bin/4116 [patch] [kerberos] Kerberized login as .root fai s bin/3170 vi(1): vi freaks and dump core if user doesn't exist s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o s bin/2137 [vm] systat(1) total vm statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 [patch] Extraneous warning from mv(1) 6142 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 11:14:54 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA772106566C for ; Mon, 24 Oct 2011 11:14:54 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C681F8FC12 for ; Mon, 24 Oct 2011 11:14:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OBEsNC037386 for ; Mon, 24 Oct 2011 11:14:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OB9Kxd027146 for freebsd-bugs@FreeBSD.org; Mon, 24 Oct 2011 11:09:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Oct 2011 11:09:20 GMT Message-Id: <201110241109.p9OB9Kxd027146@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 Cc: Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 11:14:54 -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 -------------------------------------------------------------------------------- p bin/147572 sbruno [2tb] mptutil(8) doesn't support configs over 2TB 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 8 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 o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 3 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/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 acpi [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/144045 acpi [acpi] [panic] kernel trap with acpi enabled 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 kern/137042 acpi [acpi] hp laptop's lcd not wakes up after suspend to r 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 o amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114165 acpi [acpi] Dell C810 - ACPI problem s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext o kern/91594 acpi [acpi] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/ 38 problems 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 'ae': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/145918 yongari [ae] After spontaneous ae0 "watchdog timeout", "stray 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 -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 6 problems total. Problem reports for tag 'ahci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161881 [ahci] [panic] [regression] Panics after AHCI timeouts 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 -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/123520 scsi [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 6 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 'aic7xxx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156513 scottl [aic7xxx] [patch] missing check of scb. 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 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158802 fs [amd] amd(8) ICMP storm and unkillable process. o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 2 problems total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, s gnu/112215 obrien [patch] [amd64] gcc(1): "gcc -m32" attempts to link ag 5 problems total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem 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/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a 7 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o kern/85886 [an] [patch] an0: timeouts with Cisco 350 minipci 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 4 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 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154299 [arcmsr] arcmsr fails to detect all attached drives o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 2 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/144777 qingli [arp] proxyarp broken in 8.0 [regression] o kern/140358 qingli 8.0RC2: [arp] arp: writing to routing socket: Invalid o kern/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with 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 11 problems total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 3 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/159284 [ata] [patch] Update ATA command-to-string definitions o kern/158268 [ata] SIGNATURE: ffffffff with Promise PDC40718 o kern/156647 [ata] Intel ICH7 SATA300 Driver Performance Regression o kern/153440 mav [ata] 8.2 doesn't detect ICH8M anymore 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 amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S 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 amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems 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/127717 scsi [ata] [patch] [request] - support write cache toggling 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/120717 [ata] boot problem when recognizing ata1 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 f amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/116935 [ata] Intermittent error with Promise PDC40718 f kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 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 f kern/111196 [ata] [hang] SATA drives cause errors and cause system 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 s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 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/78758 [ata] [patch] Add support for re-sizing ATA disks o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 105 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- f 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/159271 [ataraid] [patch] "pseudo-raid" controllers does not w 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 6 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/143868 wireless [ath] [patch] [request] allow Atheros watchdog timeout 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 f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121061 sam [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 37 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis 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. 6 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/155004 net [bce] [panic] kernel panic in bce0 driver o kern/140051 yongari [bce] [arp] ARP not sent through Bridge Firewall with s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 5 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/155442 jhb [bge] bge driver is seen but does not respond to netwo o kern/136876 yongari [bge] bge will not resume properly after suspend 2 problems total. Problem reports for tag 'binutils': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. s gnu/35878 dim [binutils] strip(1) resets ABI type to FreeBSD 2 problems 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/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 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" a 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. 19 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159222 [boot0] unusual behavior writing boot0 from single use p bin/135918 luigi [boot0] [patch] Make BootEasy compatible with NT Drive 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/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 f kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 6 problems total. Problem reports for tag 'bsd.commands.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/159725 portmgr [bsd.commands.mk] Add new command: JOT 1 problem total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 1 problem total. Problem reports for tag 'bsd.java.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo 1 problem total. Problem reports for tag 'bsd.own.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/143831 [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependen 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161558 portmgr [bsd.port.mk] [patch] exp-run required for X11BASE rem o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/158962 portmgr [bsd.port.mk] Make EXTRACT_CMD more flexible-- support 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 o ports/148783 portmgr [bsd.port.mk] [patch] add LATEST_LINK and CONFLICTS to s ports/148695 portmgr [bsd.port.mk] [patch] Easier / automatic regression-te s ports/148637 portmgr [bsd.port.mk] Options are ignored for any port that de o ports/146496 portmgr [bsd.port.mk] [PATCH] Removing ${PORTSDIR} from depend f ports/146347 portmgr [patch] [bsd.port.mk] fix USE_DOS2UNIX info output 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 portmgr [bsd.port.mk] New opt-in knob to compile ports with SS o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 16 problems total. Problem reports for tag 'bsd.python.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken 1 problem total. Problem reports for tag 'bwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140066 net [bwi] install report for 8.0 RC 2 (multiple problems) 1 problem total. Problem reports for tag 'bwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall 2 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o kern/158351 [cam] [patch] missing #includes in o kern/153514 scsi [cam] [panic] CAM related panic s kern/149927 scsi [cam] hard drive not stopped before removing power dur o kern/148070 [cam] [panic] panic: _mtx_lock_sleep: recursed on non- a usb/143790 usb [boot] [cam] can not boot from usb hdd o kern/141934 scsi [cam] [patch] add support for SEAGATE DAT Scopion 130 o kern/138622 [cam] CAMIOCOMMAND ioctl failed: Inappropriate ioctl f o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard 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/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB s kern/85975 [cam] devfs does not create entries when removable med s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o bin/57088 scsi [cam] [patch] for a possible fd leak in libcam.c s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo f kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro 23 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 o kern/144572 net [carp] CARP preemption mode traffic partially goes to a kern/141023 glebius [carp] CARP arp replays with wrong src mac f kern/133218 glebius [carp] [hang] use of carp(4) causes system to freeze o 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 o kern/127050 glebius [carp] ipv6 does not work on carp interfaces [regressi o kern/126945 glebius [carp] CARP interface destruction with ifconfig destro o kern/126714 glebius [carp] CARP interface renaming makes system no longer o kern/125816 glebius [carp] [if_bridge] carp stuck in init when using bridg f kern/125442 glebius [carp] [lagg] CARP combined with LAGG causes system pa o kern/120130 glebius [carp] [panic] carp causes kernel panics in any conste o kern/117448 glebius [carp] 6.2 kernel crash [regression] o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) 16 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/114550 [cbb] Cardbus WiFi card activation problem 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 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159412 scsi [ciss] 7.3 RELEASE: ciss0 ADAPTER HEARTBEAT FAILED err o kern/153361 scsi [ciss] Smart Array 5300 boot/detect drive problem o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o kern/151564 scsi [ciss] ciss(4) should increase CISS_MAX_LOGICAL to 10 o kern/149219 [ciss] DL380 G6 P212 trouble o kern/146287 scsi [ciss] ciss(4) cannot see more than one SmartArray con o kern/144301 scsi [ciss] [hang] HP proliant server locks when using ciss o kern/132250 scsi [ciss] ciss driver does not support more then 15 drive o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o kern/115997 scottl [ciss] [panic] [patch?] kernel panics on heavy disk I/ 11 problems total. Problem reports for tag 'conf': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/160276 brueffer [conf] Spelling Mistake in comments in configure-files 1 problem total. Problem reports for tag 'coretemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158160 [coretemp] coretemp reports incorrect CPU temperature 1 problem total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f 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/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de 7 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac p kern/115695 [crypto] When "device padlock" defined first ssh to ma f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p 7 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 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/146759 np [cxgb] [patch] cxgb panic calling cxgb_set_lro() witho o kern/138381 np [cxgb] [patch] NULL pointer dereference in t3_set_tcb_ o kern/125806 np [cxgb] cxgb packet counters do not work 3 problems total. Problem reports for tag 'cy': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom 1 problem total. Problem reports for tag 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 [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 7 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 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/130107 imp [devctl] [patch] in devctl_queue_data(): possible use 1 problem total. Problem reports for tag 'devd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/120406 rc [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 [devfs] devfs doesn't handle complex paths (like zvol/ p kern/114057 jh [devfs] devfs symlink over device doesn't work o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media 4 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 o kern/119507 [dri] mach64.o kernel module version is 1.0.0, but ver 2 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153746 [drm] [panic] kernel crash with 2 X11 sessions on amd6 s kern/150514 kib [drm] [request] Reorganize DRM Directory to Support Dr p kern/149041 olli [drm] [patch] DRM support for Radeon HD 4250 o kern/114995 [drm] acpi_video prevents savage drm from loading succ 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 6 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160307 [dtrace] dtrace -lv can not identify the args of the o kern/159659 [dtrace] PID provider dies with: Trying sleep, but thr o kern/159612 [dtrace] walltimestamp and timestamp functions incompl o kern/159046 rwatson [dtrace] [patch] dtrace library is linked with a wrong o kern/159013 rwatson [dtrace] kldunload dtraceall crashing if userland dtra o bin/158431 [dtrace] crash in dt_proc_lookup when attaching to PID o kern/130998 [dtrace] DTrace stops tracing because of struct thread 7 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 ipfw [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 11 problems total. Problem reports for tag 'e1000': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/151409 yongari [e1000] Problem with Marvell driver, e1000phy.c 1 problem 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/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 f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 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 9 problems total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/152582 [em] request: merge em Intel Driver Upgrage to Version 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 o kern/146263 jfv [em] [panic] Panic in em(4) SIOCADDMULTI/em_set_multi/ 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 o kern/142518 jfv [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 amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp 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 50 problems total. Problem reports for tag 'endian': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/138737 bde [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 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w 1 problem 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/161940 pav [exp-run] poppler 0.18.0 o ports/160624 portmgr [exp-run] Process USE_ flags in both parts of bsd.port o ports/159117 portmgr [exp-run] Clang exp-run request. o ports/157769 miwi [exp-run] devel/bison update to 2.5 o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. f ports/153262 pgollucci [exp-run]: Death to FreeBSD 6, Long Live FreeBSD! 6 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159233 fs [ext2fs] [patch] fs/ext2fs: finish reallocblk implemen o kern/159232 fs [ext2fs] [patch] fs/ext2fs: merge ext2_readwrite into 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 5 problems total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149800 [fdc] [patch] "driver bug: Unable to set devclass (dev 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. o kern/66960 [fdc] [patch] filesystems not unmounted during reboot 11 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159971 fs [ffs] [panic] panic with soft updates journaling durin o kern/158711 fs [ffs] [panic] panic in ffs_blkfree and ffs_valloc o kern/136944 fs [ffs] [lor] bufwait/snaplk (fsync) o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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 9 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) f kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 2 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 simokawa [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/119575 sbruno [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t f kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume 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 14 problems total. Problem reports for tag 'flowtable': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155604 net [flowtable] Flowtable excessively caches dest MAC addr 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 4 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 'fusefs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160790 fs [fusefs] [panic] VPUTX: negative ref count with FUSE 1 problem 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 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 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/161486 geom [geli] GELI password entry is too visible 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 kern/157722 fs [geli] unable to newfs a geli encrypted partition 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 bin/116782 [geli] geli not updated on migrate from 6.1 to 6.2 rel o kern/115856 geom [geli] ZFS thought it was degraded when it should have o kern/111967 [geli] glabel - label is seemingly not written to disk 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/161752 geom [geom] glabel(8) doesn't get gpt label change o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o kern/159595 geom [geom] [panic] panic on gmirror unload in vbox [regres o kern/159091 geom [geom] GEOM fails to scan nested partitions to create 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/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin 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/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile 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 ( 42 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 o kern/144905 geom [geom][geom_part] panic in gpart_ctlreq when unpluggin 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 6 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f kern/108197 jinmei [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 12 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 'glxsb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec 1 problem 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 geom [gmirror] [panic] kernel panic when use fdisk on disk f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir f kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad 5 problems total. Problem reports for tag 'gpio': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p kern/114714 bz [gre] [patch] gre(4) is not MPSAFE and does not suppor o conf/111557 [gre] link1 flag doesn't work as intended when specifi p kern/85320 net [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 8 problems total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/161057 doc [handbook] Error in section 18.17.4 of the handbook o docs/160460 bcr [handbook] Network setup guide suggestion o docs/160447 doc [handbook] Developer's Handbook contains some outdated o docs/160446 doc [handbook] Handbook sound setup seems outdated o docs/160445 doc [handbook] Handbook does not mention ACL o docs/159897 doc [handbook] [patch] improve HAST section of Handbook o docs/159650 ryusuke [handbook] dumpdev variable was changed to "no" on Sep o docs/159374 brd [handbook] Difficulty following guide on configuring l o docs/159298 doc [handbook] document Konqueror with Webkit support to i o docs/157908 doc [handbook] Description of post-install should include o docs/157337 doc [handbook] [patch] Indentation changes to network serv 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/144543 chinsan [handbook] IPFW doc change 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 27 problems total. Problem reports for tag 'hast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158098 pjd [hast] problem with copying data on hast-device 1 problem 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/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/159916 [headers] stdarg.h doesn't have a lint version of va_c o kern/159279 [headers] [patch] __FreeBSD_cc_version in 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 amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA 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 jinmei [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 32 problems total. Problem reports for tag 'ipf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/106438 net [ipf] ipfilter: keep state does not seem to allow repl o kern/101948 net [ipf] [panic] Kernel Panic Trap No 12 Page Fault - cau o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o kern/87521 net [ipf] [panic] using ipfilter "auth" keyword leads to k o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o kern/77273 net [ipf] ipfilter breaks ipv6 statefull filtering on 5.3 s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o kern/34665 net [ipf] [hang] ipfilter rcmd proxy "hangs". o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 13 problems total. Problem reports for tag 'ipfilter': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/149937 net [ipfilter] [patch] kernel panic in ipfilter IP fragmen o kern/139565 net [ipfilter] ipfilter ioctl SIOCDELST broken o kern/139058 net [ipfilter] mbuf cluster leak on FreeBSD 7.2 o kern/138177 net [ipfilter] FreeBSD crashing repeatedly in ip_nat.c:257 o kern/131601 net [ipfilter] [panic] 7-STABLE panic in nat_finalise (tcp 5 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158066 ipfw [ipfw] ipfw + netgraph + multicast = multicast packets o kern/157796 ipfw [ipfw] IPFW in-kernel NAT nat loopback / Default Route o kern/157689 ipfw [ipfw] ipfw nat config does not accept nonexistent int o kern/156770 ipfw [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/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 ipfw [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. p kern/145733 bz [ipfw] [patch] ipfw flaws with ipv6 fragments f kern/144315 net [ipfw] [panic] freebsd 8-stable reboot after add ipfw o 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 f kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n p kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets 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 o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o kern/121122 ipfw [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 o kern/102471 ipfw [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 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 s kern/51341 remko [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 47 problems total. Problem reports for tag 'ipl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 2 problems total. Problem reports for tag 'ipmi': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 a kern/103041 [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 5 problems total. Problem reports for tag 'ipnat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127233 darrenr [ipnat]: ipnat + ipfilter source routing not handling o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/91908 darrenr [ipnat] loading ipl.ko to the kernel compiled with opt 3 problems total. Problem reports for tag 'ips': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/92164 scottl [ips] [lor] SCSI target mode LOR o kern/57832 scottl [ips] softdep_deallocate_dependencies: dangling deps 3 problems total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 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 26 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142766 bschmidt [ipw] [regression] ipw(4) with Intel PRO/wireless 2100 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 f kern/110140 bschmidt [ipw] ipw fails under load 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 7 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 kern/143837 [irq] [panic] nmi_calltrap in irq257: bce1 o kern/143521 [irq] [panic] nmi_calltrap in siopoll() 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 9 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/157770 scsi [iscsi] [panic] iscsi_initiator panic 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 -------------------------------------------------------------------------------- o kern/159414 mjacob [isp] isp(4)+gmultipath(8) : removing active fiber pat o kern/150367 [isp] Possible QLogic fiber channel regression in 8.1- o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/151441 bschmidt [iwi] iwi module not work properly using HP nc6220 o kern/144755 bschmidt [iwi] [panic] iwi panic when issuing /etc/rc.d/netif r 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 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161407 bschmidt [iwn] iwn panic on 9.0-BETA3 o kern/161293 wireless [iwn] hang at startup when starting network o kern/159768 bschmidt [iwn] [panic] iwn_auth being called with wrong ni_chan o kern/154826 bschmidt [iwn] iwn driver fails to power on adapter after resum f kern/153594 bschmidt [iwn] Network keeps disconnecting when /etc/rc.d/netif 5 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 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 9 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o conf/149050 jail [jail] rcorder ``nojail'' too coarse for Jail+VNET o kern/145444 secteam [jail] sysinstall and sade can access host's disks fro o conf/143084 rc [jail] [patch]: fix rc.d/jail creating stray softlinks o 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 o bin/32828 jail [jail] w(1) incorrectly handles stale utmp slots with s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai 18 problems 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/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 7 problems total. Problem reports for tag 'kern': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/161949 amd64 [kern] 64-bit structures are used even with 32-bit cod 1 problem total. Problem reports for tag 'kern.post.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o kern/159780 jonathan [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 o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o kern/154287 [kernel] [patch] Avoid malloc(0) implementation depend 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 p kern/145865 [kernel] [panic] kernel memory leak with disabled devd 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/138117 [kernel] [panic] spin lock held too long 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/119202 [kernel] [patch] Add generic support for disabling dev o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas p kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove 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 p kern/93331 [kernel] [patch] broken asm in kernel 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 s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/60550 silby [kernel] [patch] hitting process limits produces sub-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 f kern/29355 [kernel] [patch] add lchflags support 53 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 randi [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 kern/99538 [keyboard] [atkbdc] while using USB keyboard default p o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p 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 ( 23 problems total. Problem reports for tag 'kld': S Tracker Resp. Description -------------------------------------------------------------------------------- p docs/142938 wkoszek [kld] share/examples: fix warnings 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o kern/153254 [kqueue] [request] Please add API to kqueue(2) to noti o kern/149857 [kqueue] kqueue not reporting EOF under certain circum 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 12 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 'lagg': S Tracker Resp. Description -------------------------------------------------------------------------------- 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. o kern/142518 jfv [em] [lagg] Problem on 8.0-STABLE with em and lagg o kern/139117 net [lagg] + wlan boot timing (EBUSY) o kern/138620 net [lagg] [patch] lagg port bpf-writes blocked o kern/137089 net [lagg] lagg falsely triggers IPv6 duplicate address de f kern/125442 glebius [carp] [lagg] CARP combined with LAGG causes system pa 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 13 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 'libbsdxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157446 [libbsdxml] base expat needs minor fixes from vendor c 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161481 [libc] mount(2) fails with ENAMETOOLONG with path shor o kern/161425 [libc] Memory leak in localtime.c's tzload() 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 kern/155606 [libc] select() does not return EBADF on closed file d o kern/154915 [libc] [patch] Force stdio output streams to line-buff o bin/153502 [libc] regex(3) bug with UTF-8 locale o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor p bin/152551 gavin [libc] Remove unused variables. 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/150206 jh [libc] [patch] nmount(2): can't switch root partition a stand/149980 standards [libc] [patch] negative value integer to nanosleep(2) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c 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 s stand/141705 standards [libc] [request] libc lacks cexp (and friends) o kern/141682 [libc] [patch] Faster version of strncpy(3) a kern/140690 [libc] [patch] swab(3) with negative len should do not o kern/139734 [libc] res_send calls getsockname(2) instead of getpee o kern/139080 [libc] [patch] closelog() can close negative file desc o kern/137819 [libc] [patch] fpurge(3) violates stdio invariant 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 a bin/130504 [libc] Serious bug in regular expression library (rege o kern/128933 kib [libc] realpath(3) does not follow SUS specification f 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 p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under 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 p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o bin/99800 [libc] [patch] Add support for profiling multiple exec a bin/96840 [libc] [patch] getgrent() does not return large groups o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o bin/95002 [libc] hash db source code has a bug which prevents us o stand/94729 standards [libc] fcntl() throws undocumented ENOTTY 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 s kern/79048 [libc] realloc() copies data even when the size of all 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( a kern/59739 [patch] [libc] rmdir(2) and mkdir(2) both return EISDI p kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc 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 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 87 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/151379 [libcrypto] libcryptopp.so/libcrypto++.so and Shared O 1 problem 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 randi [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 -------------------------------------------------------------------------------- o 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/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature p bin/151866 des [libfetch] [patch] closing the cached FTP connection 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 6 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] ABI change without version bump in 8.2 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147454 [libgssapi] libgssapi (heimdal) broken in head/, stabl o kern/134010 [libgssapi][patch] Buffer overflow and use-after-free 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134249 [libiconv] [patch] ignore case for character set names s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems total. Problem reports for tag 'libipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/142741 bz [libipsec] [ipsec] Wrong use of constant PF_UNSPEC in 1 problem total. Problem reports for tag 'libkrb': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/29062 markm [libkrb] krb4 and krb5 multiply defined version symbol 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/152415 kargl [libm] implementation of expl() o kern/147599 [libm] [patch] Import netbsd complex functions into ou 2 problems 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 '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 bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from 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 13 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155370 [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 [libpcap] [patch] libpcap's parser doesn't recognize n 5 problems total. Problem reports for tag 'librpcsvc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa 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/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 3 problems total. Problem reports for tag 'libstdc++': 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 'libthr': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/157040 threads [libthr] valgrind detects leaks in libthr.so.3 1 problem 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/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 3 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 -------------------------------------------------------------------------------- o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc p kern/148646 des [linprocfs] [patch] Implementation of the "environ" fi p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs p kern/56451 des [linprocfs] [patch] /compat/linux/proc/cpuinfo gives w 4 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 emulation [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 s kern/21463 eadler [linux] Linux compatability mode should not allow setu 17 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o kern/159402 fs [zfs][loader] symlinks cause I/O errors o kern/158358 [loader] [patch] allow /boot/loader to work from an MB 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 o 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 brucec [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/109367 versus [locale] UTF8 encoded locales and problem collating ac p conf/105100 [patch] [locale] no support for lv (latvian) locale a conf/91106 versus [locale] date definitions in pl_PL locale are wrong 3 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/145040 [mac] PANIC_REBOOT_WAIT_TIME not honored o kern/137677 [mac] security.mac.bsdextended.firstmatch_enabled defa 2 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/150365 doc [make.conf] [patch] remove BDECFLAGS from make.conf(5) a bin/114082 [make.conf] [patch] default CFLAGS have a blank at the 2 problems total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/137145 andre [mbuf] [patch] Reference count computing isn't correct a kern/134355 andre [mbuf] comments for m_getm2 inconsistent with behaviou 2 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/154228 fs [md] md getting stuck in wdrain state 1 problem total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157293 [mfi] mfiutil/mfi does not allow adding a previously c o kern/156241 hardware [mfi] 'zfs send' does not prevents disks to suspend if o kern/155499 [mfi] mfi(4) command timeout loop on boot on releng/8. o kern/140416 [mfi] [patch] mfi driver stuck in timeout o kern/124989 [mfi] mfi driver error - unexpected sense 5 problems total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/139614 avg [minidump] minidumps fail when many interrupts fire o kern/118713 fs [minidump] [patch] Display media size required for a k 2 problems total. Problem reports for tag 'mips': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143564 [mly] camcontrol(8) fails to show transfer speed in ml s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o i386/55603 [mly] unable to reboot when system runs from Mylex A35 3 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 'mmcsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135485 [modules] [patch] During a shutdown, kernel modules sh 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 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo a kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k f kern/48976 gavin [modules] nwfs.ko oddity 7 problems total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 5 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/147704 scsi [mpt] sys/dev/mpt: new chip revision, partially unsupp o kern/145768 scsi [mpt] can't perform I/O on SAS based SAN disk in freeb o kern/142351 scsi [mpt] LSILogic driver performance problems o amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L 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/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri 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/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/117688 [mpt] mpt disk timeout and hang 14 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o 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 f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla 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/109024 fs [msdosfs] [iconv] mount_msdosfs: msdosfs_iconv: Operat o kern/109010 fs [msdosfs] can't mv directory within fat32 file system 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 p kern/70096 bde [msdosfs] [patch] full msdos file system causes corrup o kern/67326 rodrigc [msdosfs] crash after attempt to mount write protected o kern/62762 bde [msdosfs] Fsync for msdos fs does not sync entries 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 24 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160420 net [msk] phy write timeout on HP 5310m o kern/155010 net [msk] ntfs-3g via iscsi using msk driver cause kernel 2 problems total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/155680 net [multicast] problems with multicast o 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 'mutex': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131573 [mutex] lock_init() assumes zero-filled struct 1 problem total. Problem reports for tag 'mwl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146427 net [mwl] Additional virtual access points don't work on m o kern/146426 net [mwl] 802.11n rates not possible on mwl o kern/146425 net [mwl] mwl dropping all packets during and after high u 3 problems total. Problem reports for tag 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143046 gallatin [mxge] [panic] panics since mxge(4) update 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o kern/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 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: 3 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/157146 [ncurses] ncurses 5.8 to 5.9 update breaks erlang depe 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/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 p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 11 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/152569 net [net]: Multiple ppp connections and routing table prob o kern/149917 qingli [net] [patch] freebsd 8.1 crash with ECMP o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib o kern/106722 glebius [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 7 problems total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 rwatson [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161908 net [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 22 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 12 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o kern/100519 net [netisr] suggestion to fix suboptimal network polling 2 problems total. Problem reports for tag 'netrate': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/161368 [netrate] [patch] IPv6 patches for netblast/netsend/ne 1 problem total. Problem reports for tag 'network.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160892 [network.subr] [patch] add vboxnet[0-9]* to noafif lis 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 3 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161493 fs [nfs] NFS v3 directory structure update slow 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 f kern/156168 rmacklem [nfs] [panic] Kernel panic under concurrent access ove o kern/154255 net [nfs] NFS not responding o kern/153847 fs [nfs] [panic] Kernel panic from incorrect m_free in nf 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/148204 fs [nfs] UDP NFS causes overload o kern/147998 [nfs] [patch] NFS -mapall group permissions ignored wh 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 sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe 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 s kern/125149 pjd [nfs] [panic] changing into .zfs dir from nfs client c 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 bin/118318 mohans [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/81770 [nfs] Always "NFS append race" at every NFS mount with 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 a 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 a 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 [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 f kern/26142 vwe [nfs] Unlink fails on NFS mounted filesystem 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 72 problems 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_mppc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123045 net [ng_mppc] ng_mppc_decompress - disabling node 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 '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/71625 [patch] [nis] cleanup of the usr.sbin/rpc.ypupdated co 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 s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus 21 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/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 3 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/117314 fs [ntfs] Long-filename only NTFS fs'es cause kernel pani o kern/116515 rwatson [ntfs] NTFS mount does not check that user has permiss 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 12 problems total. Problem reports for tag 'null': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/139014 [null] /dev/null must be immunable to delete/unlink o kern/138526 [null] /dev/null does not support nonblocking operatio 2 problems total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161424 fs [nullfs] __getcwd() calls fail when used on nullfs mou o kern/159663 [socket] [nullfs] sockets don't work though 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) o kern/51583 fs [nullfs] [patch] allow to work with devices and socket 10 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/118990 yongari [nve] nve + PAE bus_addr_t/void * inconsistencies 1 problem 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 '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 -------------------------------------------------------------------------------- f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion 6 problems total. Problem reports for tag 'openbsm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu 1 problem 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 '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 '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 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 8 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 conf/160373 [pccard] [patch] pccard_ether does not take settings i o kern/147127 [pccard] [patch] Fix panic in pccard.c o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp 4 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 kern/139271 [pci] [patch] sysutils/hpacucli does not work on the a 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 o kern/65355 [pci] [patch] TC1000 serial ports need enabling 7 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 6 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160848 dougb [patch] [periodic] 310.accounting ignore $daily_accoun 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/70715 [periodic] Lack of year in dates in auth.log can cause o conf/47596 [periodic] daily security run complains if timezone ch o conf/35545 [periodic] [patch] enhanced periodic scripts: 100.clea 9 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o kern/160370 pf [pf] Incorrect pfctl check of pf.conf p kern/159390 bz [pf] [panic] mutex pf task mtx owned at /usr/src/sys/c p kern/159029 glebius [pf] [panic] m_copym, offset > size of mbuf chain when p kern/158873 bz [pf] [panic] When I launch pf daemon, I have a kernel 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/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 kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent f kern/132176 pf [pf] pf stalls connection when using route-to [regress o conf/130381 pf [rc.d] [pf] [ip6] ipv6 not fully configured when pf st o kern/129861 pf [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 o kern/127439 pf [pf] deadlock in pf f kern/127345 pf [pf] Problem with PF on FreeBSD7.0 [regression] 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/124364 pf [pf] [panic] Kernel panic with pf + bridge 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 s conf/110838 pf [pf] tagged parameter on nat not working on FreeBSD 5. 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/82271 pf [pf] cbq scheduler cause bad latency 49 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 -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161205 fs [nfs] [pfsync] [regression] [build] Bug report freebsd o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o kern/101794 [pfsync] Setting plip as syncdev for pfsync causes ker 4 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 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/93685 [pipe] select on pipe write fails from '0' end 1 problem 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 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138681 [pmap] [panic] repeatable kernel panic in pmap_remove_ 1 problem total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem 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 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 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 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 o conf/105689 rc [ppp] [request] syslogd starts too late at boot o 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 glebius [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 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 15 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/161043 [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/147237 [psm] [patch] There is no IBM/Lenovo TrackPoint suppor 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 16 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/151365 eadler [puc] [patch] Two new Moxa puc(4) devices p kern/142999 eadler [puc] [patch] add support for the I-O DATA RSA-PCI2/R o kern/142157 [ppc] [puc] Don't find Printer port at "NetMos NM9835 f kern/142085 gavin [puc] [patch] Few lines to pucdata.c to support for Te f kern/137436 eadler [puc] [patch] Fix puc driver to support newer Timedia o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po 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 f kern/43716 eadler [puc] [patch] puc driver does not recognize Lava Dual- 9 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/146162 [pxeboot] PXE loader(8) sets nfs_opts[] = "export" cau o 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 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161212 [radeon] [panic] Radeon 4650 on amd64 crashes kernel o o kern/138288 [radeon] RADEON(0): No valid MMIO address [regression] o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati 3 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f kern/117655 sam [ral] ral%d: device timeout when running as an access 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 19 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/143298 secteam [random] [patch] random_yarrow_block() doesn't actuall o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 2 problems total. Problem reports for tag 'rc': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 problems total. Problem reports for tag 'rc.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip 1 problem total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/154554 rc [rc.d] [patch] statd and lockd fail to start 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/145445 rc [rc.d] error in /etc/rc.d/jail (bad logic) o conf/145440 rc [rc.d] [patch] add multiple fib support (setfib) in /e o conf/144700 net [rc.d] async dhclient breaks stuff for too many people o conf/144213 rc [rc.d] [patch] Disappearing zvols on reboot o conf/141907 rc [rc.d] Bug if mtu (maybe others?) is set as first argu o conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137629 rc [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 conf/135338 rc [rc.d] pf startup order seems broken [regression] o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a 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 o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c 22 problems total. Problem reports for tag 'rc.subr': S Tracker Resp. Description -------------------------------------------------------------------------------- a conf/150752 dougb [rc.subr] [patch] be not needed to eval $_pidcmd on re 1 problem total. Problem reports for tag 'rctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161552 [rctl] [panic] kernel panic with RCTL option: racct_al 1 problem total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161381 net [re] RTL8169SC - re0: PHY write failed o kern/158201 yongari [re] re0 driver quit working on Acer AO751h between 8. o kern/157429 net [re] Realtek RTL8169 doesn't work with re(4) o kern/157287 net [re] [panic] INVARIANTS panic (Memory modified after f 4 problems 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 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150023 gavin [rl] Adding only vlan interfaces (no native IP) doesn' 1 problem total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161899 net [route] ntpd(8): Repeating RTM_MISS packets causing hi 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 5 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 [rpc] Sun RPC license has less restrictions now. f 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 s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux 7 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 '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) p bin/149464 jh [libc] [rtld] dlclose(3) can access freed memory and c 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 5 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 a kern/141696 virtualization[rum] [panic] rum(4)+ vimage = kernel panic 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 13 problems total. Problem reports for tag 'run': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/150189 usb [run] [usb8] [patch] if_run appears to corrupt IP traf o usb/144387 usb [run] [panic] if_run panic 2 problems total. Problem reports for tag 'sa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128452 scsi [sa] [panic] Accessing SCSI tape drive randomly crashe 1 problem total. Problem reports for tag 'safe': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/110662 sam [safe] safenet driver causes kernel panic 1 problem total. Problem reports for tag 'sbp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119572 [sbp] PowerBook not accessable when in target mode 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va 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 o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a 6 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/152599 [scheduler] scheduler issue - cpu overusage by 'intr' 1 problem total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128245 scsi [scsi] "inquiry data fails comparison at DV1 step" [re 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. 3 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 'sg': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120487 scsi [sg] scsi_sg incompatible with scanners 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/159647 [sio] device sio will not compile 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/119606 [sio] [patch] PCMCIA card not attached to driver o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/97665 [sio] hang in sio driver o kern/71198 [sio] Lack of puc(4) device in GENERIC kernel causes i o kern/51982 remko [sio] sio1: interrupt-level buffer overflows o kern/49039 [sio] [patch] add support for RS485 hardware where dir o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/26261 [sio] silo overflow problem in sio driver s kern/2298 [sio] [patch] [request] support for DSR/DCD swapping o 14 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/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/151845 fs [smbfs] [patch] smbfs should be upgraded to support Un 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/88266 fs [smbfs] smbfs does not implement UIO_NOCOPY and sendfi 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 27 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s f kern/158424 multimedia [snd_hda] snd_hda driver doesn't expose 'rec' flag for 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 10 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 kern/156726 multimedia [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/159663 [socket] [nullfs] sockets don't work though nullfs mou p kern/144061 rwatson [socket] race on unix socket close o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm 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 12 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/156433 avg [sound] [patch] OSS4/VPC is broken on 64-bit platforms o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th 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 p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se 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 f kern/115666 multimedia [sound] Microphone does not work 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/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi 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/90837 [sound] PCM - ICH6 - device is busy, but old process d o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full 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 59 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 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/140600 [swi] [panic] current process = 15 (swi1: net) o kern/139571 [swi] [panic] Fatal trap 12: page fault while in kerne 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 4 problems total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114597 scsi [sym] System hangs at SCSI bus reset with dual HBAs o kern/93128 scottl [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 4 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/160235 [syscons] [patch] Spanish Dvorak keyboard o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map 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/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q 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" 18 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/156658 [vm] [sysctl] sysctl vm.idlezero_enable=1 causes hangu o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [sysctl][patch] Document some sys/kern sysctls 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 10 problems total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/158686 virtualization[patch] [tap] Add VIMAGE support to if_tap o kern/123892 net [tap] [patch] No buffer space available o kern/117271 net [tap] OpenVPN TAP uses 99% CPU on releng_6 when if_tap 3 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/159795 net [tcp] excessive duplicate ACKs and TCP session freezes o kern/159621 net [tcp] [panic] panic: soabort: so_count o kern/155585 net [tcp] [panic] tcp_output tcp_mtudisc loop until kernel o kern/155407 lstewart [tcp] Exhausted net.inet.tcp.reass.maxsegments block r 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 20 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 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/159418 fs [tmpfs] [panic] tmpfs kernel panic: recursing on non r o kern/155411 fs [regression] [8.2-release] [tmpfs]: mount: tmpfs : No p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode p kern/141194 jh [tmpfs] tmpfs treats the size option as mod 2^32 o kern/139597 fs [patch] [tmpfs] tmpfs initializes va_gen but doesn't u p kern/139312 delphij [tmpfs] [patch] tmpfs mmap synchronization bug p kern/138367 jh [tmpfs] [panic] 'panic: Assertion pages > 0 failed' wh p kern/122038 delphij [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 8 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/161175 [tools] [patch] uninitialized variables on some regres o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/160866 [tools] [patch] Swapped arguments in fifo_misc.c 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 6 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 'tun': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 5 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 'u3g': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149764 usb [u3g] [patch] usbdevs update: Huawei K3765 3G modem 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 f kern/131933 eadler [uart] [patch] add support for Sony Ericsson GC89 EDGE o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 9 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 '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 f usb/77294 usb [ucom] [panic] ucom + ulpcom panic 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 11 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/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected 2 problems 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 o kern/60089 scottl [udf] UDF filesystem appends garbage to files 4 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 ... p kern/127057 bz [udp] Unable to send UDP packet via IPv6 socket to IPv 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 5 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161864 fs [ufs] removing journaling from UFS partition fails on o kern/161674 fs [ufs] snapshot on journaled ufs doesn't work o kern/161112 fs [ufs] [lor] filesystem LOR in FreeBSD 9.0-BETA3 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 o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 34 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/149900 usb [uftdi] [patch] FreeBSD 8.1 uftdi patch to support usb 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 o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 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/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/67301 usb [uftdi] [panic] RTS and system panic 10 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/154710 usb [ugen] Conexant USB Modem is not working in 8.x. In 7. 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/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated 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 8 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory f usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 3 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 3 problems total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no 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 p usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does f usb/102066 gavin [ukbd] usb keyboard and multimedia keys don't work o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar 13 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 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele 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 11 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/138876 [uma] [panic] UMA: page_free used with invalid flags 4 o kern/85971 jeff [uma] [patch] minor optimization to uma 2 problems 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/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/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB 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 a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2 o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/131583 usb [umass] Failure when detaching umass Device o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/123508 vwe [umass] [msdosfs] damaged files (mp3,txt , etc) on fla 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 kern/114667 [umass] UMASS device error log problem o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca 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 f usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) f usb/74771 usb [umass] [hang] mounting write-protected umass device a 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 o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes 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 63 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 p usb/117185 thompsa [umodem] [patch] Add support for UNION interface descr 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 4 problems total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 13 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161511 fs [unionfs] Filesystem deadlocks when using multiple uni o kern/156039 fs [nullfs] [unionfs] nullfs + unionfs do not compose, re o kern/145750 daichi [unionfs] [hang] unionfs locks the machine o kern/141950 daichi [unionfs] [lor] ufs/unionfs/ufs Lock order reversal o kern/137588 daichi [unionfs] [lor] LOR nfs/ufs/nfs o kern/132987 daichi [unionfs] unionfs_readdir has math problem 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 daichi [unionfs] [hang] System hang with unionfs and init chr o kern/126553 daichi [unionfs] unionfs move directory problem 2 (files appe o bin/123574 daichi [unionfs] df(1) -t option destroys info for unionfs (a o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo 13 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/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 f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke 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/155496 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o usb/132080 usb [patch] [usb] [rum] [panic] Kernel panic after NOMEM c o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El 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 s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa 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 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel 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 s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 21 problems total. Problem reports for tag 'usb67': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/147516 usb [umass] [usb67] kernel unable to deal with Olympus USB o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533 o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone o kern/141658 [panic] [usb67] Kernel panics when inserting a USB key o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is f usb/137872 usb [usb67] [boot] slow booting on usb flash drive o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis o usb/130230 usb [patch] [quirk] [usb67] [usb] [cam] [umass] Samsung El o usb/128977 usb [usb67] [patch] uaudio is not full duplex s usb/122819 usb [usb67] [patch] Patch to provide dynamic additions to o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection f usb/113672 gavin [usb67] [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in s usb/112944 gavin [usb67] [ulpt] [patch] Bi-directional access to HP Las o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated f usb/108056 gavin [usb67] [ohci] Mouse gets powered off during probe whe f usb/107848 gavin [usb67] [umass] cannot access Samsung flash disk o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found f usb/107496 gavin [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/107248 gavin [usb67] [cam] [quirk] [patch] quirk for Cowon iAUDIO X f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 f usb/106832 gavin [usb67] [usb] USB HP printer is not detected by kernel f usb/106648 gavin [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang f usb/106615 gavin [usb67] [uftdi] uftdi module does not automatically lo o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu f usb/105065 gavin [usb67] [umass] transfer speed of external drive enclo f usb/104645 gavin [usb67] [umass] [request] Rave C-201 MP3 player does n f usb/104290 gavin [usb67] [umass] [patch] [quirk] TOSHIBA DVD-RAM drive s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele f usb/102678 gavin [usb67] [ukbd] Dell PowerEdge DRAC5 USB Keyboard does o usb/101752 gavin [usb67] [umass] [panic] 6.1-RELEASE kernel panic on Ca f usb/101448 gavin [usb67] [ohci] FBSD 6.1-STABLE/AMD64 crashes under hea f usb/101096 gavin [usb67] [ural] [panic] USB WLAN occasionally causes ke o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o kern/99200 usb [usb67] SMP-Kernel crashes reliably when Bluetooth con 45 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 p usb/149934 usb [patch] [usb8] Transcend JetFlash V85 poor performance s usb/148702 usb [usb8] [request] IO DATA USB-RSAQ5 support on FreeBSD- p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo 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 a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass 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 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is 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 o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil 58 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o usb/153599 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync p usb/146871 usb [usbdevs] [usb8] [patch] provide descriprive string fo p usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google p usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/118485 gavin [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches f usb/106861 gavin [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 10 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 'vbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161419 vbox [loader] [vbox] FreeBSD 9.0beta3 under Virtualbox: pag o amd64/161418 vbox [panic] [vbox] FreeBSD 9.0beta3 under Virtualbox: lost o ports/151603 vbox [vbox] Self-built emulators/virtualbox-ose-kmod vboxne o kern/140453 vbox [sound] [vbox] No sound inside Virtualbox on 50% volum 4 problems 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/144695 [vfs] [patch] race condition in mounting a root-fs on o kern/142878 fs [zfs] [vfs] lock order reversal o kern/142083 [vfs] buffer overflow in vfs_mountroot_try (sys/kern/v o kern/140429 [vfs] [panic] Fatal trap 12: page fault while in kerne 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 8 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125710 [vga] Dragon_Saver Error 19 Freebsd 7.0 AMD64 o kern/64114 [vga] [patch] bad vertical refresh for console using R 2 problems total. Problem reports for tag 'vimage': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161094 virtualization[vimage] [panic] kernel panic with pf + VIMAGE when st o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x a kern/152047 virtualization[vimage] [panic] TUN\TAP under jail with vimage crashe o kern/148155 virtualization[vimage] Kernel panic with PF/IPFilter + VIMAGE kernel a kern/147950 virtualization[vimage] [carp] VIMAGE + CARP = kernel crash 5 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/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 o 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 12 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 jmg [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 12 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 4 problems total. Problem reports for tag 'vuxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/161759 secteam [vuxml] security/vuxml: bid misreference 1 problem total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/150052 bschmidt [wi] wi(4) driver does not work with wlan(4) driver fo f kern/143074 bschmidt [wi]: wi driver triggers panic 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 s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa 12 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/140346 net [wlan] High bandwidth use causes loss of wlan connecti 4 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/159203 net [wpi] Intel 3945ABG Wireless LAN not support IBSS o kern/156322 wireless [wpi] no ahdemo support for if_wpi f kern/147862 bschmidt [wpi] Possible bug in the wpi driver. Network Manager o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using f kern/143595 bschmidt [wpi] [panic] Creating virtual interface over wpi0 in f kern/139079 bschmidt [wpi] Failure to attach wpi(4) f kern/138739 bschmidt [wpi] wpi(4) does not work very well under 8.0-BETA4 o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 f kern/128917 bschmidt [wpi] [panic] if_wpi and wpa+tkip causing kernel panic f kern/121872 bschmidt [wpi] driver fails to attach on a fujitsu-siemens s711 10 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/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/153789 xen [xen] [regression] FreeBSD 8.2-RC1 crashes under Solar 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 23 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/153680 fs [xfs] 8.1 failing to mount XFS partitions o kern/145411 fs [xfs] [panic] Kernel panics shortly after mounting an p kern/119298 kan [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul 4 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129352 yongari [xl] [patch] xl0 watchdog timeout s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 2 problems total. Problem reports for tag 'xpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/154432 scsi [xpt] run_interrupt_driven_hooks: still waiting after 1 problem total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/161897 fs [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, p kern/156218 pjd [zfs] IO on ZFS filesystems does not register in top(1 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/154447 fs [zfs] [panic] Occasional panics - solaris assert somew 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/153520 fs [zfs] Boot from GPT ZFS root on HP BL460c G1 unstable 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 [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/151111 fs [zfs] vnodes leakage during zfs unmount 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 " o kern/147560 fs [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/141305 fs [zfs] FreeBSD ZFS+sendfile severe performance issues ( 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 o kern/139564 fs [zfs] [panic] 8.0-RC1 - Fatal trap 12 at end of shutdo 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 f kern/127375 fs [zfs] If vm.kmem_size_max>"1073741823" then write spee s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS f sparc/123566 fs [zfs] zpool import issue: EOVERFLOW 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 103 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 weongyo [zyd] [usb8] "zyd0: device timeout" with ZyXEL G-202 f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 5 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 13:26:10 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45A01106564A; Mon, 24 Oct 2011 13:26:10 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from adsum.doit.wisc.edu (adsum.doit.wisc.edu [144.92.197.210]) by mx1.freebsd.org (Postfix) with ESMTP id 199278FC13; Mon, 24 Oct 2011 13:26:09 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth1.wiscmail.wisc.edu by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTK00I0GNZLD400@smtpauth1.wiscmail.wisc.edu>; Mon, 24 Oct 2011 08:26:09 -0500 (CDT) Received: from comporellon.tachypleus.net (adsl-75-50-90-239.dsl.mdsnwi.sbcglobal.net [75.50.90.239]) by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTK008YINZJ2610@smtpauth1.wiscmail.wisc.edu>; Mon, 24 Oct 2011 08:26:08 -0500 (CDT) Date: Mon, 24 Oct 2011 08:26:07 -0500 From: Nathan Whitehorn In-reply-to: <21148.1319446588@critter.freebsd.dk> To: Poul-Henning Kamp Message-id: <4EA5676F.4000205@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=75.50.90.239 X-Spam-PmxInfo: Server=avs-9, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.24.131514, SenderIP=75.50.90.239 References: <21148.1319446588@critter.freebsd.dk> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 13:26:10 -0000 On 10/24/11 03:56, Poul-Henning Kamp wrote: > In message<4EA47456.7090008@freebsd.org>, Nathan Whitehorn writes: >> On 10/23/11 13:15, Poul-Henning Kamp wrote: >> There's not actually too much need for them, and so they never seemed >> pressing. Pressing control-C/choosing "cancel"/etc. will either skip >> steps that can be returned to later (post-extraction) or return to the >> beginning of the installation, which is where you already were, > Let me just note that neither the overall structure nor where I would > end up by pressing Ctrl-C was not even remotely obvious to this > particular user. Well, that can probably be improved. Robert Bonomi's suggestion was very good as well, and I'll see what can be done there. There are a few related things, as well. >>>>> Active partition is the last one created ? >>>>> There is no place I can see it ? >>>>> There is no place I can change it ? >>>> Active partition is the last bootable (e.g. freebsd) partition you >>>> created, yes. >>> That is *totally* bogus, at the very least, make it the first one. >> The UI problem is actually hard, and the correct solution without a UI >> solution is non-obvious. The usual use case, where only one MBR >> partition of type freebsd is added, works perfectly well. I'll try to >> find a reasonable solution to this, but have very little time at the >> moment -- patches would be much appreciated. > The fact that is is hard to do right, seems an incredibly lousy > excuse for doing something totally counter-intutive. Well, I didn't find it counterintuitive, but it is a lousy excuse. > Systems with more than one MBR partition are quite common in the > wild in my experience. But more than one FreeBSD MBR partition, with a label inside it? > How about you set the active flag on whatever parition contains the > / filesystem as part of final cleanup ? > > I'm not going to be sending patches: I solved this problem once > according to the priorities at the time, you get to solve it this > time :-) > > My input should simply count as a single old grumbling fart, and > if you think he is totally out of touch, you get to ignore him. > Well, you're a grumbling old fart who's usually right. The behavior right now is that any sub-partitioning that you do in the installer gets marked active. It's a little more complicated to turn the install bootcode flag on only if a sub-partition is root, but not much, so that sounds like a good solution. -Nathan From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 16:40:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C408106566C; Mon, 24 Oct 2011 16:40:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 23F358FC08; Mon, 24 Oct 2011 16:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OGeAem040795; Mon, 24 Oct 2011 16:40:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OGe9EF040790; Mon, 24 Oct 2011 16:40:10 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 16:40:10 GMT Message-Id: <201110241640.p9OGe9EF040790@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-jail@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161957: jls(8): jls -v doesn't show anything if system compiled with WITHOUT_INET6 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 16:40:10 -0000 Old Synopsis: jls -v doesn't show anything if system compiled with WITHOUT_INET6 New Synopsis: jls(8): jls -v doesn't show anything if system compiled with WITHOUT_INET6 Responsible-Changed-From-To: freebsd-bugs->freebsd-jail Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 24 16:39:27 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=161957 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 19:50:01 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A50F106566B for ; Mon, 24 Oct 2011 19:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF4148FC14 for ; Mon, 24 Oct 2011 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OJo0Sr014634 for ; Mon, 24 Oct 2011 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OJo09d014633; Mon, 24 Oct 2011 19:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 19:50:00 GMT Resent-Message-Id: <201110241950.p9OJo09d014633@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, Leander Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D70F3106566C for ; Mon, 24 Oct 2011 19:41:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C7B3B8FC0C for ; Mon, 24 Oct 2011 19:41:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OJfcfM040963 for ; Mon, 24 Oct 2011 19:41:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9OJfcoL040961; Mon, 24 Oct 2011 19:41:38 GMT (envelope-from nobody) Message-Id: <201110241941.p9OJfcoL040961@red.freebsd.org> Date: Mon, 24 Oct 2011 19:41:38 GMT From: Leander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161979: GEOM: glabel issue X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 19:50:01 -0000 >Number: 161979 >Category: misc >Synopsis: GEOM: glabel issue >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 19:50:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Leander >Release: FreeBSD 9.0-RC1 >Organization: Privat >Environment: 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:30:38 UTC 2011 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: glabel doesn't update unless one does "true > /dev/da1p1" after a i.e. "newfs -L Storage /dev/da1p1" or gpt modify etc… + glabel status only sporadically shows labels. some disapear when being used by i.e. mount … some don't … P.S. This issue is related to: http://www.freebsd.org/cgi/query-pr.cgi?pr=161752 >How-To-Repeat: gpart destroy -F da1 gpart create -s GPT da1 gpart add -l 'StoragePart' -t freebsd-ufs da1 newfs -L Storage gpt/Storage glabel status true > /dev/da1p1 glabel status P.S. This issue is related to: http://www.freebsd.org/cgi/query-pr.cgi?pr=161752 >Fix: true > /dev/da1p1 Must in my opinion be done automatically by the application itself which does the change to the GEOM. No offence, but some arguments to implement "true > $DevicePart" into the affected GEOM apps: o Can't expect a regular user to change that if he/she/it uses Hot Plug & Play or changes a label through one of the GEOM apps. o Nether is it documented in any of the apps relying on GEOM [please don't start documenting it - that's not the right way! ;) ] o What's the use of a framework if it doesn't provide internal a working interface to update relying apps of changes? P.S. This issue is related to: http://www.freebsd.org/cgi/query-pr.cgi?pr=161752 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 21:10:02 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E179106566C for ; Mon, 24 Oct 2011 21:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 082018FC1F for ; Mon, 24 Oct 2011 21:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OLA1hO087896 for ; Mon, 24 Oct 2011 21:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OLA10K087895; Mon, 24 Oct 2011 21:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 21:10:01 GMT Resent-Message-Id: <201110242110.p9OLA10K087895@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, mark voltz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D94C91065674 for ; Mon, 24 Oct 2011 21:07:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8068D8FC16 for ; Mon, 24 Oct 2011 21:07:00 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OL70NH005474 for ; Mon, 24 Oct 2011 21:07:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9OL70EI005473; Mon, 24 Oct 2011 21:07:00 GMT (envelope-from nobody) Message-Id: <201110242107.p9OL70EI005473@red.freebsd.org> Date: Mon, 24 Oct 2011 21:07:00 GMT From: mark voltz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161982: hal daemon does not load 9.0rc1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 21:10:02 -0000 >Number: 161982 >Category: misc >Synopsis: hal daemon does not load 9.0rc1 >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: Mon Oct 24 21:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: mark voltz >Release: 9.0 RC-1 >Organization: >Environment: FreeBSD f9 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:51:43 UTC 2011 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: HAL doesn't load after installation. DBUS is loaded/running. It appears to be looking for an old libcam file. output: f9# /usr/local/etc/rc.d/hald start Starting hald. f9# Shared object "libcam.so.5" not found, required by "hald" f9# locate libcam.so /lib/libcam.so.6 /usr/lib/libcam.so /usr/lib32/libcam.so /usr/lib32/libcam.so.6 >How-To-Repeat: pkg_add -r hal /usr/local/etc/rc.d/hald >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 22:27:29 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CA2F1065670; Mon, 24 Oct 2011 22:27:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D8AC88FC0A; Mon, 24 Oct 2011 22:27:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OMRS8e061049; Mon, 24 Oct 2011 22:27:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OMRSZv061045; Mon, 24 Oct 2011 22:27:28 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 22:27:28 GMT Message-Id: <201110242227.p9OMRSZv061045@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/161979: [geom] glabel doesn't update after newfs, and glabel status is flaky X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 22:27:29 -0000 Old Synopsis: GEOM: glabel issue New Synopsis: [geom] glabel doesn't update after newfs, and glabel status is flaky Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 24 22:25:49 UTC 2011 Responsible-Changed-Why: Write a better Synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=161979 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 09:10:02 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C4A1106566B for ; Tue, 25 Oct 2011 09:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E94918FC13 for ; Tue, 25 Oct 2011 09:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9P9A11x091077 for ; Tue, 25 Oct 2011 09:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9P9A1HP091076; Tue, 25 Oct 2011 09:10:01 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 09:10:01 GMT Resent-Message-Id: <201110250910.p9P9A1HP091076@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, Dennis Yusupoff Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB505106566C for ; Tue, 25 Oct 2011 09:07:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CB9058FC14 for ; Tue, 25 Oct 2011 09:07:05 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9P975HU074117 for ; Tue, 25 Oct 2011 09:07:05 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9P974mr074116; Tue, 25 Oct 2011 09:07:04 GMT (envelope-from nobody) Message-Id: <201110250907.p9P974mr074116@red.freebsd.org> Date: Tue, 25 Oct 2011 09:07:04 GMT From: Dennis Yusupoff To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161986: Interface auto-width in "netstat -rn" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 09:10:02 -0000 >Number: 161986 >Category: bin >Synopsis: Interface auto-width in "netstat -rn" >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: Tue Oct 25 09:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dennis Yusupoff >Release: 7,8 and 9 >Organization: SmartTelecom >Environment: No matter :) >Description: Currently there are two version of "netstat -rn" - "wide" and "usual". Wide is turning on by option "-W" and show additional information about routes (only for IPv4 family, as I understand route.c) - MTU and the full interface name(limited, however, by 8 symbols). In "usual" mode Netif limited by 6 symbols, which definitly isn't enough for VLAN interfaces: === netstat -rn| head -n6 Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 217.119.16.33 UGS 0 2147187618 em0 10.1.0.0/16 10.78.77.9 UG1 0 0 vlan30 === === netstat -Wrn| head -n6 Routing tables Internet: Destination Gateway Flags Refs Use Mtu Netif Expire default 217.119.16.33 UGS 0 2147115775 1500 em0 10.1.0.0/16 10.78.77.9 UG1 0 0 1500 vlan3050 === I think, that truncating Netif is absolutely incorrect and easily confusing most FreeBSD users. So I propose: 1. Limit wid_if by getting width of longest netif name (i.e. automatically, on-the-fly) 2.1 Show full netif by default or: 2.2 Add special "truncated" symbol at the end of Netif, for example ">", like that: === Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 217.119.16.33 UGS 0 2147187618 em0 10.1.0.0/16 10.78.77.9 UG1 0 0 vlan30> === >How-To-Repeat: >Fix: Don't know C as should, but it looks like it might be easily patch route.c >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 12:40:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3374D1065676 for ; Tue, 25 Oct 2011 12:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 01D398FC13 for ; Tue, 25 Oct 2011 12:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PCe86R094591 for ; Tue, 25 Oct 2011 12:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PCe8pS094590; Tue, 25 Oct 2011 12:40:08 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 12:40:08 GMT Resent-Message-Id: <201110251240.p9PCe8pS094590@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, Thomas Schweikle Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC8D2106566B for ; Tue, 25 Oct 2011 12:37:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CC0648FC0A for ; Tue, 25 Oct 2011 12:37:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PCbv2R067907 for ; Tue, 25 Oct 2011 12:37:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PCbvJt067906; Tue, 25 Oct 2011 12:37:57 GMT (envelope-from nobody) Message-Id: <201110251237.p9PCbvJt067906@red.freebsd.org> Date: Tue, 25 Oct 2011 12:37:57 GMT From: Thomas Schweikle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161995: dlopen present but libtool doesn't appear to support your platform X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 12:40:11 -0000 >Number: 161995 >Category: misc >Synopsis: dlopen present but libtool doesn't appear to support your platform >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 25 12:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Thomas Schweikle >Release: 10-CURRENT >Organization: >Environment: FreeBSD yum.fritz.box 10.0-CURRENT FreeBSD 10.0-CURRENT #26: Mon Oct 24 20:34:11 CEST 2011 root@yum.fritz.box:/usr/obj/usr/src/sys/YUM i386 >Description: checking for ldapssl_init... no checking for ldapssl_set_strength... no checking for ldap_unbind_ext_s... yes checking for ldap_str2dn... yes checking for ldap_create... yes checking for ldap_sasl_bind_s... yes checking for ldap_ssl_client_init... no checking for ldap_start_tls_s_np... no checking for ldap_search_ext_s... yes configure: error: "dlopen present but libtool doesn't appear to support your platform." ===> Script "configure" failed unexpectedly. Please report the problem to wxs@FreeBSD.org [maintainer] and attach the "/usr/ports/security/sudo/work/sudo-1.8.3/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/security/sudo. *** Error code 1 Stop in /usr/ports/security/sudo. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20111025-67314-17dcn1w-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=sudo-1.8.2 UPGRADE_PORT_VER=1.8.2 make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! security/sudo (sudo-1.8.2) (configure error) >How-To-Repeat: #portupgrade -rf sudo >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 13:14:21 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE4CE106564A; Tue, 25 Oct 2011 13:14:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C60D08FC12; Tue, 25 Oct 2011 13:14:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PDELiS030046; Tue, 25 Oct 2011 13:14:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PDEL1V030042; Tue, 25 Oct 2011 13:14:21 GMT (envelope-from linimon) Date: Tue, 25 Oct 2011 13:14:21 GMT Message-Id: <201110251314.p9PDEL1V030042@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/161956: [nullfs] [hang] filesystem lock with mount nullfs in random cases X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 13:14:22 -0000 Old Synopsis: filesystem lock with mount nullfs in random cases New Synopsis: [nullfs] [hang] filesystem lock with mount nullfs in random cases Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 25 13:14:04 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=161956 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 13:17:37 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B9371065670; Tue, 25 Oct 2011 13:17:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7CEA8FC08; Tue, 25 Oct 2011 13:17:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PDHa8t030617; Tue, 25 Oct 2011 13:17:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PDHa2S030613; Tue, 25 Oct 2011 13:17:36 GMT (envelope-from linimon) Date: Tue, 25 Oct 2011 13:17:36 GMT Message-Id: <201110251317.p9PDHa2S030613@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/161982: sysutils/hal: hal daemon does not load 9.0rc1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 13:17:37 -0000 Old Synopsis: hal daemon does not load 9.0rc1 New Synopsis: sysutils/hal: hal daemon does not load 9.0rc1 Responsible-Changed-From-To: freebsd-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 25 13:16:47 UTC 2011 Responsible-Changed-Why: make this a ports PR and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=161982 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 13:19:47 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 620FE106568D; Tue, 25 Oct 2011 13:19:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 39C168FC20; Tue, 25 Oct 2011 13:19:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PDJlHM031043; Tue, 25 Oct 2011 13:19:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PDJlOS031039; Tue, 25 Oct 2011 13:19:47 GMT (envelope-from linimon) Date: Tue, 25 Oct 2011 13:19:47 GMT Message-Id: <201110251319.p9PDJlOS031039@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, wxs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/161995: security/sudo: dlopen present but libtool doesn't appear to support your platform X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 13:19:47 -0000 Old Synopsis: dlopen present but libtool doesn't appear to support your platform New Synopsis: security/sudo: dlopen present but libtool doesn't appear to support your platform Responsible-Changed-From-To: freebsd-bugs->wxs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 25 13:18:51 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=161995 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 13:24:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CE91106564A; Tue, 25 Oct 2011 13:24:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34A8F8FC13; Tue, 25 Oct 2011 13:24:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PDO4dq039251; Tue, 25 Oct 2011 13:24:04 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PDO4B7039247; Tue, 25 Oct 2011 13:24:04 GMT (envelope-from linimon) Date: Tue, 25 Oct 2011 13:24:04 GMT Message-Id: <201110251324.p9PDO4B7039247@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/161949: [kern] 64-bit structures are used even with 32-bit code X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 13:24:04 -0000 Synopsis: [kern] 64-bit structures are used even with 32-bit code Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 25 13:22:25 UTC 2011 Responsible-Changed-Why: reclassify this one to see if that gets it a wider audience. http://www.freebsd.org/cgi/query-pr.cgi?pr=161949 From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 17:00:20 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0F2A10656A9 for ; Tue, 25 Oct 2011 17:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 564E28FC21 for ; Tue, 25 Oct 2011 17:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PH0Ksj034616 for ; Tue, 25 Oct 2011 17:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PH0Kd5034606; Tue, 25 Oct 2011 17:00:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 17:00:20 GMT Resent-Message-Id: <201110251700.p9PH0Kd5034606@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, Robert Millan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 765691065680 for ; Tue, 25 Oct 2011 16:53:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 65E298FC0A for ; Tue, 25 Oct 2011 16:53:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PGrXNi073222 for ; Tue, 25 Oct 2011 16:53:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PGrW67073205; Tue, 25 Oct 2011 16:53:33 GMT (envelope-from nobody) Message-Id: <201110251653.p9PGrW67073205@red.freebsd.org> Date: Tue, 25 Oct 2011 16:53:33 GMT From: Robert Millan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162008: [zfs] Latest 9-STABLE and 10-CURRENT fail to boot from ZFS v15 root X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 17:00:20 -0000 >Number: 162008 >Category: kern >Synopsis: [zfs] Latest 9-STABLE and 10-CURRENT fail to boot from ZFS v15 root >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 25 17:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Robert Millan >Release: Debian GNU/kFreeBSD "sid" >Organization: >Environment: see description >Description: With both 9-STABLE and 10-CURRENT, since recently the kernel is no longer able to boot from my ZFS pool as root file system. The on-disk pool is ZFS version 15 and was created with 8.2 kernel. I've bisected the problem in stable/9/sys/ and found that it'd been introduced by r226405 (commit that disables debug options in GENERIC), which is obviously just exposing the bug and not causing it. Ironically, in head/sys/ the same problem is present but disappears when removing the debug options. If I attempt to replicate the disk (by creating a new v15 pool and zfs send/receive'ing the data), the destination ZFS pool is bootable unlike the source one. This makes me suspect the problem has something to do with /boot/zfs/zpool.cache. I'm currently dd'ing the raw partition to another disk to check if the pool can be imported/exported manually, and if "zpool upgrade" has any effect on the problem (I don't want to risk losing the testcase). Please let me know if there's anything else I can try. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 17:10:15 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B9D4106568B for ; Tue, 25 Oct 2011 17:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEFAB8FC18 for ; Tue, 25 Oct 2011 17:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PHAE26043451 for ; Tue, 25 Oct 2011 17:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PHAEn3043450; Tue, 25 Oct 2011 17:10:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 17:10:14 GMT Resent-Message-Id: <201110251710.p9PHAEn3043450@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, Harry Coin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 146081065677 for ; Tue, 25 Oct 2011 17:02:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DF1988FC12 for ; Tue, 25 Oct 2011 17:02:43 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PH2hq4086735 for ; Tue, 25 Oct 2011 17:02:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PH2h3B086734; Tue, 25 Oct 2011 17:02:43 GMT (envelope-from nobody) Message-Id: <201110251702.p9PH2h3B086734@red.freebsd.org> Date: Tue, 25 Oct 2011 17:02:43 GMT From: Harry Coin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162009: getpwnam_r buf too small nfs assigns root:user to krb5 clients X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 17:10:15 -0000 >Number: 162009 >Category: kern >Synopsis: getpwnam_r buf too small nfs assigns root:user to krb5 clients >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 25 17:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Harry Coin >Release: 8 stable >Organization: Quiet Fountain LLC >Environment: amd64 >Description: On nfs shares serving kerberos protected accounts, freebsd will assign to files of normal users the ownership root:user. About as major a security hole as you can expect. >How-To-Repeat: nfs share a directory requiring the use of kerberos. Make sure the principal name maps to a user with a long name and plenty of gecos and other info in the structures relevant to getpw*_r. Mount the directory on a client. Log into the client as a normal user. Create a file on mount. Note the ownership of the file is root:user. >Fix: grep -r 'getpw*_r' /usr/src. Start hunting. I found some previously mentioned in bug reports. Here's another 2. Basically the problem is 128 byte buffer too small to hold what getpwnam_r returns, plus inadequate error processing (i.e. no log, no user notification...) patch -p diff -u /usr/src/lib/librpcsec_gss/svc_rpcsec_gss.c new/svc_rpcsec_gss.c --- /usr/src/lib/librpcsec_gss/svc_rpcsec_gss.c 2010-01-30 06:11:21.000000000 -0600 +++ new/svc_rpcsec_gss.c 2011-10-25 11:31:13.549499272 -0500 @@ -562,7 +562,7 @@ const gss_name_t name) { OM_uint32 maj_stat, min_stat; - char buf[128]; + char buf[2048]; uid_t uid; struct passwd pwd, *pw; rpc_gss_ucred_t *uc = &client->cl_ucred; diff -u /usr/src/lib/libarchive/archive_write_disk_set_standard_lookup.c new/archive_write_disk_set_standard_lookup.c --- /usr/src/lib/libarchive/archive_write_disk_set_standard_lookup.c 2011-08-16 12:29:24.293631530 -0500 +++ new/archive_write_disk_set_standard_lookup.c 2011-10-25 11:49:03.507144601 -0500 @@ -189,8 +189,8 @@ #if HAVE_PWD_H # if HAVE_GETPWNAM_R { - char _buffer[128]; - size_t bufsize = 128; + char _buffer[2048]; + size_t bufsize = 2048; char *buffer = _buffer; struct passwd pwent, *result; int r; diff -u /usr/src/usr.sbin/gssd/gssd.c new/gssd.c --- /usr/src/usr.sbin/gssd/gssd.c 2009-08-03 03:13:06.000000000 -0500 +++ new/gssd.c 2011-10-25 11:59:38.290239235 -0500 @@ -452,7 +452,7 @@ { gss_name_t name = gssd_find_resource(argp->pname); uid_t uid; - char buf[128]; + char buf[2048]; struct passwd pwd, *pw; memset(result, 0, sizeof(*result)); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 17:40:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8391106566B for ; Tue, 25 Oct 2011 17:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 840088FC16 for ; Tue, 25 Oct 2011 17:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PHe9Fg072556 for ; Tue, 25 Oct 2011 17:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PHe9bE072555; Tue, 25 Oct 2011 17:40:09 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 17:40:09 GMT Resent-Message-Id: <201110251740.p9PHe9bE072555@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, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A53B4106566C for ; Tue, 25 Oct 2011 17:38:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 939278FC0A for ; Tue, 25 Oct 2011 17:38:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PHc2ik063178 for ; Tue, 25 Oct 2011 17:38:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PHc2DG063177; Tue, 25 Oct 2011 17:38:02 GMT (envelope-from nobody) Message-Id: <201110251738.p9PHc2DG063177@red.freebsd.org> Date: Tue, 25 Oct 2011 17:38:02 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162010: [geli] panic: Provider's error should be set (error=0)(device=label/feiya.eli). X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 17:40:09 -0000 >Number: 162010 >Category: kern >Synopsis: [geli] panic: Provider's error should be set (error=0)(device=label/feiya.eli). >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 Oct 25 17:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: HEAD >Organization: >Environment: FreeBSD r500.local 10.0-CURRENT FreeBSD 10.0-CURRENT #6 r+3084a02: Mon Oct 24 15:55:58 CEST 2011 fk@r500.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I reproducible get a kernel panic when losing an geli-encrypted labeled umass device that acts as a single vdev for a ZFS pool that is being scrubbed. In case the descriptions isn't clear, I'm using pools like this one: fk@r500 /usr/crash $zpool status extreme pool: extreme state: ONLINE scan: scrub repaired 0 in 97h31m with 0 errors on Fri Oct 21 00:32:54 2011 config: NAME STATE READ WRITE CKSUM extreme ONLINE 0 0 0 label/extreme.eli ONLINE 0 0 0 errors: No known data errors fk@r500 /usr/crash $sudo glabel list Geom name: da0 Providers: 1. Name: label/extreme Mediasize: 4023385600 (3.8G) Sectorsize: 512 Mode: r1w1e1 secoffset: 0 offset: 0 seclength: 7858175 length: 4023385600 index: 0 Consumers: 1. Name: da0 Mediasize: 4023386112 (3.8G) Sectorsize: 512 Mode: r1w1e2 fk@r500 /usr/crash $sudo geli list label/extreme.eli Geom name: label/extreme.eli State: ACTIVE EncryptionAlgorithm: AES-XTS KeyLength: 256 Crypto: software UsedKey: 0 Flags: NONE KeysAllocated: 8 KeysTotal: 8 Providers: 1. Name: label/extreme.eli Mediasize: 4023385088 (3.8G) Sectorsize: 512 Mode: r1w1e1 Consumers: 1. Name: label/extreme Mediasize: 4023385600 (3.8G) Sectorsize: 512 Mode: r1w1e1 I don't know if being the only vdev of the pool or the use of labels is important. With a GENERIC kernel the panic is: GEOM_ELI: Device label/feiya.eli created. GEOM_ELI: Encryption: AES-XTS 256 GEOM_ELI: Crypto: software (cd0:ahcich1:0:0:0): SCSI status error (cd0:ahcich1:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (cd0:ahcich1:0:0:0): CAM status: SCSI Status Error (cd0:ahcich1:0:0:0): SCSI status: Check Condition (cd0:ahcich1:0:0:0): SCSI sense: NOT READY asc:3a,1 (Medium not present - tray closed) (cd0:ahcich1:0:0:0): Error 6, Unretryable error (da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR (da0:umass-sim0:0:0:0): Retrying command ugen7.2: at usbus7 (disconnected) umass0: at uhub7, port 2, addr 2 (disconnected) (da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR (da0:umass-sim0:0:0:0): Retrying command (da0:umass-sim0:0:0:0): Selection timeout (da0:umass-sim0:0:0:0): Retrying command (da0:umass-sim0:0:0:0): Selection timeout (da0:umass-sim0:0:0:0): Retrying command (da0:umass-sim0:0:0:0): lost device - 1 outstanding (pass2:umass-sim0:0:0:0): lost device (pass2:umass-sim0:0:0:0): removing device entry (da0:umass-sim0:0:0:0): Error 6, Retries exhausted (da0:umass-sim0:0:0:0): oustanding 0 GEOM_ELI: Crypto WRITE request failed (error=6). label/feiya.eli[WRITE(offset=2301105664, length=33280)] GEOM_ELI: Crypto WRITE request failed (error=6). label/feiya.eli[WRITE(offset=2301138944, length=1536)] GEOM_ELI: Crypto WRITE request failed (error=6). label/feiya.eli[WRITE(offset=2965543936, length=5120)] GEOM_ELI: Crypto WRITE request failed (error=6). label/feiya.eli[WRITE(offset=2965690368, length=29696)] GEOM_ELI: Crypto WRITE request failed (error=6). label/feiya.eli[WRITE(offset=1020291072, length=29696)] panic: Provider's error should be set (error=0)(device=label/feiya.eli). cpuid = 0 KDB: stack backtrace: (da0:umass-sim0:0:0:0): removing device entry db_trace_self_wrapper() at db_trace_self_wrapper+0x2a kdb_backtrace() at kdb_backtrace+0x37 panic() at panic+0x187 g_eli_start() at g_eli_start+0x271 g_io_schedule_down() at g_io_schedule_down+0x1e3 g_down_procbody() at g_down_procbody+0x72 fork_exit() at fork_exit+0x135 fork_trampoline() at fork_trampoline+0xe --- trap 0, rip = 0, rsp = 0xffffff8000244d00, rbp = 0 --- KDB: enter: panic [...] #0 doadump (textdump=0) at /usr/src/sys/kern/kern_shutdown.c:260 #1 0xffffffff802fa740 in db_dump (dummy=Variable "dummy" is not available. ) at /usr/src/sys/ddb/db_command.c:537 #2 0xffffffff802f9d31 in db_command (last_cmdp=0xffffffff810efd40, cmd_table=Variable "cmd_table" is not available. ) at /usr/src/sys/ddb/db_command.c:448 #3 0xffffffff802f9f80 in db_command_loop () at /usr/src/sys/ddb/db_command.c:501 #4 0xffffffff802fc0d9 in db_trap (type=Variable "type" is not available. ) at /usr/src/sys/ddb/db_main.c:229 #5 0xffffffff8085d8a1 in kdb_trap (type=3, code=0, tf=0xffffff80002449c0) at /usr/src/sys/kern/subr_kdb.c:625 #6 0xffffffff80b11036 in trap (frame=0xffffff80002449c0) at /usr/src/sys/amd64/amd64/trap.c:590 #7 0xffffffff80afb2df in calltrap () at /usr/src/sys/amd64/amd64/exception.S:228 #8 0xffffffff8085d64b in kdb_enter (why=0xffffffff80d287eb "panic", msg=0x80
) at cpufunc.h:63 #9 0xffffffff80827f00 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:599 #10 0xffffffff817bd631 in g_eli_start (bp=Variable "bp" is not available. ) at /usr/src/sys/modules/geom/geom_eli/../../../geom/eli/g_eli.c:270 #11 0xffffffff807c4d03 in g_io_schedule_down (tp=Variable "tp" is not available. ) at /usr/src/sys/geom/geom_io.c:632 #12 0xffffffff807c5192 in g_down_procbody (arg=Variable "arg" is not available. ) at /usr/src/sys/geom/geom_kern.c:110 #13 0xffffffff807fcb55 in fork_exit (callout=0xffffffff807c5120 , arg=0x0, frame=0xffffff8000244c50) at /usr/src/sys/kern/kern_fork.c:995 #14 0xffffffff80afb80e in fork_trampoline () at /usr/src/sys/amd64/amd64/exception.S:602 With a custom kernel without WITNESS the backtrace is: Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x284 fault code = supervisor read data, page not present instruction pointer = 0x20:0xffffffff81314512 stack pointer = 0x28:0xffffff8000244b90 frame pointer = 0x28:0xffffff8000244bc0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 13 (g_down) Reading symbols from /boot/kernel/zfs.ko...Reading symbols from /boot/kernel/zfs.ko.symbols...done. done. [...] Loaded symbols for /boot/kernel/fdescfs.ko #0 doadump (textdump=0) at /usr/src/sys/kern/kern_shutdown.c:260 260 if (textdump && textdump_pending) { (kgdb) where #0 doadump (textdump=0) at /usr/src/sys/kern/kern_shutdown.c:260 #1 0xffffffff80333380 in db_dump (dummy=Variable "dummy" is not available. ) at /usr/src/sys/ddb/db_command.c:537 #2 0xffffffff80332cb1 in db_command (last_cmdp=0xffffffff80dfd100, cmd_table=Variable "cmd_table" is not available. ) at /usr/src/sys/ddb/db_command.c:448 #3 0xffffffff80332f00 in db_command_loop () at /usr/src/sys/ddb/db_command.c:501 #4 0xffffffff80335039 in db_trap (type=Variable "type" is not available. ) at /usr/src/sys/ddb/db_main.c:229 #5 0xffffffff806a1061 in kdb_trap (type=12, code=0, tf=0xffffff8000244ae0) at /usr/src/sys/kern/subr_kdb.c:625 #6 0xffffffff80903bbd in trap_fatal (frame=0xffffff8000244ae0, eva=Variable "eva" is not available. ) at /usr/src/sys/amd64/amd64/trap.c:813 #7 0xffffffff80903f26 in trap_pfault (frame=0xffffff8000244ae0, usermode=0) at /usr/src/sys/amd64/amd64/trap.c:734 #8 0xffffffff8090448f in trap (frame=0xffffff8000244ae0) at /usr/src/sys/amd64/amd64/trap.c:473 #9 0xffffffff808ee1e3 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:228 #10 0xffffffff81314512 in g_eli_start (bp=0xfffffe000c44cd98) at /usr/src/sys/modules/geom/geom_eli/../../../geom/eli/g_eli.c:320 #11 0xffffffff80600304 in g_io_schedule_down (tp=Variable "tp" is not available. ) at /usr/src/sys/geom/geom_io.c:632 #12 0xffffffff8060060c in g_down_procbody (arg=Variable "arg" is not available. ) at /usr/src/sys/geom/geom_kern.c:110 #13 0xffffffff806399ef in fork_exit (callout=0xffffffff806005b0 , arg=0x0, frame=0xffffff8000244c50) at /usr/src/sys/kern/kern_fork.c:995 #14 0xffffffff808ee70e in fork_trampoline () at /usr/src/sys/amd64/amd64/exception.S:602 #15 0x0000000000000000 in ?? () #16 0x0000000000000000 in ?? () #17 0x0000000000000001 in ?? () #18 0x0000000000000000 in ?? () [...] #39 0xffffffff80e398f0 in sleepq_chains () #40 0xfffffe0002713888 in ?? () #41 0x0000000000000000 in ?? () #42 0xfffffe0002713460 in ?? () #43 0xffffff8000244ad0 in ?? () #44 0xffffff8000244a78 in ?? () #45 0xfffffe00027138c0 in ?? () #46 0xffffffff80693ca0 in sched_switch (td=0xffffffff806005b0, newtd=0x0, flags=Variable "flags" is not available. ) at /usr/src/sys/kern/sched_ule.c:1853 Previous frame inner to this frame (corrupt stack?) (kgdb) f 10 #10 0xffffffff81314512 in g_eli_start (bp=0xfffffe000c44cd98) at /usr/src/sys/modules/geom/geom_eli/../../../geom/eli/g_eli.c:320 320 } (kgdb) p *bp $1 = {bio_cmd = 1 '\001', bio_flags = 0 '\0', bio_cflags = 0 '\0', bio_pflags = 255 'ÿ', bio_dev = 0x0, bio_disk = 0x0, bio_offset = 4022607872, bio_bcount = 0, bio_data = 0xffffff8005747000 "\200*ø\f", bio_error = 0, bio_resid = 0, bio_done = 0xffffffff811a72d0 , bio_driver1 = 0xfffffe0004c83828, bio_driver2 = 0x0, bio_caller1 = 0xfffffe001cf5ba50, bio_caller2 = 0x0, bio_queue = {tqe_next = 0xfffffe000c44b3a0, tqe_prev = 0xffffffff80e1c840}, bio_attribute = 0x0, bio_from = 0xfffffe000c782a80, bio_to = 0xfffffe000cc8ca00, bio_length = 8192, bio_completed = 0, bio_children = 1, bio_inbed = 0, bio_parent = 0x0, bio_t0 = {sec = 243, frac = 14970883905652654531}, bio_task = 0, bio_task_arg = 0x0, bio_classifier1 = 0x0, bio_classifier2 = 0x0, bio_pblkno = 0} >How-To-Repeat: Either use a flaky USB stick as geli-encrypted vdev and wait for it to disappear by itself while a zpool scrub is in progress, or use a reliable stick and unplug it manually while doing a scrub. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Oct 25 23:00:24 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7252A106566C for ; Tue, 25 Oct 2011 23:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E65C68FC14 for ; Tue, 25 Oct 2011 23:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PN0JpK064270 for ; Tue, 25 Oct 2011 23:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PN0JcU064268; Tue, 25 Oct 2011 23:00:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 23:00:19 GMT Resent-Message-Id: <201110252300.p9PN0JcU064268@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, Michael G Schwern Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 934B9106566B for ; Tue, 25 Oct 2011 22:51:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 826688FC13 for ; Tue, 25 Oct 2011 22:51:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PMpe0s047434 for ; Tue, 25 Oct 2011 22:51:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PMpeUc047433; Tue, 25 Oct 2011 22:51:40 GMT (envelope-from nobody) Message-Id: <201110252251.p9PMpeUc047433@red.freebsd.org> Date: Tue, 25 Oct 2011 22:51:40 GMT From: Michael G Schwern To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162016: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 23:00:24 -0000 >Number: 162016 >Category: misc >Synopsis: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 25 23:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Michael G Schwern >Release: 8.2 >Organization: >Environment: 8.2-RELEASE i386 (I can't cut & paste from my virtual machine) >Description: See https://rt.cpan.org/Ticket/Display.html?id=70232#txn-991950 for the upstream report. BSDPAN::ExtUtils::Packlist can be put into an infinite loop if write() is given a packlist like "../.packlist". This happens in the ExtUtils-MakeMaker tests, specifically t/INSTALL_BASE.t, and was causing hangs. I have worked around this in MakeMaker's tests by having them set one of the magic environment variables it recognizes to disable BSDPAN registration. It's a bit distressing that test modules were being registered. Perhaps BDSPAN should check that the module in question is being installed into an official location before registering? I don't know how the BSDPAN stuff works. >How-To-Repeat: cd Some-CPAN-Module (ExtUtils-MakeMaker works) perl Makefile.PL (to generate a Makefile) Then run the following Perl program. use ExtUtils::Packlist; my $packlist = ExtUtils::Packlist->new; $packlist->{"Bar.pm"} = 1; $packlist->write("../.packlist"); It will enter an infinite loop. >Fix: get_dir_list() is the problem. It's written in an unsafe fashion. Instead of hacking off bits of the filepath with a regex and breaking out of an infinite loop, it is safer and simpler to pull the filepath apart into a list with File::Spec->splitpath and iterate through it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 00:10:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FA851065674 for ; Wed, 26 Oct 2011 00:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3A948FC17 for ; Wed, 26 Oct 2011 00:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q0AASl031483 for ; Wed, 26 Oct 2011 00:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q0AA9p031482; Wed, 26 Oct 2011 00:10:10 GMT (envelope-from gnats) Date: Wed, 26 Oct 2011 00:10:10 GMT Message-Id: <201110260010.p9Q0AA9p031482@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael G Schwern Cc: Subject: Re: misc/162016: BSDPAN::ExtUtils::Packlist-> get_dir_list can go into an infinite loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael G Schwern List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 00:10:11 -0000 The following reply was made to PR misc/162016; it has been noted by GNATS. From: Michael G Schwern To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/162016: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop Date: Tue, 25 Oct 2011 17:04:39 -0700 This is a multi-part message in MIME format. --------------010506050404040500090003 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Attached is a test and a fix for BSDPAN::ExtUtils::Packlist::get_dir_list(). I patched the version from BSDPAN-5.12.1_20100713.tar.bz2. --------------010506050404040500090003 Content-Type: text/plain; name="get_dir_list.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="get_dir_list.patch" diff --git a/BSDPAN/ExtUtils/Packlist.pm b/BSDPAN/ExtUtils/Packlist.pm index 19f764e..b659513 100644 --- a/BSDPAN/ExtUtils/Packlist.pm +++ b/BSDPAN/ExtUtils/Packlist.pm @@ -17,6 +17,7 @@ use Config; use Fcntl; use BSDPAN; use BSDPAN::Override; +use File::Basename qw(dirname basename); sub write { my $orig = shift; # original ExtUtils::Packlist::write @@ -210,18 +211,20 @@ sub get_dir_list { my %alldirs; for my $file (@files) { - $file =~ s|/[^/]+$||; - while (-d $file) { - $file =~ s|/([^/]+)$||; - my $last = $1; - last if $last eq "bin"; - last if $last eq "auto"; - last if $last eq "man1"; - last if $last eq "man3"; - last if $last eq "site_perl"; - last if $last eq "mach"; + my $dir = dirname($file); + + while( -d $dir ) { + my $last = basename($dir); + last if grep { $last eq $_ } qw(bin auto man1 man3 site_perl mach); + last if $last =~ /^[\d.]+$/; - $alldirs{"$file/$last"}++; + + $alldirs{$dir}++; + + my $parent = dirname($dir); + last if $parent eq $dir; + last if $parent eq '/'; + $dir = $parent; } } diff --git a/t/get_dir_list.t b/t/get_dir_list.t new file mode 100644 index 0000000..703a78e --- /dev/null +++ b/t/get_dir_list.t @@ -0,0 +1,79 @@ +#!/usr/bin/env perl -w + +use strict; +use warnings; + +use autodie; +use BSDPAN::ExtUtils::Packlist; +use ExtUtils::Packlist; +use File::Temp; +use File::Spec; +use File::Path; +use Cwd qw(abs_path); + +use Test::More; + +my $Orig_Cwd = abs_path; + +my $get_dir_list = \&BSDPAN::ExtUtils::Packlist::get_dir_list; + +my $packlist = ExtUtils::Packlist->new; + + +note "get_dir_list"; { + my $tempdir = File::Temp->newdir; + + my @tempdir = grep { length $_ } File::Spec->splitdir($tempdir); + my %want; + for my $depth (0..$#tempdir) { + $want{File::Spec->catdir("", @tempdir[0..$depth])}++; + } + + is_deeply + [sort $get_dir_list->($packlist, "$tempdir/.packlist", "$tempdir/lib/perl5/Foo/Bar.pm")], + [sort keys %want]; + + # Now do it again with the lib directory existing + mkpath "$tempdir/lib/perl5/Foo"; + + $want{"$tempdir/lib/perl5/Foo"} = 1; + $want{"$tempdir/lib/perl5"} = 1; + $want{"$tempdir/lib"} = 1; + + is_deeply + [sort $get_dir_list->($packlist, "$tempdir/.packlist", "$tempdir/lib/perl5/Foo/Bar.pm")], + [sort keys %want]; + + # Does it ignore bin? + mkpath "$tempdir/bin"; + + is_deeply + [sort $get_dir_list->( + $packlist, + "$tempdir/.packlist", + "$tempdir/lib/perl5/Foo/Bar.pm", + "$tempdir/bin/foo", + )], + [sort keys %want]; +} + + +note "With .. and ."; { + my $tempdir = File::Temp->newdir; + mkdir "$tempdir/foo"; + chdir "$tempdir/foo"; + + is_deeply + [sort $get_dir_list->($packlist, "../foo/.packlist")], + ["../foo"]; + + chdir $tempdir; + + is_deeply + [sort $get_dir_list->($packlist, "./foo/.packlist")], + ["./foo"]; + + chdir $Orig_Cwd; +} + +done_testing; --------------010506050404040500090003-- From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 01:10:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FAEA106566B for ; Wed, 26 Oct 2011 01:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 533DC8FC13 for ; Wed, 26 Oct 2011 01:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q1A7F7087077 for ; Wed, 26 Oct 2011 01:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q1A7KQ087075; Wed, 26 Oct 2011 01:10:07 GMT (envelope-from gnats) Date: Wed, 26 Oct 2011 01:10:07 GMT Message-Id: <201110260110.p9Q1A7KQ087075@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Harry Coin X-Mailman-Approved-At: Wed, 26 Oct 2011 01:12:33 +0000 Cc: Subject: Re: kern/162009: getpwnam_r buf too small nfs assigns root:user to krb5 clients X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Harry Coin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 01:10:07 -0000 The following reply was made to PR kern/162009; it has been noted by GNATS. From: Harry Coin To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/162009: getpwnam_r buf too small nfs assigns root:user to krb5 clients Date: Tue, 25 Oct 2011 20:07:56 -0500 This is a multi-part message in MIME format. --------------030702010609030905050807 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Find attached a tbz that has all the necessary patches I've filed to date against freebsd 8 stable that accomplish the following: 1. Alter no current behavior but make more optional (whether I like it or not*). 2. Let NFS do with -sec=krb5x everything it was capable of doing without -sec=krb5. 3. make it possible as it was pre kerberos for a server to restrict shares to certain boxes while not letting locally authorized users access to those shares via other clients, nfs3 or nfs4. 4. Make it possible for accounts associated with principal names including a / to have correct file ownership when using mounted shares (all gssapi service accounts related cyrus-sasl accounts, openldap / slapd, nslcd, nfs itself, and in my world all accounts with uid <1000). 5. Fix bugs giving normal users files over nfs with ownership root:user (includes many global rpc fixes relative to longer passwd entries) 6. Make it possible for accounts with /nonexistent home directories to have .k5login capabilities (/etc/k5login.d) 7. Caching to vastly speed up validating local accounts against principals and vice versa (nfs speedup). Fair notice, the folk on the hiemdal discussion list generally think some of these features need doing, but do not approve of the choices I made about how to do it. Others take great exception to mapping principal names with a / to user accounts per box. Still others think the entire matter of 'taint' is mishandled and needs removing from kerberos entirely. A fair few other observations occurred as well. Some mention they aim to provide similar functions in code to be written in due course. So, while they are working on those, in the meantime, enjoy a fully functional krb5/nfs and protected ldap keytab! Full BSD licenses on all added code. Cheers! Harry Coin --------------030702010609030905050807 Content-Type: application/octet-stream; name="nfskrb5bsdpatches.tbz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="nfskrb5bsdpatches.tbz" QlpoOTFBWSZTWWURTiUFZQN/////////////////////////////////////////////427Y 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 cvsB8PBZs8vzmy1vjpK80c2jlZhAjt09+7TFuBQw2h6sV2VkAADIwAAZbaGKFrR1Y9VVQC1b WdeMgvCxjjHEa+0Mkk2XHdTVnFaNVREoAGZgkYujnEZDQao4BwY6VLwfdRNRe0AwAuKcs2fs ppnF1NRxLe5X/wg+DgfDrdRJ/sCgpg/2M7xCAtmbEgHvsUm7Hl/eO9R9jfKl1xjJ8CH2aYgQ trrnon1fm4igegVQowJJJJ/PdqFP19rTdbneLw6HgsdFvm9i2OzS+j4NzoSuPCw7HG6w4f9+ UkJFv/jR2eiqpx+htbWs55hea5b4/Ncy1em0HBj/Dg4ExM9umhvlq2zQa596Wu8Xxgv8XLl4 0wYMGCt5VwMfx0XQly5cuXLl7nla5f7BhY9SLe+IxZqhGkxyNnDRJOOPR+qH3ZRfz+EfI+9q 4qhJl+T0cq0NqF+nW7SVqzrr9SAnNGvJ5wtTAAhperIJAQhDmx2Xi/K/a4YmH5bmNzmXjSpX ly5bYcarqutbQuaZlc1vMzNvHbu5mZm0Lv2HCc5eF+su5tGXp3OOZSoVNxuDxrzS3OTBOZzb m7tLsXLiZd1Ms1cV03nOGccuUuUyWqFQzlzdc/Pp3dHnL1brXGmbu6qb2tbyZhqmXObcu8uG aZmcXm8eVbYCy8tTnGby6XaZtdcjhhzm8zcOBtbJr35eWidur0a5ZnNUxc2+bhu73Suuo5ej veOSu4XGw63c6t4JrdvM3DTC3LObcZTdMXHcRt5pznJytNrqdZmnMcxrXmYOY5FxHcu7BR29 bd5KcSurW5qXeOnd0Xq0UelzDOril29bu45y0plMSW5c5eXdrdKZcXjVym65cd0wV3Myq3mY POsmbeNeatowW9cyDShg7tmruWlw7tMopq83tucoV5czi7rm5mGW44i2y5juVXB3XmDlnBqc 5d2msHNy8s7c6zpcopRqXpXNv1G8Hec3Wa4XWYi5u6GsqYIDLDVKvLQyu4dmcqGqFAZlMKgh i7UfHraKrF70oXteMqPLTna3OZczDK5a7m6Yu52u6PFctG85e7nXXVNwXEruU0vbM3s8c65t t3rDWCIqqbjzm4L1109GjydOW1na8MXk5cy5aXczHNzF1Nt8OZurjbTmW83E3lzglZXDLbuZ hQ073hhaWnfq9I8Lh33o15aUo28RxEzTlIcSiaCJDkTQSmmbOT12b7f1/H3W+zXjQYOlnc5l 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 U8HRpuqdzqkkYm6qoVX3T7RwjTTTSNFSdXc5tjqroqKrgpwU3TTzuzCelW7/xfSPsDmk9xw2 Vwex5mHCvYxXZpw+zUYnhE9ct8GHZ1N0cFeRj4Fdhw6OGzg+RR3vtZvI8zmxOzGJu5mj0ld5 wrhj2saKqTTTEcP5jycOjo957zZFeDs92JK2g9jo6OH2LdiupWFVPSPtGk0p2eRWHmndCuh6 WGzxdzuedtPRPbGJ+ybPU73uzd5IPcbtD1vU3bHqKr7M9R3t303Vo91KYq0IJwTzC8CE4ZPV WMsgvIwnB7WJsMg44OKRk/cJ1U+/9D8v4vS4V4x7Wh7G75Ffkvy0k382R80/kqUxsaRcRoKs tVwZea1onhQKxFnSJxatdblTXBXWnujr+Z/Ffgdvw3uO3bb5s8ofKZPqHxR6hoe62Y+6U+In ZU+iqR8p9uxiNMSTwUIxjD8B7GNzySScIexs0VSWSSEOD2oPuENh7ps6q4Vp9VKne2KpVA4K VVSFVJKjFkVKnZKVKK2U9appJ3OBjkViKVPBQVUKik7J0VwbnVPlOacnZDoRg4aO9iI7lIjm lSqmJ4IMDwKk8EO9PB4NHgx4DuQpyc02Y7FR4q0iFJ4O5Bh2SqVHCofKaThoqJuwThU0VO5T SdFMKlKlVKKVKSoqeCilVVTk0k6q8SuSKzzJ6D9I/GMK0K69Fv1rnk8M/G/YqqqqqvmtXDA3 9l8U9phA98/AHz58YJ0PSkmB9wVVhUWR9+xhVVUKsKllV8iRWJTBuYyQ+R9T7R9l89l+Nd39 pCr7RwsOkPSDD0YmWEQ9EVKj2oYAUAHU7RSrIlqwtLKk/KqSMlUDc/WxRkS3lQbiUEVwOpGJ GGAggQWwgVtEG7gDjsHi/+xyAce2HiPPs6+vu7oHGY7neGllWoq6waF5bbNuWtupivsp6mPQ rrDRhspXDq0nzvtUnrfDsntVU1JU/K+jb0LPcn3HgacivfUeYnbkh9ps3bu55TwYn4Z6mPO9 x7j3HNzZ7B73e9p3PcnpbJ92btNCleZWKfIphSlVPXPcn49o9Sblg9iT2th9o3YfU2/p9k6p umHNKlhXxdXuu6R+OcPsCHf8L7V7GO47jklU7n9D5HVsxI/O/SczZzX0seLxYd+uE0el4eDT vf03LvvvvMfC1P0N+P7F4m5SvS8SlaPhf7LgeB3P89+fMYrCsVMVDFVVdTGKpTSdXnkjtjBE 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 zo6ubmcOjm0rhyY0rDGOqvMp1bO805q6KaaeY08lPI4bsPB4PDXCubkPB/GVudzHk6Hk8HDz vA7ngrdo8zved3ujmrhpXZ5GzT+GxpjFbtmzxbtN2NmMYwro08CvO5lbtPO8HZw4buzkVPMr dWleZTZXecMMYrdXk6mxzbDc/iuTzvF1TFclc0Vjued5HkH/qbnN3ujweLxcw5HJw5KcOrTT yVjhw5sed3MOrzvFTmk6K3U6O9ppyeTDkipspycivFppsjZXco2dzkqvQeTk9SnJW6sehh0b FYVjorZpu07n8Ucng5uzkrzN3N1bqnJWybuhurkx5zwfnmOzTY4T0sPA9Tg3dk7PO86btkxj FUqYrxdGjdVTo3buR0aOjomxoYnRXkkpu05q05pTo0xp6WJpwmzHNycN25sxXRjzNj1ObsrZ Su96Wjk5sTudnVp6Do3O5uVs73I08HR1bmPM7NnDD0q4Vp6mPO8FeBo8zxPFXpedww73mdzC tnerDqmMepjbvu6+fvedp7Ug+NUFVJKqSqEKpIVSSSqkiqKqFKiUpJPjSpGKlRUkRVVUpQqi KlSVUgqqpKqsYkxKpSpUhUoSqVUQqlJUSqqkRSopVWRJKilUVUUqqqpRSqRKlVSlKqJFUqqq QlVVRSUKlRFRVVVFUVKqpVRVYqRhVVI6O5u7nVs8XVo0qbO5pXmuyGjvVVVKrDxNKec87hXR oSqexydnNjuV3K7mOrTsK4cPS72mxm72Ojorg4Y4c2NnJ0elo9KVzKnB0Vo3d7zGOGx1eZp3 Njm7mPW70xHB3ObmbNkqVVVXNWMedjSq0qmJjzOjGjmqsYVI4Vy5No6O9gbnIrB2Tow0bKwp yUxpjBVSio8U4Y0bMdytOqvY0kx2Y5K5K0qK6NmmlbubHV0Y5qnzijxaME71NyhNDZhinmdE 5NEY8Wzk0bHNWKe1W6ngroikVuYiq6q6Mbmm6m6phObyaaUmkpNPA3YqaQqUY3eZu3dGxhXu u85o02Y4c247mwbO9w7ipsryczmnZu3btnVPBU2TdOYrsx1cOTm4aadnNseDucnJjs3Vpicz Zho8zmrSVhu3TZuqubGngx0bmzSPFXUdGzTdTGPM0qpEminY7ng91ps7PA4aNHZieKtiu5TB 6WNN2MY73RNk7GmOHJ52nIqeYxiuZgipuwnnaYFV5nYx4I6MHNsx5N2I9CUmynVyYnnespjz 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 AGGcAA2oxA+jAX4Hlj2+1bsmmjMnMuIyYjJPkkufN626j6z4S6vz9RNnqGcnK/9qydIfpl3/ gsJ7x6ebTE/Cm6x5n7XadV7rK/TBzO4mTfUWlpaujC266666666u7zTv7Xnojz3WvvvPPPPP PPdzVq2nXcH1YKrtt555555555555555562+++++++++++24++889y9mtWrPvpEvGDakOY++ ++e++88888888s8888867Fddku3bzzrrrrt3d0n3333nkBlU2XnnnjnXXXXXXXXXV3XXXXXX XXXXZLtl5562+++/Sfffftvvm1Jb7775z9utWfeeeeeeXeetvvvvvvvvvvvvvv2q1atWrVq1 V999G3Hn1q1atWt169evXrwK9as+++/Ceedddddddddddnuuuuu23nnk5iSkys8888888889 bfffZeeeeeeeeeeeeedddnznbp121Vq1XTY9ihXB1102pUqVKlS3Vq1bTrLrrtZ56M888666 667VqVKFSpUTdp06dOnTp06dOnTp069SpUqVKlSpUqVKlSpUsuVatWrUs1X3XXT3oTrrtmy+ +++++++++/brWK9evXr169eTXr169qvXr169ezYtO2bNmzZs/2WoPWbNmzZOs2bNmzZgWbNm xYsWLFevXr169evXr13K9evXr169atWrVtkS1WrVqz7777777777rrrrtWrVq1atWrcddddd dddduPPPVeDa7Cm1PvXnnj3nnnnk3nnn3nnr155556Q89JelPPPPPPOuu3rzzz17fssPPPPP PPPPPPPPXj95WrVq1a8rOuyHZLrrrrrrrrrrrrrt4SrcovyQNeeePq1atWrVu3XXXXXWXatW rUqVKlSpUqXdWrVq1atWrmgDK5ikzlOn8rw+jRSHmfC7zJQNoyrtd+x+MAwDA6cABiEMaqP+ 9nO4Tj52o3n5PC4P6+D12a9j0aS8ZD5rNYFiNADISEkKymtIAZB1CRJIgsBo64axw9mCosSA YyKkshyY5V35lVIbJhTI0rCUa/fMRjNIxpJZZgVioK2rEWKpUNSEaxDSxatLYVI0xMJCCCCS WJsenb1BxJum50gLNgmFKgBlFWSlSlRSJZkxJhUiqSliRPz7xJ5KpKrzGTFth6H6k/BaJpQa YyHQhRPRU9ewfbbM/UfyuP+H897n3GqlE5OBBA0CGBBAdKwleXvTV/1SFPtzuevbbXUdMa1I 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 B+tW4zLV69dec+FzHQl4tazlKVc6vXr3bzC1i8ZkoXeXtza9eu3Xfvq19g5vAyuG30N7Wr3d ivYsWJ2Bh5x17EsZSLZsWMixZmuDBh2MJ56q7lnlKruUVvYU1+jNpUvbJEpU8JORmKA4QX4h f5XJYmNLs2cnmIBtfBfrQX8szYwcDAt2bd5FuWrdq3cWuXMSDXu+vftYtrLWbmBZt3LTV6li 4dBdLCp1bL8K9fzdbGwm4WJksXLRse8zNqrYkWGa9jGBhbKY2NjX93d3l3d237le4rct5pix Cw8O/pWZ9HLuWq1qpYxa6+RjY2NgDl7Vhe1atWAx8xcTeuV6Nd2xXsaGyrYzNi1VsVTr/HTv X7/BoSK04+vXerIVsK1iw8euv13UBl68yzZTh3MC1bsWXrFazYyrtmnWs3MfCxp19GuH5FbH vH6+Us2aztnCxsi49cew361e1g4ODk2cX1bVwtu5br2LVq1awctmr3Cunr29tWJVpOvlZctg Xl9fhISC1FAbcl+G+sIbNi1JETX7Lmo2UhmHZYOI87xb5rr1Qx1I3tkop79I0wEKAnxI7jph OZgALYcCAACcq9iL85X/fZq4/6VNAY3mNXx4B8cgAu8zEU55M7hNR8NG57vdvO72KkHVf6SZ ABCPr59EAmyTlZtk1rBwh3gR7FNMfbrl/IS05+sEgBAILXLmtsvVOeAgbRCFokdK7fnxGrgI 2s1Jqo+z96FNz6PBaLmi6ie2sehUtKl1m+NfSl3rJqOn/D0xcMexy1uOx32B0NLGdFM7ztw8 viFv1w6XX8sPRqBUxAc1KAYEgWJfWcpg8SVsKK9ip3lIpzIVV12g9Kw+c1+L5c3Ht2Hq9iVI j4mtivbin9vSrKvE8e20U1/2p9sRzstV4ksmPZdECdpn41UlrpfJJ5NGAhEAAgjB2i3wnuuJ ZdVJghW29PCOmck0fHDOEaNmzYIJBGGoXBTr5fX7N6aO5CMgoaMh/tNQjdP/NmkUGzSYPKfJ H853o7ZepVW7/hrOEBcaM3cYmMVjGKBoQIyAwgEZP4P0h/FzSoFCoWQoyfpPuaEn/2SQ4FII gEwggBsfbwAl7HDHMUKYRONYxb3SJEDOn2OU4SsBFKc8QF+BWA1xQDKYLP2dj+3kUq4ZSDEQ FYMKJKTCAaD5/g7u30+83nIfT7WPncpRo3enz9XznL6Lnew+X+d66rPbXpfc7j9/E9j+/WwJ txeRaMFcxKRr4JCGMBjFqBsI2PwqaYTSGK/CpKSfZ/qvuchJPslT+Gx1f7LE0+sH/mp8xSqb StNSNIT+TVg+5SXomuJ3Eg70TRs/8j+kVKp6Wh6HD7dpyfWcmFUVorIjCYqqivMVVaKpX8Ar ZjFTDFbKoqsKkMUqkcKNk/cvslHJisVinI5CqThNMQYpVRJFN2CYNKehVdExBpNNmmmIVVKx X79jGsDFfe4hNSyJZUpMmJydWFboxUbsKpN43aRoqUJ6I/49M1Bs1Jo08xRoqOqnJBREpiYk MAYHX14UA5q0ZPiLIJSK+xSs0Q7LOF+2+djxPZeT5H/t4/bO1en9jzrjea8WP1kG+iV2VkEr ubfwyu5ci5XqBIV81+qfkJIw+afqBhWg9SGlWTaXDYWQ6mdsCyfOjQmFsRGxZEYsiRTsFKTo c2J/6kVVKoqMCpSj2lY0KYSqqqqUqVUrSkphWN27E3LMVjdMVKwU6mJioKoaQk+xaf9DZsc2 zDG7RslbJ9mqWqqQ0STRuRqY0E6NJw2bE3VitmFSmlbNiYqRUaVDGCmKipsQVVUlVRUk0/aq rSSbqc3JyTkjYqmIxJ9mlJzbNmiqmjnppWxNlRzaaSq2TGynDZiNKVKVSq2TAlaYaE4bJopO FEnRSalnJ5jZWTZu3SK0xUhZCSCtOZiSSajExA2bDmUdJgY3MaK04UVEVUSU4UMSqScMNiKa KVVVUqpJsxiilUKklBhRikqVJKHNyNBWlSVuMSkmk4YrENGzZyYjYclCcN2xUkmmMYYmCUwV ycmhpJiVXSrWFaJHJRNFQ0Y0U4HNTGlVh2NjhN0/WrukKCoShUJUxktvJBpFI2QxsgiSsaWp ioOeNnCqpXqSV4GzZZksVXIlKpUJpyGlU8mk2FRorY0Uxpo0ZppTFJpOdXDZWmGOQrJpZWJJ gd7DgpLFG6mRUUkqTFGKTYxTuSojZpsxVKVKkqkcGnVs2SVUYxhFVpFTZTBe1tMdpZuTGTkl dWJMbN2K0dVRupsmKYic2mkaSSpVSKjqqTCqKxsd7ZitkwxyGhGRK/amHJwrg0hzVHBKrhhw 3YTkqbhphpNDHQFNJpJyU0rowxU2KpNK0nNsxzY5qjcYrZTSpUFNDpS1LhpVVVUpVVVUpSjZ NjDvjbGd7zjHjN3J3MYRyFaad6SL49XE2Jsni1MJpWmmmk5EOTGxUGytkmmzTCo2VMMMZKqp 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 HxqGJUHNUbqclNlN3MdWk6KbqkrkdJpYbCoxJNKN1OxQ2Sp4Pzn7XOxIiT97CJ/fWrJIKWSP tzuR85X+/59kkbG8npO5Nj6vtOCZXm3Q9LJ/F22ncRN1QnpT7l1SpuNkJ6yKVUqoqirJEdEL EkTTz1/M8ENnV8PdxupVCvTInnUI0lKOK7251+16jdsSsT3nNOhZNrJVnpaw6hI8JEWSRgpy hpIwjHEmkIUlMGAJRKCJREQZ1hh7kccSlLXZnJZrzk/foZMVxw4bNhSqLSV5sRu5NIrxbuLo jmk098cG1EaO8b7SJw3SRp/AY2FOo3b6NpsGMKTZDoOfSSHKRvIembdvGLY514n4Sa7J/b/p fT7t/v55dD1J3qruQniexSQEqySEVUiCT1qiR0WQmm6a5of2xsn7nznzEvUwnnVNUksSKqRF STSkpSFUVX5fWSTSQhiqUMYwqpzkIolIR4qkJH7Wlst0kHkeNcUjwrrppUlq7K4hbd59VJKa I5HCpuaCKZBkyNQP/Ro8ErucA8n/i9yHd6OpFJUeBEYQd8Q7IT5EKqqincVJisUOXKuJGked SvvnDZUxpskw0eh9Fsr4HDhscOr3GzYfvjdUPYPO0VWzkVKpVJSsSp/BVFYxT0yPYPhenKt8 7z+RrPRib1Hv77yRppYlIinNCpGcfG0NMYbVkXVMqTKKQELSREnfAhmhqSZmNRJROlI1hwbN YkxNjStELpqs3QqkElCZISE4nUgJMQQTyYKnwNZ9fEa+fmNxyuqpa4HsPWkqqqvWwPOP3fod zR6lRoiTmPQ5aOLN5Ve86v7V3Me+xo7x9mVbK+OMYlRVClcK/3eJ7/VPEqKqD3pm3v8ktv53 HyNEMRPmKhJXmYZCSUhig7kmw2UxRPoWImnpJyEVpRVVSVFKxhKqBiWRPtkm0Tl8/p7fl7Sd eniIpUPaqYlVHmIhNckl2llWR1kmjy4dCeZN43WSjIm/7iuhJyqV5mJiofWA76FeY1HMsiNJ gwnj3IjBDElrRaMRJDdKRCbtrZDZUhksilITZmE095hhZJ+TevI5bpPJJVaaXhk9Dhtx74Zt wYxJUwqStn03gxjDZOVNlJNK46POc3ALi+mRzZHbsTZEa5oefIm7pDJIkhvEkSukJTevRoll wAlQRWFNAvnioCoASFXHZ1IgK1qwYpP/rw6q+4V+SMOiaVyaaaRurG7GEaO9s0kbp5icmxsR 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 1TfQSjFtorG/5ddoN+kajy684YblRUU45TU+oeSfApqaWpqan4mNMnxSJ/H2E+fyUr5bq63b n3yZE9Koh8Xi/lxtHyblKlCWt/3pUpdKlDpUvVpUqtNvewKVKihZpUv3z+Ppq07Jpy9mve/J fZHo76lQ5KvJ5W/9xOUtXr14NevgXdjF9+xYsWLFiW9SnyU6bz3+8WpVPwHxvOfmsvTbp56f 3GPP4r4b6vlK99qLK2Wy1unbw7h9y5PyLlxnFet+ItP/C09ZRfs2bNlrAPJa8fFxbTFklmzm LFixYsWHMSzZs2bL0m6r12rdevi3thpqvUrKuYNevgJfyr17GZj1p9clfFr+FYrws/Zsz59m zZs27WXlW7du3btS8xbhNNWrVmzfsWbNKzZcst2Jd6l01jdmwK1auSlDrVn32n2yvuORYD0V 57Mvvvv5h5d2/eev5S02rRn1asCXIqW415nXXTYGO88hPhnpYkmpk2cSpUUl1FplOFTp061S pUu9I7yrzzMxjGfoTXXXbt56v69Wri32arZw+JDbSU29evXmXlatWcmKOPPXjzzT2K889dO4 EpbDzufwa1Zx+A/ncLKVKdaWo89KkWMyU6fjNS3np1WrVqzasK+q1WVL60wSbWdddWdYqq1J r1WDVq6K5Vq1XVKVKVi1YvznpS6mdqN1NBVqtxZtWJcmxKdPAvZzFSpYVVXqK5ROlShV6VJy l6x90ofQLgoxrq1dSMxdXV1eypWHQuS89hUWWWGKFCgstUoYsy9pZ2lPjTaN1natumikdfQ6 UmTlpNGjnKMuXEo41ChQWwKOU5CHSVVpUqkhuBQoNuWbujf3WFjlQt3HiVMSrVq4Drrrrb7r rrrqqsulPztKVjwKCM+fOurHupsY0+bnJ8K68ELqPZoUKCmBdXUuvdTLqJkq1DFiZWjAlwIF DCoZDtGhnadaixRuKW8sYZzQAZwJhn6qUBUgjne7jAcIDo4cFFO20bde34WqRPE8/+lDRJy8 fM3trEy0fgJen0nkZ/QGueedn2F5naSUvEnkx9dd4LGtUV0sWvpv5+n9gfZfTQfv+y04Ki7o Ol6u7JEELehIVOqzdstWEFySBkMRBauLEgzjAoYeyOCfJLw2JI25r4nl5Wfz/Vlc6Mcxhh9K q3FJGdOIBIaW7pDtxPMXEAQYW+U875Nl3UE0M58iM5BIBDbAIVMnv5wbbRY7hhmcEzT5e+KY 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 NDfZsfVx09fuxfZz2lv/RV6/S9Xq9WeBvd7veh6cyZMmTJkziTZs2bNm/8Tf0OOfbcccccm/ 6+FlOOOOVfgLIXiOOOOOOOOOOOOOOOOTZs2bNmzZr7jjjj86dOnTp2S9Lnz58+fOv8PYzp06 dOnTqLjjjk2bEmzZsyZmZkuXLly5cvOzMzMzMzMzMzMzHmUXi8uXLly5cuXLly5ct/MzJcuX Ily38yXLly5eHLly8XKysrJcw06uVlZWVlZWaxl0pcuXDzczMzMzMzM2ZMmTJkyZMmTJkyZM mTJkuZMkTKxMTZs2ZMmUZs2bNmzZs2bNmzX3HL1xxxxxx+dOnTp06dOnPT58+ffY9GNlX1CS 8J8+fPnMToM6dOnTp06dJcckuOOX7jlHAwp06dOccccznHHHHk0R5s2bNzXHHHHHHHHJs2bN mzZs2bNlTZs2ZMmTJkyZMypkyXMmTMZWRizs0nHHHJua45BcaccccccczZ06dOnTp06dOnTp 07Nnz58+fm0KFChHkTZs2bNmzZs2bNmzZr7jjjjjjk1uVNmzX3HHHHHHHHJs2bNmzcGK+07T nz589afPnz58+fPnz58+fPnz58+dOnYM6dOnTp2POnTs2fPnz58/OzSwp8+fPnz58+c44444 444445mzp06dOnTp05xxxxzNnTp06dNzqGQtkTZs2bNmzWF5s2bNm5rjjjjjjjmdfOOOOOOO OOOOOOZU2bNm5sW/y+rDjjjijjjjLmdOnTp06c9PkT58+fPnz58/Cnz58+fQoUKFChQoUKFD OwcrPruuuuz5686dOnTp06JOnOOOOOOOZ05xxxxxxxxxxxzBXy+XyOmCAmDIEJUAHgzKuP7T reJLxsxPR8M1PW0WlyjaybuHkEXtwVVHRRFQ2CEEH78QDkoqG/2PUdT0I1uZtA3kkGH8WyAB Zi/H+qs4fH+mSnR8e59d/G7Hsuu2+JhYmHg4MhMW4RFAyIoNIoyLBSKSMDgu3fo1UOxlqAgQ iKkEvdxl9xs+I4HuO47jNaXS6XF2GleSA3pgemYLjQsWpd4qxh4TS3ZgCuvnMFPY1DNQEQQR lKjEYwVFiRFYxVVFVggxEhEQURRQ8C0+lLYIkSMBZFEEU9kyqxSMBiyCDDmSnbtn2mvHyB4/ JGM37iaNTLAUBBg6bBUMstbloZEqsPo9X4KaEVESIoITmkkgW0jY2oW0pYoiLJBUWEUFQUER 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 pSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpS lKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlK UpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUp SlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSl KUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKU pSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpS lKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlK UpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUp SlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSl KUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKUpSlKU pSlKUpSlKUpSlKUpSlKUpSlKUpSlKUrLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL LLLLLLLLLAc4WlAdtlvezf6eh/lnqsbgsYjqYzGxTF40bzS3HZen8gMqTIUu+spvNX/Mwvv5 HWb2FkM/oHjXbt9zGg6V6u17/z7Pu/o+f3WN6f4fsX3pf8yZMmTJkyZMmTJkyZMmTJkyZMmT Jf9KVKlSpUqVKlSpUqVKlSpUqVKlSpUptttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttsNttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttyZMmTJkyZMmTJkyZMmTJkyZMmTJllIMANn9ONq6Hf q9suEF+LV9RxtzraW73aQeMXtrOboZJdidrKsuQ/a2Hyi+4goQhkkDEW+rRhtlf9XtZHWzO1 ajAa/asXoMeQZAhA4TNnCUsLMXjafXz16qyAncQf3Qd3nAwT8MT88U+3FNTjcH9jl/f/qx/i +Z539PF4Pg+DxkfZweTh7yJpD9MyAHEPyj8swMQyO5oMV1Lly0FExgmXBmkSBO9twOJv7FTi a7fcKD5aSLjHg+LmpH5g9n+HajoPFbJ9fG8jzv9d2nWrYtatWarVq1atWrVq35vYld7XUy3m ueLvpv2ZWSQulauqXyWToPTd6yVAD6H3D4bIyjnE4iWWqZiqZK1FBkan6OnILovQdDYIC9MA AdsYIf+WMj4lmzZs2bNmzZs2Y1mzZs/b9bxm7+rulpLzNCvlbquuM9ISvlMhDVLq8D2r2QXK CmWkL/gKiQX4xzHY2SwoZVevxmL+bR7TX5VhsYEsVBX/n4Pg8HjQmeO4u0wWOK9FUNncrpLz BzExMTExMTD/MTExdJiY29NBo943W3UubvsNXnkcDVQezgYmj1/Y5++0XykhOzbzOOxwLLPK swdV1nB09PhWey9jtP267xNy13zf357Zbvbe5mvL2WW4U0LodNSgeupSTSTdI1h76DSKGYAb GVQYIhSmCFORgi7xj6TBEJqampqampqampqampqampqIQxjEswLh8oy4p9UYGMfF1V3T4Wt4 mOuIeNr86Ar020XBcfg2HCJUSako1lMSxq5hq1a6XGuraWatd3H3uIDtWL1TQuaYFDFX/0EM yZRmf6KNM+YpTCs/s+FC3XJU0Y2jo6Ojo6N7o6Ojo6Ojn5y3eBAz/p8zhJo4w91oY/smGri+ kzwV7ICfJQZfHSNZfsRmZEYiQOVZMUScZ8eb9KFU03ihfwYKl4VF//vD7PwsnW7Gstg/AMzs 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 up235PI18UENxUQQK9MEQWMAvUMCm3Tp06dOnTp06dOnTp73po1fo+hpPdGfCUPJqZss1KUC kohbrIQncPYUCHjFsVRsej57uPvxvhRH3u2m2f1QWr1E451XO5926+B9C77v7vvs/q3Gju24 5HNx3bkszSfV05zr+Ph2We+qw6N+v1+v1CfPnz58+fPnz58+fPnz58+fPnz58+fPnz58+fPn /Snz58/6s+fP2FChQoUKFChQoUKFChQoUKFChQoUKFChQoUKFChQoUKFChQedddddeeeeeee eeefffffffffffffffffffffffffffffffffffffffeeeeeeQs8888888888888888888888 88888888888888888889MeeeeeenOuupOuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu vvPPPPRHnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsV55555555555555999lV99999999999 999999999999999999999999999+W++88488889AN5551111111111111111111111111111 1111113Lddddddddddguuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu47rrrrr7zzzzzzz0R5 559999999999999999999999999999999999955555555555XNeeeeeeeddddddddddddddd dddddddddddddddddddmOuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuvvPPPZr77777 777781555555V7Nffffffffffffffffffffffffffffeeeeeeeeeeeeeeeeeeeeeeeeeeeee eeeeeeeeeeeeeeeeeedddddddddddddddluuuuuuuuruuuuuuuuuuuuuuuuuuuuuuuuuuuvv PPPPPPPPPYDAYDDESYfNQ3uZLu7bwRrzT4v0MrP7CgBELv1ph8FXV1dXV1eKwt8a1dXV1dXV 4200G2UzS2Fk5iL2Veo0vKlewCqckGW9eF9suca/I4QCJClVXVldcUmNz7NmWqMRoUQQA2v+ 31Pqfleuf5Nd6bXAymt5LwCeTBEPfMAhsjL3jOgE6hTuaJBFFAiBkKoypjIh2zBTExMTExd5 iYmIGYmJiYhph4AyBgJGAVazV7q6pl6WSE7HL0rd1jW9tkjVL84hebB6/WMkOGYeIvIJA0dP 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 ZtMND8+/aPssbzQ7sNmEur5v54CN9e6wmqYe5FZvUOs5d6J+bxWMg/Xw2ax2XnPta1/uZZCe y51J2e7+HO4R0n+pkKZ+fZ+A37fmRn8pbdTMSMzg73xtdONm+fpxlxboZVxCxG0pepocNn23 CWZl+3XR3dPQYu3+v87pfuZlX+CkU2Wyuui0WilpPRaLRObTRYnRaLRJ+/+vme7bRwOgxdVo F+jwt4VX+S4h6FhPW339N9Mkb6TrUKcNF09NeF/4aAEopF/YXBkIREQvd9wOCu+66aJ5Y+AV v1ddl7/J9hTwv+TpnnF4KBP5X5io91S9dTslGKogB+TtDKNtNE3dl4mMO8/bdo7LWOO1lA5i PN8LJGUiP+k3x8/bLw2fxyMcjDv9T5r9vfK0e+ifu+Pa+Xopv+8PM0N3oXesv/05I4yJ3td/ 1VdOHp7f0pTGvSlQoaLkuqX/lRmMvim+VyzKW9fR7tP5OrTZ+Sryd2yeTyeTycLk6TJ0mKye TyXBvcI/z2Tv6l6yC7j33YZXjqHmscy5Iy2edG7o6oYnfZVDQPyvtMkPQWkuUKByaMd5qv2h VdJ97qZsq/ZI8U9y7+yZu2fT9LzM471lapjUlun1fSHwabFfV1ruij/tSWffrYez+X7+rnNR 5Lpd4r22UZ+8WwxakSr+1/ZhgGJ5l95f1YGFiLp/7gZD9w8O/76Wh43XvOA0DB/8DzuNrqr2 3uoxHkRjvHdryxHpQdj6UHf8F9tvlJZ3dI+su/D5f/W7t9v25X1XqDrY+OjiPA4HoEcg7Wld vF1f6cdvxC/fYw85eKmJj0Ukp9WGdbx9upwQ+xw93y261x+jmaiuZhZHqeZc58fjjXi+tuy3 49ndJChtmuI4FpW8S0gPtvvLxR4LSVOjzo8rVV+68m3s+z289y95m9XV/HN734V8QiO6Ggtv fz9vlsvvb59e67Nzqvft5z+c3qPt9u9e6r7vb27wJXXjI8Xoajs9leGI7YMIJBhEygIF2QQK +/vR3b9FOS7ig+fG/ZSnMUKR4OyUAqbK/7iwMeZyYp1/5f5hZy+H+TnOPO+KfUXqs0/Xs3Q5 NqfZMOjVPv2fx4h6lYgZLd+w9BXAm6mROpgNNGgh51FrPO0+pb+dv5zzvO87zt3sXhwZa0wO GZFtvVyEvOsqYCZdeYH6jGaZAzGEZbU8n4aSuYyqruVUoL3fwo3AV9CF52zhXvXTiUcYHoRe 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 --------------030702010609030905050807-- From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 04:19:46 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0325E1065677; Wed, 26 Oct 2011 04:19:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CFE3E8FC08; Wed, 26 Oct 2011 04:19:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q4JjuJ062171; Wed, 26 Oct 2011 04:19:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q4JjvD062167; Wed, 26 Oct 2011 04:19:45 GMT (envelope-from linimon) Date: Wed, 26 Oct 2011 04:19:45 GMT Message-Id: <201110260419.p9Q4JjvD062167@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/162016: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 04:19:46 -0000 Synopsis: BSDPAN::ExtUtils::Packlist->get_dir_list can go into an infinite loop Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Oct 26 04:17:39 UTC 2011 Responsible-Changed-Why: Reassign to ports. To submitter: what port does this PR apply to? http://www.freebsd.org/cgi/query-pr.cgi?pr=162016 From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 04:21:28 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01B27106566B; Wed, 26 Oct 2011 04:21:28 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CEBC78FC18; Wed, 26 Oct 2011 04:21:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q4LRcf069264; Wed, 26 Oct 2011 04:21:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q4LRHQ069255; Wed, 26 Oct 2011 04:21:27 GMT (envelope-from linimon) Date: Wed, 26 Oct 2011 04:21:27 GMT Message-Id: <201110260421.p9Q4LRHQ069255@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162008: [zfs] Latest 9-STABLE and 10-CURRENT fail to boot from ZFS v15 root [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 04:21:28 -0000 Old Synopsis: [zfs] Latest 9-STABLE and 10-CURRENT fail to boot from ZFS v15 root New Synopsis: [zfs] Latest 9-STABLE and 10-CURRENT fail to boot from ZFS v15 root [regression] Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Oct 26 04:20:39 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162008 From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 04:22:51 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C618106564A; Wed, 26 Oct 2011 04:22:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 555318FC08; Wed, 26 Oct 2011 04:22:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q4Mpus070417; Wed, 26 Oct 2011 04:22:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q4MpSD070413; Wed, 26 Oct 2011 04:22:51 GMT (envelope-from linimon) Date: Wed, 26 Oct 2011 04:22:51 GMT Message-Id: <201110260422.p9Q4MpSD070413@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162010: [geli] panic: Provider's error should be set (error=0)(device=label/feiya.eli). X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 04:22:51 -0000 Synopsis: [geli] panic: Provider's error should be set (error=0)(device=label/feiya.eli). Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Wed Oct 26 04:21:49 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162010 From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 06:51:35 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DE391065675; Wed, 26 Oct 2011 06:51:35 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 66E018FC1B; Wed, 26 Oct 2011 06:51:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q6pZ1P016560; Wed, 26 Oct 2011 06:51:35 GMT (envelope-from ae@freefall.freebsd.org) Received: (from ae@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q6pZuT016551; Wed, 26 Oct 2011 06:51:35 GMT (envelope-from ae) Date: Wed, 26 Oct 2011 06:51:35 GMT Message-Id: <201110260651.p9Q6pZuT016551@freefall.freebsd.org> To: ae@FreeBSD.org, freebsd-bugs@FreeBSD.org, ae@FreeBSD.org From: ae@FreeBSD.org Cc: Subject: Re: bin/152259: bsnmpd(1) fails with stack overflow during GETBULK of dskTable X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 06:51:35 -0000 Synopsis: bsnmpd(1) fails with stack overflow during GETBULK of dskTable Responsible-Changed-From-To: freebsd-bugs->ae Responsible-Changed-By: ae Responsible-Changed-When: Wed Oct 26 06:51:19 UTC 2011 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=152259 From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 08:00:31 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75DC5106566C for ; Wed, 26 Oct 2011 08:00:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CC108FC16 for ; Wed, 26 Oct 2011 08:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9Q80Ve4095813 for ; Wed, 26 Oct 2011 08:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9Q80V8D095812; Wed, 26 Oct 2011 08:00:31 GMT (envelope-from gnats) Date: Wed, 26 Oct 2011 08:00:31 GMT Message-Id: <201110260800.p9Q80V8D095812@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Garrett Cooper Cc: Subject: Re: misc/143831: [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependency X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Garrett Cooper List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 08:00:31 -0000 The following reply was made to PR misc/143831; it has been noted by GNATS. From: Garrett Cooper To: bug-followup@FreeBSD.org, gcooper@FreeBSD.org Cc: Subject: Re: misc/143831: [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependency Date: Wed, 26 Oct 2011 00:55:17 -0700 This PR should be closed in favor of the last patch that I submitted to = bin/143830 . Thanks! -Garrett= From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 11:00:21 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EA99106566C for ; Wed, 26 Oct 2011 11:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12E028FC12 for ; Wed, 26 Oct 2011 11:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QB0Khd066610 for ; Wed, 26 Oct 2011 11:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9QB0K2X066609; Wed, 26 Oct 2011 11:00:20 GMT (envelope-from gnats) Resent-Date: Wed, 26 Oct 2011 11:00:20 GMT Resent-Message-Id: <201110261100.p9QB0K2X066609@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, Hooman Fazaeli Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADF04106564A for ; Wed, 26 Oct 2011 10:58:21 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9E49A8FC08 for ; Wed, 26 Oct 2011 10:58:21 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QAwL6V038811 for ; Wed, 26 Oct 2011 10:58:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9QAwL5v038810; Wed, 26 Oct 2011 10:58:21 GMT (envelope-from nobody) Message-Id: <201110261058.p9QAwL5v038810@red.freebsd.org> Date: Wed, 26 Oct 2011 10:58:21 GMT From: Hooman Fazaeli To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162028: misplaced #endif in ixgbe.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 11:00:21 -0000 >Number: 162028 >Category: kern >Synopsis: misplaced #endif in ixgbe.c >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 26 11:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hooman Fazaeli >Release: 7.4-RELEASE >Organization: Sepehr S. T. Co. Ltd. >Environment: FreeBSD HP04 7.4-RELEASE FreeBSD 7.4-RELEASE #1: Thu May 12 02:24:45 IRDT 2011 admin@:/usr/src/sys/i386/compile/SERVER74-001 i386 >Description: A misplaced #endif in ixgbe_ioctl() causes interface MTU to become zero when INET and INET6 are undefined. >How-To-Repeat: See sys/dev/ixgbe/ixgbe.c v 1.53 function ixgbe_ioctl. >Fix: Patch attached with submission follows: --- ixgbe.c.orig 2011-10-17 20:37:17.000000000 +0330 +++ ixgbe.c 2011-10-17 20:38:40.000000000 +0330 @@ -898,8 +898,8 @@ arp_ifinit(ifp, ifa); } else error = ether_ioctl(ifp, command, data); - break; #endif + break; case SIOCSIFMTU: IOCTL_DEBUGOUT("ioctl: SIOCSIFMTU (Set Interface MTU)"); if (ifr->ifr_mtu > IXGBE_MAX_FRAME_SIZE - ETHER_HDR_LEN) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 12:14:13 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 635A3106564A for ; Wed, 26 Oct 2011 12:14:13 +0000 (UTC) (envelope-from agent@ukrs238770.pur3.net) Received: from mta1439.pur3.net (mta1439.pur3.net [212.64.143.9]) by mx1.freebsd.org (Postfix) with ESMTP id F18358FC1B for ; Wed, 26 Oct 2011 12:14:12 +0000 (UTC) Received: from localhost (127.0.0.1) by mta1439.pur3.net (PowerMTA(TM) v3.5r16) id hkvspa0s4s4l for ; Wed, 26 Oct 2011 12:54:09 +0100 (envelope-from ) MIME-Version: 1.0 From: "Smallloans" X-MailId: {~J8760139987256920441123543287~} To: freebsd-bugs@freebsd.org Date: Wed, 26 Oct 2011 12:54:09 +0100 Message-ID: <0.0.19B.120.1CC93D5F875547E.0@mta1439.pur3.net> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?iso-8859-1?q?A_loan_of_upto_=A3950_has_been_pre-approved=2C_pl?= =?iso-8859-1?q?ease_complete_now?= X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Smallloans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 12:14:13 -0000 Apply with Small Loans Today - Get up to £1000 in 15 minutes: http://www.loanssmall.co.uk/ (Small Loans): http://www.loanssmall.co.uk/ Get up to £1000 in 15 minutes! Simply complete our simple form and within as little as 15 minutes, you could have up to £1000 within your bank account. We also provide you with an instant online decision, without the need for faxing or returning any paperwork! Apply Now: http://www.loanssmall.co.uk/ ------------------------------------------------------------------------------ Representative APR 1737% Representative Loan Example: Borrow £300 for 30 days, Amount payable - £375, Interest - £75, Interest rate (pa) - 1737% (variable) -- To unsubscribe, visit: http://themoneyhutmail.co.uk/_act/get_rcr.php?J8760139987256920441123543287 {~J8760139987256920441123543287~} From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 12:38:51 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22703106566C; Wed, 26 Oct 2011 12:38:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF6ED8FC16; Wed, 26 Oct 2011 12:38:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QCco2B063597; Wed, 26 Oct 2011 12:38:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9QCcopd063593; Wed, 26 Oct 2011 12:38:50 GMT (envelope-from linimon) Date: Wed, 26 Oct 2011 12:38:50 GMT Message-Id: <201110261238.p9QCcopd063593@freefall.freebsd.org> To: gcooper@FreeBSD.org, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: misc/143831: [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependency X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 12:38:51 -0000 Synopsis: [bsd.own.mk] [patch] Fix missing atm -> bsnmp dependency State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Oct 26 12:38:34 UTC 2011 State-Changed-Why: see bin/143830. http://www.freebsd.org/cgi/query-pr.cgi?pr=143831 From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 16:50:22 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2A9F106566B for ; Wed, 26 Oct 2011 16:50:22 +0000 (UTC) (envelope-from james@mansionfamily.plus.com) Received: from relay.pcl-ipout02.plus.net (relay.pcl-ipout02.plus.net [212.159.7.100]) by mx1.freebsd.org (Postfix) with ESMTP id 5C3158FC1C for ; Wed, 26 Oct 2011 16:50:21 +0000 (UTC) Received: from avasout02.plus.net ([212.159.14.17]) by relay.pcl-ipout02.plus.net with ESMTP; 26 Oct 2011 17:21:01 +0100 Received: from server.barnhouse ([80.229.150.39]) by avasout02.plus.net with smtp id pUM01h0040rF08o01UM1Rk; Wed, 26 Oct 2011 17:21:01 +0100 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.0 cv=GPiK45xK c=1 sm=1 a=KcaHU+F0vwy42TIp8RsFnw==:17 a=yAP4_T4JbDAA:10 a=wLNUC47kYTMA:10 a=8nJEP1OIZ-IA:10 a=ceKTTlTXTvozYpDotyYA:9 a=MqrrAY8hqsllHwFeaiIA:7 a=wPNLvfGTeEIA:10 a=KcaHU+F0vwy42TIp8RsFnw==:117 Received: from [192.168.0.132] (James-PC.barnhouse [192.168.0.132]) by server.barnhouse (Postfix) with ESMTP id 38BC568204D for ; Wed, 26 Oct 2011 17:21:07 +0100 (BST) Message-ID: <4EA83368.1050603@mansionfamily.plus.com> Date: Wed, 26 Oct 2011 17:20:56 +0100 From: james User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Experiences with 9.0-rc1 installer, small home NAS/fileserver. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: james@mansionfamily.plus.com List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 16:50:22 -0000 Not sure this is the best place to give feedback Tho I'm certainly going to complain. Bit random, notes as I go (from about half-way through a frustrating day anyway) The system: AMD E350 mobo, 4off 2GB drives I want to use in ZFS RAIDZ, and an SSD on SATA5 I want to use for boot/zil/l2arc. CD is USB external. Boot ends: cd0: cd present [... records] Mounting from cd9660:/dev/iso9660/FREEBSD_INSTALL failed with error 19. Loader variables vfs.root.mountfrom=cd9660:/dev/iso9660/FREEBSD_INSTALL vfs.root.mountfrom.options=ro Then it asks for manual root specification. At this point: cd9660:/dev/cd0 *does* work Now, what I'd like to do is to use the SSD (ada4) for boot, 2Gb ZIL, 30GB L2ARC. This is NOT straightforward, it seems, and I found the system less easy to use than sysinstall. Worse, I was able to run sysinstall from the live cd, and to partition and slice the disk as I wanted - but I couldn't convince it to load the distribution sets using either 'CD/DVD' or 'existing filesystem'. Now, I thought I'd managed to get sysinstall to partition it and create a bunch of slices, but next time into the new installer it seemed not. Odd. Anyway, it seems very hard to get the new installer to create an ada4s1a type slice - I ended up with GPT ada4p1 to ada4p5 where p4 is 2G with no moint and p5 is 30G with no moint point. Not a very happy experience. The old sysinstall fdisk and label screens were more usable in my view (and I'm only an occassional FreeBSD user - I'm trying this because Illumos doesn't handle the LAN chip on this mobo), and what is there now is neither 'the same but better' nor 'more like you get in Linux'. Full marks for trying to allow GPT/DOS/BSD type partitioning, but it was very frustrating in practice. In particular, if you're going to provide sysinstall so we can just go to live CD and fire it up - please make it work! I got to a point where I have ada4 with GPT table, p1 to p4 defined, 32GB free. If I go 'Create' and change the type to 'freebsd' (ie delete '-ufs' because I'm not going to mount it - I'm going to use it as L2ARC) then I don't get ada4p5 - I get ada4s5 and type is BSD. Now if I go 'Modify' on ada4s5 then I get an error popup 'Invalid argument: arg0 'ada4s5'). I can create ada4p5 as 'freebsd-ufs' with no mount point. There's no hint which type strings are valid, and I was able to use 'freebsd' if I create as 'freebsd-ufs' and then 'modify' and remove '-ufs'. Ideally, of course, there would be: - some help about what strings are OK - options for 'raw', and perhaps some ZFS-related things too (zpool device, cache, log) if it doesn't make sense to create as raw. Having said all that, when the installer works OK and does what you want, then its pretty quick. Other nits: * if I set a UK keyboard, then probably I want Europe/United Kingdom as the default timezone. * the boot screen daemon has no face features! At least its installed now, and uses a pleasingly small amount of RAM. prior to creating a zpool, anyhow. James From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 17:10:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19FAC106568C for ; Wed, 26 Oct 2011 17:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 093C88FC1A for ; Wed, 26 Oct 2011 17:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QHACle009950 for ; Wed, 26 Oct 2011 17:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9QHACa5009949; Wed, 26 Oct 2011 17:10:12 GMT (envelope-from gnats) Date: Wed, 26 Oct 2011 17:10:12 GMT Message-Id: <201110261710.p9QHACa5009949@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/160979: commit references a PR X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 17:10:13 -0000 The following reply was made to PR bin/160979; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/160979: commit references a PR Date: Wed, 26 Oct 2011 17:04:41 +0000 (UTC) Author: rodrigc Date: Wed Oct 26 17:04:26 2011 New Revision: 226800 URL: http://svn.freebsd.org/changeset/base/226800 Log: Add a "kern.features.ata_cam" sysctl in the kernel when the ATA_CAM kernel option is defined. This sysctl can be queried by feature_present(3). Query for this feature in /sbin/atacontrol and /usr/sbin/burncd. If these utilities detect that ATA_CAM is enabled, then these utilities will error out. These utilities are compatible with the old ATA driver, but are incomptible with the new ATA_CAM driver. By erroring out, we give end-users an idea as to what remedies to use, and reduce the need for them to file PR's. For atacontrol, camcontrol must be used instead, and for burncd, alternative utilties from the ports collection must be used such as sysutils/cdrtools. In future, maybe someone can re-write burncd to work with ATA_CAM, but at least for now, we give a somewhat useful error message to end users. PR: 160979 Reviewed by: jh, Arnaud Lacombe Approved by: re (kib) Reported by: Joe Barbish Modified: stable/9/sbin/atacontrol/atacontrol.8 stable/9/sbin/atacontrol/atacontrol.c stable/9/sys/dev/ata/ata-all.c stable/9/usr.sbin/burncd/burncd.8 stable/9/usr.sbin/burncd/burncd.c Directory Properties: stable/9/sbin/atacontrol/ (props changed) stable/9/sys/ (props changed) stable/9/usr.sbin/burncd/ (props changed) Modified: stable/9/sbin/atacontrol/atacontrol.8 ============================================================================== --- stable/9/sbin/atacontrol/atacontrol.8 Wed Oct 26 16:11:49 2011 (r226799) +++ stable/9/sbin/atacontrol/atacontrol.8 Wed Oct 26 17:04:26 2011 (r226800) @@ -25,12 +25,19 @@ .\" .\" $FreeBSD$ .\" -.Dd February 21, 2009 +.Dd October 9, 2011 .Dt ATACONTROL 8 .Os .Sh NAME .Nm atacontrol .Nd ATA device driver control program +.Pp +This utility was +.Em deprecated +in +.Fx 9.0 . +See +.Sx NOTES . .Sh SYNOPSIS .Nm .Aq Ar command @@ -361,11 +368,17 @@ or syslog logging on it as the disk will up all the time. .Sh SEE ALSO .Xr ata 4 +.Xr cam 4 +.Xr camcontrol 8 .Sh HISTORY The .Nm utility first appeared in .Fx 4.6 . +.Pp +.Nm +was deprecated in +.Fx 9.0 . .Sh AUTHORS .An -nosplit The @@ -377,3 +390,16 @@ utility was written by This manual page was written by .An S\(/oren Schmidt .Aq sos@FreeBSD.org . +.Sh NOTES +The +.Nm +utility was deprecated in +.Fx 9.0 . +When +.Bd -ragged -offset indent +.Cd "options ATA_CAM" +.Ed +.Pp +is compiled into the kernel, then +.Xr camcontrol 8 +must be used instead. Modified: stable/9/sbin/atacontrol/atacontrol.c ============================================================================== --- stable/9/sbin/atacontrol/atacontrol.c Wed Oct 26 16:11:49 2011 (r226799) +++ stable/9/sbin/atacontrol/atacontrol.c Wed Oct 26 17:04:26 2011 (r226800) @@ -378,6 +378,11 @@ main(int argc, char **argv) { int fd, mode, channel, array; + if (feature_present("ata_cam")) { + errx(1, "\nATA_CAM option is enabled in kernel.\n" + "Please use camcontrol instead."); + } + if (argc < 2) usage(); Modified: stable/9/sys/dev/ata/ata-all.c ============================================================================== --- stable/9/sys/dev/ata/ata-all.c Wed Oct 26 16:11:49 2011 (r226799) +++ stable/9/sys/dev/ata/ata-all.c Wed Oct 26 17:04:26 2011 (r226800) @@ -120,6 +120,9 @@ SYSCTL_INT(_hw_ata, OID_AUTO, wc, CTLFLA TUNABLE_INT("hw.ata.setmax", &ata_setmax); SYSCTL_INT(_hw_ata, OID_AUTO, setmax, CTLFLAG_RDTUN, &ata_setmax, 0, "ATA disk set max native address"); +#ifdef ATA_CAM +FEATURE(ata_cam, "ATA devices are accessed through the cam(4) driver"); +#endif /* * newbus device interface related functions Modified: stable/9/usr.sbin/burncd/burncd.8 ============================================================================== --- stable/9/usr.sbin/burncd/burncd.8 Wed Oct 26 16:11:49 2011 (r226799) +++ stable/9/usr.sbin/burncd/burncd.8 Wed Oct 26 17:04:26 2011 (r226800) @@ -27,12 +27,19 @@ .\" .\" $FreeBSD$ .\" -.Dd December 21, 2009 +.Dd October 9, 2011 .Dt BURNCD 8 .Os .Sh NAME .Nm burncd .Nd control the ATAPI CD-R/RW driver +.Pp +This utility was +.Em deprecated +in +.Fx 9.0 . +See +.Sx NOTES . .Sh SYNOPSIS .Nm .Op Fl deFlmnpqtv @@ -211,6 +218,10 @@ The .Nm utility appeared in .Fx 4.0 . +.Pp +.Nm +was deprecated in +.Fx 9.0 . .Sh AUTHORS The .Nm @@ -220,3 +231,19 @@ Denmark .Aq sos@FreeBSD.org . .Sh BUGS Probably, please report when found. +.Sh NOTES +When +.Bd -ragged -offset indent +.Cd "options ATA_CAM" +.Ed +.Pp +is compiled into the kernel, then +.Xr cdrecord 1 , +available in the +.Fx +Ports Collection as part of the +.Pa sysutils/cdrtools +port, must be used instead. +Refer to: +.Pp +http://www.freebsd.org/doc/handbook/creating-cds.html#CDRECORD Modified: stable/9/usr.sbin/burncd/burncd.c ============================================================================== --- stable/9/usr.sbin/burncd/burncd.c Wed Oct 26 16:11:49 2011 (r226799) +++ stable/9/usr.sbin/burncd/burncd.c Wed Oct 26 17:04:26 2011 (r226800) @@ -82,6 +82,13 @@ main(int argc, char **argv) int block_size = 0, block_type = 0, cdopen = 0, dvdrw = 0; const char *dev, *env_speed; + if (feature_present("ata_cam")) { + errx(1, "\nATA_CAM option is enabled in kernel.\n" + "Install the sysutils/cdrtools port and use cdrecord instead.\n\n" + "Please refer to:\n" + "http://www.freebsd.org/doc/handbook/creating-cds.html#CDRECORD"); + } + if ((dev = getenv("CDROM")) == NULL) dev = "/dev/acd0"; _______________________________________________ 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 Wed Oct 26 17:29:23 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76D08106566B for ; Wed, 26 Oct 2011 17:29:23 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [IPv6:2001:470:1:117::25]) by mx1.freebsd.org (Postfix) with ESMTP id 5D5FD8FC12 for ; Wed, 26 Oct 2011 17:29:23 +0000 (UTC) Received: from delta.delphij.net (drawbridge.ixsystems.com [206.40.55.65]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by anubis.delphij.net (Postfix) with ESMTPSA id CD426DDFA; Wed, 26 Oct 2011 10:29:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=delphij.net; s=anubis; t=1319650163; bh=SDFaRN916T7TYeWoMO76B45/ZYAZEnykInxtX2qKgI8=; h=Message-ID:Date:From:Reply-To:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=0n8sWXemi69Ia3N7mOZG92hnnAplR1JvLuIj8TzFJKCnWYPnrlSrJ3DUB4X8jeDEA BrJjR4L1OLW6eqLFxrRM9Fh6UAhmLziior0rDLkHQYZ0gO/psnjVbphJkGmbDfv8Gf ntiJFOj1FSjbRDIWI9ukiPU/1YOcAhnkaeGtYs6c= Message-ID: <4EA84371.3070805@delphij.net> Date: Wed, 26 Oct 2011 10:29:21 -0700 From: Xin LI Organization: The FreeBSD Project MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.org References: <201110161431.p9GEVxRg094601@red.freebsd.org> In-Reply-To: <201110161431.p9GEVxRg094601@red.freebsd.org> OpenPGP: id=3FCA37C1; url=http://www.delphij.net/delphij.asc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd.org@logicalsolutns.com Subject: Re: misc/161710: SSHD starts on boot even if sshd_enable="NO" in 8.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 17:29:23 -0000 On 10/16/11 07:31, John Blazek wrote: > [root@kahlua]:[~]# cat /etc/rc.conf | grep sshd > # sshd is controlleb by inetd ^^^^^^^^^^^^^^^^^^^ I'd check inetd and make sure it's not started there. In my opinion it's wrong to start sshd from inetd anyways... Cheers, -- Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 17:40:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A4621065677 for ; Wed, 26 Oct 2011 17:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47CBE8FC22 for ; Wed, 26 Oct 2011 17:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QHe9kd039342 for ; Wed, 26 Oct 2011 17:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9QHe9ru039341; Wed, 26 Oct 2011 17:40:09 GMT (envelope-from gnats) Resent-Date: Wed, 26 Oct 2011 17:40:09 GMT Resent-Message-Id: <201110261740.p9QHe9ru039341@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, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E88F41065670 for ; Wed, 26 Oct 2011 17:38:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BF2568FC12 for ; Wed, 26 Oct 2011 17:38:10 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QHcAff014362 for ; Wed, 26 Oct 2011 17:38:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9QHcAsT014361; Wed, 26 Oct 2011 17:38:10 GMT (envelope-from nobody) Message-Id: <201110261738.p9QHcAsT014361@red.freebsd.org> Date: Wed, 26 Oct 2011 17:38:10 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162036: [geom] Fatal trap 12: page fault while in kernel mode -- Stopped at atomic_subtract_int+0x4 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 17:40:09 -0000 >Number: 162036 >Category: kern >Synopsis: [geom] Fatal trap 12: page fault while in kernel mode -- Stopped at atomic_subtract_int+0x4 >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 Oct 26 17:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: HEAD >Organization: >Environment: FreeBSD r500.local 10.0-CURRENT FreeBSD 10.0-CURRENT #6 r+3084a02: Mon Oct 24 15:55:58 CEST 2011 fk@r500.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I reproducible get the following (handtranscribed) panic when sending an zfs snapshot to a geli provider based on a labeled USB stick that disappears (due to a bug, or because it's unplugged): Fatal trap 12: page fault while in kernel mode cpuid = 0: apic id = 00 fault virtual address = 0x288 fault code = supervisor write data, page not present instruction pointer = 0x20:0xffffffff808e2984 stack pointer = 0x28:0xffffff800023fba0 frame pointer = 0x28:0xffffff800023fbb0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 13 (g_up) [ thread pid 13 tid 100010 ] Stopped at atomic_subtract_int+0x4: lock subl %esi,(%rdi) db> where Tracing pid 13 tid 100010 td 0xfffffe00027998c0 atomic_subtract_int() at atomic_subtract_int+0x4 g_io_schdule_up() at g_io_schedule_up+0xa6 g_up_procbody() at g_up_procbody+0x5c fork_exit() at fork_exit+0x11f fork_trampoline() at fork_trampoline+0xe --- trap 0, rip = 0, rsp = 0xffffff800023fd00, rbp 0 --- It seems to be important that ZFS is actually writing to the stick. If the stick is unplugged while the operation is stalled for other reasons, this particular panic doesn't seem to occur. In case the zpool layout isn't clear, it's the same as used in: http://www.freebsd.org/cgi/query-pr.cgi?pr=162010 While I end up in the debugger, dumping core doesn't work and produces a double fault. The panic above is from a custom kernel without WITNESS and INVARIANTS (a bit older than the uname -a output above), but enabling them doesn't seem to affect the trace before the double fault. I wasn't able to reproduce the panic by unplugging the stick while writing to the pool using dd (but only tried once). >How-To-Repeat: Either use a flaky USB stick as geli-encrypted vdev and wait for it to disappear by itself while a zfs receive is in progress and actually writing to the device, or use a reliable stick and unplug it manually while zpool iostat is showing writes. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Oct 26 20:10:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 063EC1065674 for ; Wed, 26 Oct 2011 20:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D17F88FC13 for ; Wed, 26 Oct 2011 20:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9QKACbb075629 for ; Wed, 26 Oct 2011 20:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9QKACgP075628; Wed, 26 Oct 2011 20:10:12 GMT (envelope-from gnats) Date: Wed, 26 Oct 2011 20:10:12 GMT Message-Id: <201110262010.p9QKACgP075628@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: ora wong Cc: Subject: Re: bin/9502: `me' macro documentation incorrectly defines \n(yr X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ora wong List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2011 20:10:13 -0000 The following reply was made to PR bin/9502; it has been noted by GNATS. From: ora wong To: bug-followup@FreeBSD.org, peter.jeremy@alcatel.com.au Cc: Subject: Re: bin/9502: `me' macro documentation incorrectly defines \n(yr Date: Thu, 27 Oct 2011 02:38:24 +0700 --0016e6dee805a478fc04b038cc2c Content-Type: text/plain; charset=ISO-8859-1 --0016e6dee805a478fc04b038cc2c Content-Type: text/html; charset=ISO-8859-1 --0016e6dee805a478fc04b038cc2c-- From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 09:50:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FA88106566B for ; Thu, 27 Oct 2011 09:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D86D8FC0C for ; Thu, 27 Oct 2011 09:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9R9o8kf073461 for ; Thu, 27 Oct 2011 09:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9R9o8xW073460; Thu, 27 Oct 2011 09:50:08 GMT (envelope-from gnats) Resent-Date: Thu, 27 Oct 2011 09:50:08 GMT Resent-Message-Id: <201110270950.p9R9o8xW073460@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, jhUIjOIQIqkK Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D6781065700 for ; Thu, 27 Oct 2011 09:45:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 44A178FC16 for ; Thu, 27 Oct 2011 09:45:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9R9jRPK013470 for ; Thu, 27 Oct 2011 09:45:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9R9jRBf013469; Thu, 27 Oct 2011 09:45:27 GMT (envelope-from nobody) Message-Id: <201110270945.p9R9jRBf013469@red.freebsd.org> Date: Thu, 27 Oct 2011 09:45:27 GMT From: jhUIjOIQIqkK To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162056: YaIxtVkSbKfXdRqO X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 09:50:08 -0000 >Number: 162056 >Category: misc >Synopsis: YaIxtVkSbKfXdRqO >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 27 09:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: jhUIjOIQIqkK >Release: PkQNqbRfyTWIKfSCh >Organization: lFqNOtUmsAZZtfCsKPL >Environment: Hey, that's poewfrul. Thanks for the news. >Description: Hey, that's poewfrul. Thanks for the news. >How-To-Repeat: Hey, that's poewfrul. Thanks for the news. >Fix: Hey, that's poewfrul. Thanks for the news. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 11:44:17 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0F8D106566B; Thu, 27 Oct 2011 11:44:15 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A93378FC16; Thu, 27 Oct 2011 11:44:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RBiFjF090565; Thu, 27 Oct 2011 11:44:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RBiFHZ090561; Thu, 27 Oct 2011 11:44:15 GMT (envelope-from linimon) Date: Thu, 27 Oct 2011 11:44:15 GMT Message-Id: <201110271144.p9RBiFHZ090561@freefall.freebsd.org> To: julia_d@roadrunner.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnats-adm@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: junk/162056: YaIxtVkSbKfXdRqO X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 11:44:17 -0000 Synopsis: YaIxtVkSbKfXdRqO State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Oct 27 11:43:51 UTC 2011 State-Changed-Why: time to move out of the basement. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 27 11:43:51 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=162056 From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 15:10:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0F071065674 for ; Thu, 27 Oct 2011 15:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF41B8FC15 for ; Thu, 27 Oct 2011 15:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RFA9UV074835 for ; Thu, 27 Oct 2011 15:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RFA9nV074834; Thu, 27 Oct 2011 15:10:09 GMT (envelope-from gnats) Resent-Date: Thu, 27 Oct 2011 15:10:09 GMT Resent-Message-Id: <201110271510.p9RFA9nV074834@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, RIchard Neese Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C728E106566B for ; Thu, 27 Oct 2011 15:06:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9DFCA8FC12 for ; Thu, 27 Oct 2011 15:06:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RF6Ngk022866 for ; Thu, 27 Oct 2011 15:06:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9RF6NWQ022865; Thu, 27 Oct 2011 15:06:23 GMT (envelope-from nobody) Message-Id: <201110271506.p9RF6NWQ022865@red.freebsd.org> Date: Thu, 27 Oct 2011 15:06:23 GMT From: RIchard Neese To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162061: Update to misc/freeswitch-scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 15:10:10 -0000 >Number: 162061 >Category: misc >Synopsis: Update to misc/freeswitch-scripts >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 27 15:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: RIchard Neese >Release: 8.2-Stable >Organization: >Environment: FreeBSD ports.freebsd.org 8.2-STABLE-201105 FreeBSD 8.2-STABLE-201105 #0: Tue May 17 05:46:49 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: basic update to misc/freeswitch-scripts to keeep it par with -core >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 15:12:36 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70E551065675; Thu, 27 Oct 2011 15:12:36 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 161CA8FC1C; Thu, 27 Oct 2011 15:12:35 +0000 (UTC) Received: by gyd8 with SMTP id 8so3635685gyd.13 for ; Thu, 27 Oct 2011 08:12:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type; bh=/BxIjcuLZkR/AsU8sIx+QUz9U5TnwvEpKJBUWrGLikc=; b=YNoe42L4SNJXY8gq0RgK/vciVCFN7bk9NoAgn9HlX7shDGnETZdXKPYKxi77EgacaS a2wGJ+eiwtjTbtLZrrt4AcxsqwmH58cQFrBYuEdgprVDwzAxzuMSrXALPsm0fcTiFila YqsHZvMEjsXRnT3t8BkNTAhejowg3UaMOFdBI= Received: by 10.100.209.4 with SMTP id h4mr570157ang.24.1319728355464; Thu, 27 Oct 2011 08:12:35 -0700 (PDT) Received: from Richard-Neeses-iMac.local (62-191.127-70.tampabay.res.rr.com. [70.127.191.62]) by mx.google.com with ESMTPS id 32sm15657036anu.10.2011.10.27.08.12.33 (version=SSLv3 cipher=OTHER); Thu, 27 Oct 2011 08:12:34 -0700 (PDT) Message-ID: <4EA974E0.3020506@gmail.com> Date: Thu, 27 Oct 2011 11:12:32 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org References: <201110271510.p9RFA9Yu074830@freefall.freebsd.org> In-Reply-To: <201110271510.p9RFA9Yu074830@freefall.freebsd.org> X-Enigmail-Version: 1.3.2 Content-Type: multipart/mixed; boundary="------------060904090009070300080108" Cc: Subject: Re: misc/162061: Update to misc/freeswitch-scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 15:12:36 -0000 This is a multi-part message in MIME format. --------------060904090009070300080108 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 10/27/11 11:10 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `misc/162061'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=162061 > >> Category: misc >> Responsible: freebsd-bugs >> Synopsis: Update to misc/freeswitch-scripts >> Arrival-Date: Thu Oct 27 15:10:09 UTC 2011 --------------060904090009070300080108 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="freeswitch-scripts.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="freeswitch-scripts.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 17 Dec 2010 21:42:33 -0000 1.4 +++ Makefile 27 Oct 2011 14:51:23 -0000 @@ -6,10 +6,11 @@ # PORTNAME= freeswitch-scripts -PORTVERSION= 201044 +PORTVERSION= 1.0.7 +PORTREVISION= 1 +PORTEPOCH= 1 CATEGORIES= misc -MASTER_SITES= ftp://ftp.secure-computing.net/pub/freeswitch/ \ - ftp://ftp2.secure-computing.net/pub/freeswitch/ +MASTER_SITES= http://dl.dropbox.com/u/152504/ DISTNAME= ${BASE_PORTNAME}-${PORTVERSION} DIST_SUBDIR= ${BASE_PORTNAME} @@ -20,6 +21,8 @@ BASE_PORTNAME= freeswitch SUB_FILES= pkg-install +#RUN_DEPENDS= ${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch-core + FREESWITCH_USER= freeswitch FREESWITCH_GROUP= ${FREESWITCH_USER} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 17 Dec 2010 21:42:33 -0000 1.2 +++ distinfo 27 Oct 2011 14:51:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (freeswitch/freeswitch-201044.tar.gz) = cea3583bcc1febc8b6ad85ca38c991d2d7319945784dd915834c1479b33bbd4b -SIZE (freeswitch/freeswitch-201044.tar.gz) = 42320468 +SHA256 (freeswitch/freeswitch-1.0.7.tar.gz) = c36bb7fce8caa88fc76e63f85968cdd912907969476c8d90f8fd402e805f3e66 +SIZE (freeswitch/freeswitch-1.0.7.tar.gz) = 36116129 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 17 Dec 2010 21:42:33 -0000 1.3 +++ pkg-plist 27 Oct 2011 14:51:23 -0000 @@ -8,7 +8,9 @@ %%WITH_LUA%%etc/freeswitch/scripts/lua/helloworld.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/mwi_event.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/originate.lua +%%WITH_LUA%%etc/freeswitch/scripts/lua/sound_test.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/zrtp_agent.lua +%%WITH_PERL%%etc/freeswitch/scripts/perl/add_user %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH-GizmoConfig.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/ChangeLog %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/Client.pm @@ -41,6 +43,7 @@ %%WITH_PERL%%etc/freeswitch/scripts/perl/multicast/send.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/mwi_event.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/originate.pl +%%WITH_PERL%%etc/freeswitch/scripts/perl/randomize-passwords.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/rpc.cgi %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/attended_transfer.button %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/blind_transfer.button @@ -89,6 +92,6 @@ %%WITH_PERL%%@dirrm etc/freeswitch/scripts/perl %%WITH_LUA%%@dirrm etc/freeswitch/scripts/lua %%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript/aadir -%%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript -@dirrmtry etc/freeswitch/scripts -@dirrmtry etc/freeswitch +%%WITH_JAVASCRIPT%%@dirrmtry etc/freeswitch/scripts/javascript +@exec chown -R freeswitch:freeswitch %D/etc/freeswitch/scripts/ +@exec find %D/etc/freeswitch/. -type d | xargs chmod 774 --------------060904090009070300080108-- From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 15:20:12 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 582EA1065672 for ; Thu, 27 Oct 2011 15:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CCE88FC1D for ; Thu, 27 Oct 2011 15:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RFKCp2085057 for ; Thu, 27 Oct 2011 15:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RFKCnv085056; Thu, 27 Oct 2011 15:20:12 GMT (envelope-from gnats) Date: Thu, 27 Oct 2011 15:20:12 GMT Message-Id: <201110271520.p9RFKCnv085056@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Richard E Neese Cc: Subject: Re: misc/162061: Update to misc/freeswitch-scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Richard E Neese List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 15:20:12 -0000 The following reply was made to PR misc/162061; it has been noted by GNATS. From: Richard E Neese To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/162061: Update to misc/freeswitch-scripts Date: Thu, 27 Oct 2011 11:12:32 -0400 This is a multi-part message in MIME format. --------------060904090009070300080108 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 10/27/11 11:10 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `misc/162061'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=162061 > >> Category: misc >> Responsible: freebsd-bugs >> Synopsis: Update to misc/freeswitch-scripts >> Arrival-Date: Thu Oct 27 15:10:09 UTC 2011 --------------060904090009070300080108 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="freeswitch-scripts.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="freeswitch-scripts.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 17 Dec 2010 21:42:33 -0000 1.4 +++ Makefile 27 Oct 2011 14:51:23 -0000 @@ -6,10 +6,11 @@ # PORTNAME= freeswitch-scripts -PORTVERSION= 201044 +PORTVERSION= 1.0.7 +PORTREVISION= 1 +PORTEPOCH= 1 CATEGORIES= misc -MASTER_SITES= ftp://ftp.secure-computing.net/pub/freeswitch/ \ - ftp://ftp2.secure-computing.net/pub/freeswitch/ +MASTER_SITES= http://dl.dropbox.com/u/152504/ DISTNAME= ${BASE_PORTNAME}-${PORTVERSION} DIST_SUBDIR= ${BASE_PORTNAME} @@ -20,6 +21,8 @@ BASE_PORTNAME= freeswitch SUB_FILES= pkg-install +#RUN_DEPENDS= ${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch-core + FREESWITCH_USER= freeswitch FREESWITCH_GROUP= ${FREESWITCH_USER} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 17 Dec 2010 21:42:33 -0000 1.2 +++ distinfo 27 Oct 2011 14:51:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (freeswitch/freeswitch-201044.tar.gz) = cea3583bcc1febc8b6ad85ca38c991d2d7319945784dd915834c1479b33bbd4b -SIZE (freeswitch/freeswitch-201044.tar.gz) = 42320468 +SHA256 (freeswitch/freeswitch-1.0.7.tar.gz) = c36bb7fce8caa88fc76e63f85968cdd912907969476c8d90f8fd402e805f3e66 +SIZE (freeswitch/freeswitch-1.0.7.tar.gz) = 36116129 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 17 Dec 2010 21:42:33 -0000 1.3 +++ pkg-plist 27 Oct 2011 14:51:23 -0000 @@ -8,7 +8,9 @@ %%WITH_LUA%%etc/freeswitch/scripts/lua/helloworld.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/mwi_event.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/originate.lua +%%WITH_LUA%%etc/freeswitch/scripts/lua/sound_test.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/zrtp_agent.lua +%%WITH_PERL%%etc/freeswitch/scripts/perl/add_user %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH-GizmoConfig.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/ChangeLog %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/Client.pm @@ -41,6 +43,7 @@ %%WITH_PERL%%etc/freeswitch/scripts/perl/multicast/send.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/mwi_event.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/originate.pl +%%WITH_PERL%%etc/freeswitch/scripts/perl/randomize-passwords.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/rpc.cgi %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/attended_transfer.button %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/blind_transfer.button @@ -89,6 +92,6 @@ %%WITH_PERL%%@dirrm etc/freeswitch/scripts/perl %%WITH_LUA%%@dirrm etc/freeswitch/scripts/lua %%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript/aadir -%%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript -@dirrmtry etc/freeswitch/scripts -@dirrmtry etc/freeswitch +%%WITH_JAVASCRIPT%%@dirrmtry etc/freeswitch/scripts/javascript +@exec chown -R freeswitch:freeswitch %D/etc/freeswitch/scripts/ +@exec find %D/etc/freeswitch/. -type d | xargs chmod 774 --------------060904090009070300080108-- From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 16:20:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25B6F106564A for ; Thu, 27 Oct 2011 16:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F2AA68FC12 for ; Thu, 27 Oct 2011 16:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RGK7Al039714 for ; Thu, 27 Oct 2011 16:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RGK7Uk039713; Thu, 27 Oct 2011 16:20:07 GMT (envelope-from gnats) Resent-Date: Thu, 27 Oct 2011 16:20:07 GMT Resent-Message-Id: <201110271620.p9RGK7Uk039713@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, Fabian Keil Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF25E106566B for ; Thu, 27 Oct 2011 16:16:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C4D3D8FC1A for ; Thu, 27 Oct 2011 16:16:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RGGS6B061424 for ; Thu, 27 Oct 2011 16:16:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9RGGS61061423; Thu, 27 Oct 2011 16:16:28 GMT (envelope-from nobody) Message-Id: <201110271616.p9RGGS61061423@red.freebsd.org> Date: Thu, 27 Oct 2011 16:16:28 GMT From: Fabian Keil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/162064: Loop in fetch when sending SIGINFO after the server stopped sending data X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 16:20:08 -0000 >Number: 162064 >Category: bin >Synopsis: Loop in fetch when sending SIGINFO after the server stopped sending data >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: Thu Oct 27 16:20:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Fabian Keil >Release: HEAD >Organization: >Environment: FreeBSD r500.local 10.0-CURRENT FreeBSD 10.0-CURRENT #370 r+e5cde8a: Tue Oct 25 21:12:37 CEST 2011 fk@r500.local:/usr/obj/usr/src/sys/ZOEY amd64 >Description: If fetch receives SIGINFO after the server stopped sending data it goes into a loop and starts eating 100% cpu even continuing after the connection to the server has been closed. It's my impression that fetch.c relies on fread() to modify errno in a way it doesn't. The following patch prevents the cpu-eating loop, but fetch still fails to properly save the received data: commit 2131ebe654b5d9b48a715ea1955941b9d3e89f4d Author: Fabian Keil Date: Sat Oct 15 22:12:54 2011 +0200 Manually set errno to 0 before calling fread() in fetch(). The fact that this makes a difference seems to suggest that fread() doesn't behave like fetch expects it to. diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index 9862276..18c6d5a 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -636,6 +636,7 @@ fetch(char *URL, const char *path) stat_end(&xs); siginfo = 0; } + errno = 0; /* XXX: Why does this have an effect? */ if ((size = fread(buf, 1, size, f)) == 0) { if (ferror(f) && errno == EINTR && !sigint) clearerr(f); >How-To-Repeat: Run a "webserver" like this one: (printf "HTTP/1.1 200 Okay\r\nConnection: close\r\nContent-Length: 10\r\n\r\n0123456789"; sleep 5) | nc -l 81 Use fetch to request a resource, send SIGINFO before the sleep time is up and watch it eating cpu time without doing anything useful: fk@r500 ~ $fetch http://127.0.0.1:81/ fetch.out 0% of 10 B 0 Bps load: 0.80 cmd: fetch 3698 [select] 0.70r 0.00u 0.00s 0% 2464k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps load: 0.83 cmd: fetch 3698 [runnable] 12.32r 0.64u 10.96s 70% 2504k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps load: 0.87 cmd: fetch 3698 [running] 24.50r 1.22u 22.54s 96% 2504k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps load: 0.91 cmd: fetch 3698 [running] 52.70r 2.84u 49.10s 100% 2504k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps load: 0.92 cmd: fetch 3698 [running] 59.60r 3.26u 55.55s 100% 2504k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps^C fetch: transfer interrupted With the errno patch one gets: fk@r500 /tank/scratch $fetch http://127.0.0.1:81/ fetch.out 0% of 10 B 0 Bps load: 0.74 cmd: fetch 3812 [select] 0.69r 0.00u 0.00s 0% 2464k fetch.out 0% of 10 B 0 Bps fetch.out 0% of 10 B 0 Bps fetch: http://127.0.0.1:81/: No error: 0 and no output file even though all the data has been delivered. If SIGINFO isn't sent, the resource is properly received. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 17:04:03 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83418106566C; Thu, 27 Oct 2011 17:04:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B42E8FC13; Thu, 27 Oct 2011 17:04:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RH43Gk085853; Thu, 27 Oct 2011 17:04:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RH43j2085849; Thu, 27 Oct 2011 17:04:03 GMT (envelope-from linimon) Date: Thu, 27 Oct 2011 17:04:03 GMT Message-Id: <201110271704.p9RH43j2085849@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/162061: Update to misc/freeswitch-scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 17:04:03 -0000 Synopsis: Update to misc/freeswitch-scripts Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Oct 27 17:03:47 UTC 2011 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=162061 From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 18:30:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E2EF1065746 for ; Thu, 27 Oct 2011 18:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 179688FC1C for ; Thu, 27 Oct 2011 18:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RIU9qr059440 for ; Thu, 27 Oct 2011 18:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RIU95Z059436; Thu, 27 Oct 2011 18:30:09 GMT (envelope-from gnats) Resent-Date: Thu, 27 Oct 2011 18:30:09 GMT Resent-Message-Id: <201110271830.p9RIU95Z059436@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, mark voltz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6521D106566C for ; Thu, 27 Oct 2011 18:24:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3C64C8FC08 for ; Thu, 27 Oct 2011 18:24:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RIOrXr015185 for ; Thu, 27 Oct 2011 18:24:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9RIOqDr015184; Thu, 27 Oct 2011 18:24:52 GMT (envelope-from nobody) Message-Id: <201110271824.p9RIOqDr015184@red.freebsd.org> Date: Thu, 27 Oct 2011 18:24:52 GMT From: mark voltz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162066: nmap libpcap error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 18:30:10 -0000 >Number: 162066 >Category: misc >Synopsis: nmap libpcap error >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: Thu Oct 27 18:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: mark voltz >Release: 9.0rc1 >Organization: >Environment: FreeBSD f9 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:51:43 UTC 2011 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When installing from "pkg_add", nmap looks for libpcap.so.7. Current: libpcap.so.8 Reinstalling from source resolves the issue. >How-To-Repeat: pkg_add -r nmap >Fix: Reinstall from source >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 20:39:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D02471065673; Thu, 27 Oct 2011 20:39:10 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A84CE8FC18; Thu, 27 Oct 2011 20:39:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RKdAjG081214; Thu, 27 Oct 2011 20:39:10 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RKdA7u081210; Thu, 27 Oct 2011 20:39:10 GMT (envelope-from gavin) Date: Thu, 27 Oct 2011 20:39:10 GMT Message-Id: <201110272039.p9RKdA7u081210@freefall.freebsd.org> To: eadler@FreeBSD.org, gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, gavin@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: conf/161847: [patch] reaper of the dead: remove ancient devfs example X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 20:39:10 -0000 Synopsis: [patch] reaper of the dead: remove ancient devfs example State-Changed-From-To: open->patched State-Changed-By: gavin State-Changed-When: Thu Oct 27 20:26:42 UTC 2011 State-Changed-Why: Fixed in head, MFC in two weeks. Responsible-Changed-From-To: freebsd-bugs->gavin Responsible-Changed-By: gavin Responsible-Changed-When: Thu Oct 27 20:26:42 UTC 2011 Responsible-Changed-Why: Mine. http://www.freebsd.org/cgi/query-pr.cgi?pr=161847 From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 20:50:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0D6B106564A for ; Thu, 27 Oct 2011 20:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E0888FC20 for ; Thu, 27 Oct 2011 20:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RKo9iK090209 for ; Thu, 27 Oct 2011 20:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9RKo93Z090208; Thu, 27 Oct 2011 20:50:09 GMT (envelope-from gnats) Resent-Date: Thu, 27 Oct 2011 20:50:09 GMT Resent-Message-Id: <201110272050.p9RKo93Z090208@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, Gregor Koscak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2906106566B for ; Thu, 27 Oct 2011 20:41:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 88EF08FC0A for ; Thu, 27 Oct 2011 20:41:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9RKfpBm082419 for ; Thu, 27 Oct 2011 20:41:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9RKfpdt082418; Thu, 27 Oct 2011 20:41:51 GMT (envelope-from nobody) Message-Id: <201110272041.p9RKfpdt082418@red.freebsd.org> Date: Thu, 27 Oct 2011 20:41:51 GMT From: Gregor Koscak To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162068: msk Marvell Yukon GE onboard card does not work in 1000baseTX mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 20:50:09 -0000 >Number: 162068 >Category: kern >Synopsis: msk Marvell Yukon GE onboard card does not work in 1000baseTX mode >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 27 20:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Gregor Koscak >Release: 9.0-RC1 >Organization: >Environment: FreeBSD eve.pika.sioff.net 9.0-RC1 FreeBSD 9.0-RC1 #6: Tue Oct 25 01:17:36 CEST 2011 wp@eve.pika.sioff.net:/usr/obj/usr/src/sys/EVE amd64 >Description: I have an onboard (Gigabyte GA-965P-DS3) GE card: mskc0: port 0x9000-0x90ff mem 0xe1000000-0xe1003fff irq 16 at device 0.0 on pci3 msk0: on mskc0 e1000phy0: PHY 0 on miibus0 e1000phy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow connected to a netgear GS108E ProSafe + switch. The card is able to get into link up state with little traffic being transfered (ssh access works to certain degree), but bulk transfers fail completely. The card shows some activity with tcpdump, but TCP sessions do not work. Then after a while (few tens of seconds) kernel reports mskc0: Tx descriptor error with several messages per second (it just floods the console). This is on 9.0-RC1. On 8.2-STABLE I also got watchdog timeouts. User experience remains unchanged after the switch from 8.2 to 9.0. It is possible for example to browse directory strucutre over samba, but not to transfer files. On 8.2 after 10-20 minutes of 1000basetx operation once the kernel panicked (I no longer have the output). The system is otherwise solid, so I suspect the msk driver. I can provide other output if requested. I'm not subscribed to any of the mailing lists. >How-To-Repeat: Connect msk device to GE port on a switch with media autoselect. Start transfering bulk data over TCP connection. >Fix: If msk device is switched to 100basetx this fixes the problem, but results in 100baset operation with half duplex: # ifconfig msk0: flags=8843 metric 0 mtu 1500 options=c011b [snip] media: Ethernet 100baseTX (100baseTX ) status: active I searched the web for similar problems, but none of suggested fixes worked: - turning off checksum offloading - hw.msk.msi_disable=1 - one of the old patches from a thread with a similar problem (dont ask me which one, i deleted the files once it did not work ;) the patch was submitted by Mr. Pyun YongHyeon ) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Oct 27 21:58:42 2011 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12D39106566C; Thu, 27 Oct 2011 21:58:42 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id ACADA8FC12; Thu, 27 Oct 2011 21:58:41 +0000 (UTC) Received: by ywt32 with SMTP id 32so4073365ywt.13 for ; Thu, 27 Oct 2011 14:58:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type; bh=JrNKF/dxUt6LDKkolELKojI06pu3ZccV4KVU3NjVEUA=; b=GyHrBmkFonTMeihi2mSOOPrtiBc20ve96R7jZ6Yq/7t0+6vAdS/OAPhVQD2esrP7yO 7RT/xEGFHY70mTkVpeji1tSlLC/GGFn1+RG0DUc566nYLATW4GvVgWXDqJG4SaBUwWJ6 8Qn3JWhj6uwuewJ/r70oQakaxaTOIIjcNJPuk= Received: by 10.150.14.9 with SMTP id 9mr235282ybn.80.1319752719281; Thu, 27 Oct 2011 14:58:39 -0700 (PDT) Received: from Richard-Neeses-iMac.local (62-191.127-70.tampabay.res.rr.com. [70.127.191.62]) by mx.google.com with ESMTPS id q32sm3259209anh.17.2011.10.27.14.58.37 (version=SSLv3 cipher=OTHER); Thu, 27 Oct 2011 14:58:38 -0700 (PDT) Message-ID: <4EA9D40C.8030706@gmail.com> Date: Thu, 27 Oct 2011 17:58:36 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org References: <201110271510.p9RFA9Yu074830@freefall.freebsd.org> In-Reply-To: <201110271510.p9RFA9Yu074830@freefall.freebsd.org> X-Enigmail-Version: 1.3.2 Content-Type: multipart/mixed; boundary="------------060703060403030702030101" Cc: Subject: Re: misc/162061: Update to misc/freeswitch-scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2011 21:58:42 -0000 This is a multi-part message in MIME format. --------------060703060403030702030101 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 10/27/11 11:10 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `misc/162061'. > The individual assigned to look at your > report is: freebsd-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=162061 > >> Category: misc >> Responsible: freebsd-bugs >> Synopsis: Update to misc/freeswitch-scripts >> Arrival-Date: Thu Oct 27 15:10:09 UTC 2011 fixed run depends line (the the #) --------------060703060403030702030101 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="freeswitch-scripts.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="freeswitch-scripts.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 17 Dec 2010 21:42:33 -0000 1.4 +++ Makefile 27 Oct 2011 21:56:58 -0000 @@ -6,10 +6,11 @@ # PORTNAME= freeswitch-scripts -PORTVERSION= 201044 +PORTVERSION= 1.0.7 +PORTREVISION= 1 +PORTEPOCH= 1 CATEGORIES= misc -MASTER_SITES= ftp://ftp.secure-computing.net/pub/freeswitch/ \ - ftp://ftp2.secure-computing.net/pub/freeswitch/ +MASTER_SITES= http://dl.dropbox.com/u/152504/ DISTNAME= ${BASE_PORTNAME}-${PORTVERSION} DIST_SUBDIR= ${BASE_PORTNAME} @@ -20,6 +21,8 @@ BASE_PORTNAME= freeswitch SUB_FILES= pkg-install +RUN_DEPENDS= ${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch-core + FREESWITCH_USER= freeswitch FREESWITCH_GROUP= ${FREESWITCH_USER} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 17 Dec 2010 21:42:33 -0000 1.2 +++ distinfo 27 Oct 2011 21:56:58 -0000 @@ -1,2 +1,2 @@ -SHA256 (freeswitch/freeswitch-201044.tar.gz) = cea3583bcc1febc8b6ad85ca38c991d2d7319945784dd915834c1479b33bbd4b -SIZE (freeswitch/freeswitch-201044.tar.gz) = 42320468 +SHA256 (freeswitch/freeswitch-1.0.7.tar.gz) = c36bb7fce8caa88fc76e63f85968cdd912907969476c8d90f8fd402e805f3e66 +SIZE (freeswitch/freeswitch-1.0.7.tar.gz) = 36116129 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/misc/freeswitch-scripts/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 17 Dec 2010 21:42:33 -0000 1.3 +++ pkg-plist 27 Oct 2011 21:56:58 -0000 @@ -8,7 +8,9 @@ %%WITH_LUA%%etc/freeswitch/scripts/lua/helloworld.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/mwi_event.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/originate.lua +%%WITH_LUA%%etc/freeswitch/scripts/lua/sound_test.lua %%WITH_LUA%%etc/freeswitch/scripts/lua/zrtp_agent.lua +%%WITH_PERL%%etc/freeswitch/scripts/perl/add_user %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH-GizmoConfig.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/ChangeLog %%WITH_PERL%%etc/freeswitch/scripts/perl/FreeSWITCH/Client.pm @@ -41,6 +43,7 @@ %%WITH_PERL%%etc/freeswitch/scripts/perl/multicast/send.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/mwi_event.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/originate.pl +%%WITH_PERL%%etc/freeswitch/scripts/perl/randomize-passwords.pl %%WITH_PERL%%etc/freeswitch/scripts/perl/rpc.cgi %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/attended_transfer.button %%WITH_PERL%%etc/freeswitch/scripts/perl/scenario/blind_transfer.button @@ -89,6 +92,6 @@ %%WITH_PERL%%@dirrm etc/freeswitch/scripts/perl %%WITH_LUA%%@dirrm etc/freeswitch/scripts/lua %%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript/aadir -%%WITH_JAVASCRIPT%%@dirrm etc/freeswitch/scripts/javascript -@dirrmtry etc/freeswitch/scripts -@dirrmtry etc/freeswitch +%%WITH_JAVASCRIPT%%@dirrmtry etc/freeswitch/scripts/javascript +@exec chown -R freeswitch:freeswitch %D/etc/freeswitch/scripts/ +@exec find %D/etc/freeswitch/. -type d | xargs chmod 774 --------------060703060403030702030101-- From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 05:10:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A450106566C for ; Fri, 28 Oct 2011 05:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EBCC48FC14 for ; Fri, 28 Oct 2011 05:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S5A948055625 for ; Fri, 28 Oct 2011 05:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S5A9Th055624; Fri, 28 Oct 2011 05:10:09 GMT (envelope-from gnats) Resent-Date: Fri, 28 Oct 2011 05:10:09 GMT Resent-Message-Id: <201110280510.p9S5A9Th055624@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, umpUSfXu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67597106566B for ; Fri, 28 Oct 2011 05:05:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3ED838FC1A for ; Fri, 28 Oct 2011 05:05:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S55ATp071619 for ; Fri, 28 Oct 2011 05:05:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9S55Apr071618; Fri, 28 Oct 2011 05:05:10 GMT (envelope-from nobody) Message-Id: <201110280505.p9S55Apr071618@red.freebsd.org> Date: Fri, 28 Oct 2011 05:05:10 GMT From: umpUSfXu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162078: NxsUvgYfWgpJNevaJ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 05:10:10 -0000 >Number: 162078 >Category: misc >Synopsis: NxsUvgYfWgpJNevaJ >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 28 05:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: umpUSfXu >Release: LwkYxRfkGhUkVo >Organization: rkWnOOQeXX >Environment: Callnig all cars, calling all cars, we're ready to make a deal. >Description: Callnig all cars, calling all cars, we're ready to make a deal. >How-To-Repeat: Callnig all cars, calling all cars, we're ready to make a deal. >Fix: Callnig all cars, calling all cars, we're ready to make a deal. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 06:48:40 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2E271065676; Fri, 28 Oct 2011 06:48:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB3728FC0C; Fri, 28 Oct 2011 06:48:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S6mdlp052077; Fri, 28 Oct 2011 06:48:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S6mdGe052073; Fri, 28 Oct 2011 06:48:39 GMT (envelope-from linimon) Date: Fri, 28 Oct 2011 06:48:39 GMT Message-Id: <201110280648.p9S6mdGe052073@freefall.freebsd.org> To: recreation@ymcachch.org.nz, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnats-adm@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: junk/162078: NxsUvgYfWgpJNevaJ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 06:48:40 -0000 Synopsis: NxsUvgYfWgpJNevaJ State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Oct 28 06:48:19 UTC 2011 State-Changed-Why: seriously. please get a life. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: linimon Responsible-Changed-When: Fri Oct 28 06:48:19 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=162078 From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 07:00:27 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69006106566B for ; Fri, 28 Oct 2011 07:00:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 470EA8FC1C for ; Fri, 28 Oct 2011 07:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S70Osb060617 for ; Fri, 28 Oct 2011 07:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S70Ol4060616; Fri, 28 Oct 2011 07:00:24 GMT (envelope-from gnats) Resent-Date: Fri, 28 Oct 2011 07:00:24 GMT Resent-Message-Id: <201110280700.p9S70Ol4060616@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, Maciej Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F56C106566B for ; Fri, 28 Oct 2011 06:55:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id EB26E8FC19 for ; Fri, 28 Oct 2011 06:55:48 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S6tmH7090130 for ; Fri, 28 Oct 2011 06:55:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9S6tmiK090129; Fri, 28 Oct 2011 06:55:48 GMT (envelope-from nobody) Message-Id: <201110280655.p9S6tmiK090129@red.freebsd.org> Date: Fri, 28 Oct 2011 06:55:48 GMT From: Maciej To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162083: zfs unmount -f pool X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 07:00:27 -0000 >Number: 162083 >Category: kern >Synopsis: zfs unmount -f pool >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 28 07:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Maciej >Release: 9.0 rc1 >Organization: >Environment: FreeBSD srv01-rack03-unx 9.0-RC1 FreeBSD 9.0-RC1 #0: Thu Oct 27 18:02:22 CEST 2011 root@srv01-rack03-unx:/usr/obj/usr/src/sys/NEWKERNEL amd64 >Description: When i want zfs umount -f rpool/DATA/databases/mysql then kernel faulted >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 07:02:30 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C463D106564A; Fri, 28 Oct 2011 07:02:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D0AB8FC12; Fri, 28 Oct 2011 07:02:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S72UXg069041; Fri, 28 Oct 2011 07:02:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S72UWJ069037; Fri, 28 Oct 2011 07:02:30 GMT (envelope-from linimon) Date: Fri, 28 Oct 2011 07:02:30 GMT Message-Id: <201110280702.p9S72UWJ069037@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162083: [zfs] [panic] zfs unmount -f pool X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 07:02:30 -0000 Old Synopsis: zfs unmount -f pool New Synopsis: [zfs] [panic] zfs unmount -f pool Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Oct 28 07:02:13 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162083 From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 07:10:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C42A1065676 for ; Fri, 28 Oct 2011 07:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03D248FC1D for ; Fri, 28 Oct 2011 07:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S7A7fT069753 for ; Fri, 28 Oct 2011 07:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S7A7Me069752; Fri, 28 Oct 2011 07:10:07 GMT (envelope-from gnats) Resent-Date: Fri, 28 Oct 2011 07:10:07 GMT Resent-Message-Id: <201110280710.p9S7A7Me069752@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, NSGTbBbPrzejpMPApYZ Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12DF61065718 for ; Fri, 28 Oct 2011 07:02:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DE7CF8FC0A for ; Fri, 28 Oct 2011 07:02:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S72gNB096943 for ; Fri, 28 Oct 2011 07:02:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9S72g0V096940; Fri, 28 Oct 2011 07:02:42 GMT (envelope-from nobody) Message-Id: <201110280702.p9S72g0V096940@red.freebsd.org> Date: Fri, 28 Oct 2011 07:02:42 GMT From: NSGTbBbPrzejpMPApYZ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162084: oVuQEfHKHdLCmf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 07:10:08 -0000 >Number: 162084 >Category: misc >Synopsis: oVuQEfHKHdLCmf >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Oct 28 07:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: NSGTbBbPrzejpMPApYZ >Release: YzEPOJHQK >Organization: OQYznpRKFI >Environment: Got it! Thanks a lot again for hleipng me out! >Description: Got it! Thanks a lot again for hleipng me out! >How-To-Repeat: Got it! Thanks a lot again for hleipng me out! >Fix: Got it! Thanks a lot again for hleipng me out! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 07:36:23 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61774106564A; Fri, 28 Oct 2011 07:36:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 387048FC13; Fri, 28 Oct 2011 07:36:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9S7aN9S020432; Fri, 28 Oct 2011 07:36:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9S7aMXB020407; Fri, 28 Oct 2011 07:36:22 GMT (envelope-from linimon) Date: Fri, 28 Oct 2011 07:36:22 GMT Message-Id: <201110280736.p9S7aMXB020407@freefall.freebsd.org> To: eva.wiese@daimler.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnats-adm@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: junk/162084: oVuQEfHKHdLCmf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 07:36:23 -0000 Synopsis: oVuQEfHKHdLCmf State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Oct 28 07:35:56 UTC 2011 State-Changed-Why: the hell with this, time to watch Paprika again. Responsible-Changed-From-To: freebsd-bugs->gnats-adm Responsible-Changed-By: linimon Responsible-Changed-When: Fri Oct 28 07:35:56 UTC 2011 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=162084 From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 13:20:08 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2E5A1065672 for ; Fri, 28 Oct 2011 13:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C11558FC12 for ; Fri, 28 Oct 2011 13:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SDK8hL043070 for ; Fri, 28 Oct 2011 13:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9SDK8pw043069; Fri, 28 Oct 2011 13:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 28 Oct 2011 13:20:08 GMT Resent-Message-Id: <201110281320.p9SDK8pw043069@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, Justin Hibbits Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A04651065672 for ; Fri, 28 Oct 2011 13:13:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 779838FC15 for ; Fri, 28 Oct 2011 13:13:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SDDXxU038349 for ; Fri, 28 Oct 2011 13:13:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9SDDW2J038341; Fri, 28 Oct 2011 13:13:32 GMT (envelope-from nobody) Message-Id: <201110281313.p9SDDW2J038341@red.freebsd.org> Date: Fri, 28 Oct 2011 13:13:32 GMT From: Justin Hibbits To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162091: FreeBSD/ppc CD crashes Mac OS X X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 13:20:09 -0000 >Number: 162091 >Category: misc >Synopsis: FreeBSD/ppc CD crashes Mac OS X >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 Oct 28 13:20:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Justin Hibbits >Release: 9.0-BETA2 and 9.0-RC1 >Organization: >Environment: >Description: Burning a FreeBSD/ppc (or ppc64) CD, and inserting it into a machine running OS X 10.5 causes OS X to kernel panic with Corrupt Stack. It will crash again if the CD is left in when OS X is rebooted. This might be related to the mkisofs problems already documented. >How-To-Repeat: Burn a FreeBSD 9 CD (ppc or ppc64) and insert it into a PowerPC mac running OS X. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 15:40:10 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21B3D1065670 for ; Fri, 28 Oct 2011 15:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 119E98FC1C for ; Fri, 28 Oct 2011 15:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SFe9xK072878 for ; Fri, 28 Oct 2011 15:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9SFe9c6072877; Fri, 28 Oct 2011 15:40:09 GMT (envelope-from gnats) Date: Fri, 28 Oct 2011 15:40:09 GMT Message-Id: <201110281540.p9SFe9c6072877@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: David Wolfskill Cc: Subject: Re: conf/161835: SVN-detection in sys/conf/newvers.sh fails with subversion-1.7 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: David Wolfskill List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 15:40:10 -0000 The following reply was made to PR conf/161835; it has been noted by GNATS. From: David Wolfskill To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: conf/161835: SVN-detection in sys/conf/newvers.sh fails with subversion-1.7 Date: Fri, 28 Oct 2011 08:38:16 -0700 --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Please close this PR, as r226863 renders it moot. Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --a8Wt8u1KmwUX3Y2C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEARECAAYFAk6qzGcACgkQmprOCmdXAD2O6QCcCqjNOJS5lFPQc7IGy2oQHNHU j7oAoIbyq8ZgsXVt1GC2M5pp/8F9Mnrg =w433 -----END PGP SIGNATURE----- --a8Wt8u1KmwUX3Y2C-- From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 18:50:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E0C3106566B for ; Fri, 28 Oct 2011 18:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E0628FC08 for ; Fri, 28 Oct 2011 18:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SIoBoq053604 for ; Fri, 28 Oct 2011 18:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9SIoBEe053603; Fri, 28 Oct 2011 18:50:11 GMT (envelope-from gnats) Date: Fri, 28 Oct 2011 18:50:11 GMT Message-Id: <201110281850.p9SIoBEe053603@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Ben Cc: Subject: Re: kern/159912: [new driver] [request] Port urtwn from OpenBSD to Freebsd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ben List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 18:50:11 -0000 The following reply was made to PR kern/159912; it has been noted by GNATS. From: Ben To: bug-followup@FreeBSD.org, theo.studer@gmail.com Cc: Subject: Re: kern/159912: [new driver] [request] Port urtwn from OpenBSD to Freebsd Date: Fri, 28 Oct 2011 11:23:37 -0700 --Apple-Mail-40-69117653 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii hello -- unless someone else is working on this, i intend to look at porting = urtwn this weekend, as i have a need for this driver. i'm a freebsd = driver / kernel newbie, unfortunately. my plan of attack is to look at = the diff of the openbsd and freebsd urtw drivers, and then hopefully = learn enough from that to port urtwn. other than that and reading the developer's handbook, does anyone have = any suggestions? best, ben= --Apple-Mail-40-69117653 Content-Disposition: attachment; filename=smime.p7s Content-Type: application/pkcs7-signature; name=smime.p7s Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIKWDCCBN0w ggPFoAMCAQICEHGS++YZX6xNEoV0cTSiGKcwDQYJKoZIhvcNAQEFBQAwezELMAkGA1UEBhMCR0Ix GzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwR Q29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0w NDAxMDEwMDAwMDBaFw0yODEyMzEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQx FzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsx ITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJz dC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEAsjmFpPJ9q0E7YkY3rs3BYHW8OWX5ShpHornMSMxqmNVNNRm5pELlzkniii8efNIx B8dOtINknS4p1aJkxIW9hVE1eaROaJB7HHqkkqgX8pgV8pPMyaQylbsMTzC9mKALi+VuG6JG+ni8 om+rWV6lL8/K2m2qL+usobNqqrcuZzWLeeEeaYji5kbNoKXqvgvOdjp6Dpvq/NonWz1zHyLmSGHG TPNpsaguG7bUMSAsvIKKjqQOpdeJQ/wWWq8dcdcRWdq6hw2v+vPhwvCkxWeM1tZUOt4KpLoDd7Nl yP0e03RiqhjKaJMeoYV+9Udly/hNVyh00jT/MLbu9mIwFIws6wIDAQABo4IBJzCCASMwHwYDVR0j BBgwFoAUoBEKIz6W8Qfs4q8p74Klf9AwpLQwHQYDVR0OBBYEFImCZ33EnSZwAEu0UEh83j2uBG59 MA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdJQQWMBQGCCsGAQUFBwMCBggr BgEFBQcDBDARBgNVHSAECjAIMAYGBFUdIAAwewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5j b21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwu Y29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDARBglghkgBhvhCAQEEBAMCAQYw DQYJKoZIhvcNAQEFBQADggEBAJ2Vyzy4fqUJxB6/C8LHdo45PJTGEKpPDMngq4RdiVTgZTvzbRx8 NywlVF+WIfw3hJGdFdwUT4HPVB1rbEVgxy35l1FM+WbKPKCCjKbI8OLp1Er57D9Wyd12jMOCAU9s APMeGmF0BEcDqcZAV5G8ZSLFJ2dPV9tkWtmNH7qGL/QGrpxp7en0zykX2OBKnxogL5dMUbtGB8SK N04g4wkxaMeexIud6H4RvDJoEJYRmETYKlFgTYjrdDrfQwYyyDlWjDoRUtNBpEMD9O3vMyfbOeAU TibJ2PU54om4k123KSZB6rObroP8d3XK6Mq1/uJlSmM+RMTQw16Hc6mYHK9/FX8wggVzMIIEW6AD AgECAhEA0JRO5rMnxX4JMhTCxt+YzzANBgkqhkiG9w0BAQUFADCBrjELMAkGA1UEBhMCVVMxCzAJ BgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVT VCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVU Ti1VU0VSRmlyc3QtQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDAeFw0xMDEyMDgwMDAw MDBaFw0xMTEyMDgyMzU5NTlaMCMxITAfBgkqhkiG9w0BCQEWEm1pZGZpZWxkQGdtYWlsLmNvbTCC ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL6DwYY3B4RPWeS2Ncbg1UCwWGuy4RVlPiy7 U2VuIODQcboC/HyHFQD43DxgwoVLbHlwHU20OGehWzfKPrH7rP+YsJMnf+RAb5fakXsqjS9HOeeh cnLSjwN/ctWvPq4lTXLZyTKpdCJ2fbHgfpS9Yw3nQabExizjpUxcYZe9vTM5TVZ+dD8mzaq2AbgN DK/+/ghLosHPFefMisUf0REH+V2z+hxs6+6MG7o/iNzYpdXugVfRuv6c9nf2Nid8omX57R7WbLyv 3zsgjntkkKVCggrudrmd7tHXipeGhUdQXXfknR/cpgyqAAmbpy+oYZJl7ba2rW0hyt46zynrshW5 42sCAwEAAaOCAhQwggIQMB8GA1UdIwQYMBaAFImCZ33EnSZwAEu0UEh83j2uBG59MB0GA1UdDgQW BBTYi5N3Dq/Ut4kHZgq4IksZQHMDQjAOBgNVHQ8BAf8EBAMCBaAwDAYDVR0TAQH/BAIwADAgBgNV HSUEGTAXBggrBgEFBQcDBAYLKwYBBAGyMQEDBQIwEQYJYIZIAYb4QgEBBAQDAgUgMEYGA1UdIAQ/ MD0wOwYMKwYBBAGyMQECAQEBMCswKQYIKwYBBQUHAgEWHWh0dHBzOi8vc2VjdXJlLmNvbW9kby5u ZXQvQ1BTMIGlBgNVHR8EgZ0wgZowTKBKoEiGRmh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1VUTi1V U0VSRmlyc3QtQ2xpZW50QXV0aGVudGljYXRpb25hbmRFbWFpbC5jcmwwSqBIoEaGRGh0dHA6Ly9j cmwuY29tb2RvLm5ldC9VVE4tVVNFUkZpcnN0LUNsaWVudEF1dGhlbnRpY2F0aW9uYW5kRW1haWwu Y3JsMGwGCCsGAQUFBwEBBGAwXjA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5jb21vZG9jYS5jb20v VVROQUFBQ2xpZW50Q0EuY3J0MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20w HQYDVR0RBBYwFIESbWlkZmllbGRAZ21haWwuY29tMA0GCSqGSIb3DQEBBQUAA4IBAQAZ5g+/KSeB CUDr7/VgrUHwObw9z0V8FnyX1SC9eU0MNtIR2bu3pwgxKpvYTd8K6ruu0ewMIqersPyAp8WXI9Wb TC7sXHL0I++HWW7aRCHtNFXQJLGHCncHH81MPv3AlcBR+8pE6D+oUeB8t9POvzrU8ISQDzpZWbyD hqp5zf2TzZp+l/kxwDDFNq8znm9BhO0Ea7UgsKB2dEbTu99za7LsM8oT6Gi/TS12c1gu61rrsOO4 pbsc4wgfU0h6NkACxUIqIkW2c5C/GHnDwXhZUmEBu4FpGqocXRq3P/sEz4T4R1Ko82S7YV/M5YVf adiOZEJ1OjTdox3CKsyXPG9CASyCMYID/zCCA/sCAQEwgcQwga4xCzAJBgNVBAYTAlVTMQswCQYD VQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1Qg TmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3dy51c2VydHJ1c3QuY29tMTYwNAYDVQQDEy1VVE4t VVNFUkZpcnN0LUNsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgRW1haWwCEQDQlE7msyfFfgkyFMLG 35jPMAkGBSsOAwIaBQCgggIPMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkF MQ8XDTExMTAyODE4MjMzN1owIwYJKoZIhvcNAQkEMRYEFB4q/s6F0lvk2xUg5w59cw+ybkDVMIHV BgkrBgEEAYI3EAQxgccwgcQwga4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UEBxMO U2FsdCBMYWtlIENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UECxMY aHR0cDovL3d3dy51c2VydHJ1c3QuY29tMTYwNAYDVQQDEy1VVE4tVVNFUkZpcnN0LUNsaWVudCBB dXRoZW50aWNhdGlvbiBhbmQgRW1haWwCEQDQlE7msyfFfgkyFMLG35jPMIHXBgsqhkiG9w0BCRAC CzGBx6CBxDCBrjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3 LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVUTi1VU0VSRmlyc3QtQ2xpZW50IEF1dGhlbnRpY2F0 aW9uIGFuZCBFbWFpbAIRANCUTuazJ8V+CTIUwsbfmM8wDQYJKoZIhvcNAQEBBQAEggEAIh45I/+t /NtE3h4TfbIOETPl3zaH0wE36pAikxJ82nb74gks8vI0CQC0tLvpBGtgnJQd6v4oklrBxwrps7AU of5pOvpv1uE2Ms90r9ehIL6QlILpNkTjt6L8ch8zuB7nDFN7Q3fQKjMYSoXluJnOqDrSk4lFi/mm MffbjHz9EyAMNK6xhjtVtOg4tWkbdOaJC/yBqIBR4iyitEuxLHt7ORckoQYL1igQ1RUnlidJp4zn I2QmVycklPf+AcUNXlF3u4iXsqU96v4gCT+4iTI0Ro/kIV9LxS64TecAnqpshOFvhfJ2RR/PnJmE C6qd4q25oHAmya3k3fP8hjOjqXwrWAAAAAAAAA== --Apple-Mail-40-69117653-- From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 19:03:13 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id 22B471065672 for ; Fri, 28 Oct 2011 19:03:13 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from [127.0.0.1] (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id 4B4E1150564; Fri, 28 Oct 2011 19:03:12 +0000 (UTC) Message-ID: <4EAAFC38.2010102@FreeBSD.org> Date: Fri, 28 Oct 2011 23:02:16 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.17) Gecko/20110429 Thunderbird/3.1.10 MIME-Version: 1.0 To: Ben References: <201110281850.p9SIoBEe053603@freefall.freebsd.org> In-Reply-To: <201110281850.p9SIoBEe053603@freefall.freebsd.org> X-Enigmail-Version: 1.1.2 OpenPGP: id=10C8A17A Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/159912: [new driver] [request] Port urtwn from OpenBSD to Freebsd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 19:03:13 -0000 On 28.10.2011 22:50, Ben wrote: > other than that and reading the developer's handbook, does anyone have = > any suggestions? Also you will need some knowledge about USB devices and difference between our and OpenBSD' USB stacks. I think one weekend is too short for this task :) -- WBR, Andrey V. Elsukov From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 19:50:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 105F51065673 for ; Fri, 28 Oct 2011 19:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C80B28FC1A for ; Fri, 28 Oct 2011 19:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SJo822008077 for ; Fri, 28 Oct 2011 19:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9SJo8QL008076; Fri, 28 Oct 2011 19:50:08 GMT (envelope-from gnats) Resent-Date: Fri, 28 Oct 2011 19:50:08 GMT Resent-Message-Id: <201110281950.p9SJo8QL008076@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, Frank Terhaar-Yonkers Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE049106566B for ; Fri, 28 Oct 2011 19:43:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BDE1C8FC08 for ; Fri, 28 Oct 2011 19:43:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SJhS5C011151 for ; Fri, 28 Oct 2011 19:43:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9SJhSqC011143; Fri, 28 Oct 2011 19:43:28 GMT (envelope-from nobody) Message-Id: <201110281943.p9SJhSqC011143@red.freebsd.org> Date: Fri, 28 Oct 2011 19:43:28 GMT From: Frank Terhaar-Yonkers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162110: Releng_9 panics on boot in IGB driver - regression from 8.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 19:50:09 -0000 >Number: 162110 >Category: kern >Synopsis: Releng_9 panics on boot in IGB driver - regression from 8.2 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 28 19:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Frank Terhaar-Yonkers >Release: Releng_9 CVSUP 2011-October-28 >Organization: Cisco >Environment: FreeBSD fty-zfs-01 9.0-RC1 FreeBSD 9.0-RC1 #1: Fri Oct 28 06:50:23 EDT 2011 toot@fty-zfs-01:/usr/obj/usr/src/sys/GENERIC amd64 >Description: if_igb driver panics during bootup. The IGB driver probes the device at line 591 of if_igb.c and punts: if (e1000_validate_nvm_checksum(&adapter->hw) < 0) { device_printf(dev, "The EEPROM Checksum Is Not Valid\n"); error = EIO; goto err_late; } The kernel immediately panics with a page fault. The trace-back show it's in the if_igb driver as the console messages suggest. Releng_8 did not panic, so this is a regression. The IGB NIC most likely has some sort of problem which is properly diagnosed. Email me if you want the screen shot of the panic, or have a fix to try out. >How-To-Repeat: Crashes every time on boot. >Fix: Disabled compile of if_igb.c driver, system boots fine. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Oct 28 20:02:44 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5E10106566B; Fri, 28 Oct 2011 20:02:44 +0000 (UTC) (envelope-from rmh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF2918FC15; Fri, 28 Oct 2011 20:02:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9SK2iER024600; Fri, 28 Oct 2011 20:02:44 GMT (envelope-from rmh@freefall.freebsd.org) Received: (from rmh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9SK2iTD024595; Fri, 28 Oct 2011 20:02:44 GMT (envelope-from rmh) Date: Fri, 28 Oct 2011 20:02:44 GMT Message-Id: <201110282002.p9SK2iTD024595@freefall.freebsd.org> To: rmh@debian.org, rmh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: rmh@FreeBSD.org Cc: Subject: Re: conf/159280: [syscons] [patch] Improve utf-8 -> cp437 console map X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2011 20:02:45 -0000 Synopsis: [syscons] [patch] Improve utf-8 -> cp437 console map State-Changed-From-To: open->closed State-Changed-By: rmh State-Changed-When: Fri Oct 28 20:02:24 UTC 2011 State-Changed-Why: Fixed in r226888. http://www.freebsd.org/cgi/query-pr.cgi?pr=159280 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 02:20:07 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 734EA1065670 for ; Sat, 29 Oct 2011 02:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 44E268FC15 for ; Sat, 29 Oct 2011 02:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9T2K7gO076183 for ; Sat, 29 Oct 2011 02:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9T2K74D076182; Sat, 29 Oct 2011 02:20:07 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 02:20:07 GMT Resent-Message-Id: <201110290220.p9T2K74D076182@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, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7D67106566B for ; Sat, 29 Oct 2011 02:18:29 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) by mx1.freebsd.org (Postfix) with ESMTP id 39B768FC14 for ; Sat, 29 Oct 2011 02:18:29 +0000 (UTC) Received: from cpe-72-182-3-73.austin.res.rr.com ([72.182.3.73]:60607 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RJyV6-000MBA-9u for FreeBSD-gnats-submit@freebsd.org; Fri, 28 Oct 2011 21:18:28 -0500 Received: from ler by borg.lerctr.org with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RJyV5-000ICn-NK for FreeBSD-gnats-submit@freebsd.org; Fri, 28 Oct 2011 21:18:23 -0500 Message-Id: Date: Fri, 28 Oct 2011 21:18:23 -0500 From: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Larry Rosenman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 02:20:07 -0000 >Number: 162135 >Category: bin >Synopsis: remote syslog not logging >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 Oct 29 02:20:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 10.0-CURRENT amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 10.0-CURRENT FreeBSD 10.0-CURRENT #5: Mon Oct 24 04:15:57 CDT 2011 root@borg.lerctr.org:/usr/obj/usr/src/sys/BORG-DTRACE amd64 >Description: Why doesn't syslogd log these messages? This is from my Cable Modem: # tcpdump -vv -s 1500 host 192.168.200.10 and port 514 tcpdump: listening on em0, link-type EN10MB (Ethernet), capture size 1500 bytes 21:14:21.915542 IP (tos 0x0, ttl 64, id 36817, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.bbn-mmx > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:21.916790 IP (tos 0x0, ttl 64, id 36818, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.sbook > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:21.917914 IP (tos 0x0, ttl 64, id 36819, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.editbench > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:22.665629 IP (tos 0x0, ttl 64, id 36820, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.equationbuilder > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:22.666755 IP (tos 0x0, ttl 64, id 36821, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.lotusnote > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:22.667880 IP (tos 0x0, ttl 64, id 36822, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.relief > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:20 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3230 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:23.428957 IP (tos 0x0, ttl 64, id 36823, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.rightbrain > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:21 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3231 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:23.430206 IP (tos 0x0, ttl 64, id 36824, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.intuitive-edge > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:21 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3231 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 21:14:23.431580 IP (tos 0x0, ttl 64, id 36825, offset 0, flags [none], proto UDP (17), length 176) 192.168.200.10.cuillamartin > borg.syslog: [udp sum ok] SYSLOG, length: 148 Facility local0 (16), Severity alert (1) Msg: Oct 29 02:14:21 2011 SYSLOG[0]: [Host 192.168.200.10] UDP 192.168.200.108,137 --> 192.168.200.255,137 DENY: Inbound or outbound access request 0x0000: 3c31 3239 3e4f 6374 2032 3920 3032 3a31 0x0010: 343a 3231 2032 3031 3120 5359 534c 4f47 0x0020: 5b30 5d3a 205b 486f 7374 2031 3932 2e31 0x0030: 3638 2e32 3030 2e31 305d 2055 4450 2031 0x0040: 3932 2e31 3638 2e32 3030 2e31 3038 2c31 0x0050: 3337 202d 2d3e 2031 3932 2e31 3638 2e32 0x0060: 3030 2e32 3535 2c31 3337 2044 454e 593a 0x0070: 2049 6e62 6f75 6e64 206f 7220 6f75 7462 0x0080: 6f75 6e64 2061 6363 6573 7320 7265 7175 0x0090: 6573 7420 ^C 9 packets captured 72 packets received by filter 0 packets dropped by kernel The syslog flags: syslogd_flags="-n -a 192.168.200.10 -a 192.168.200.0/24" And /etc/syslog.conf: # $FreeBSD: src/etc/syslog.conf,v 1.30 2009/06/11 15:07:02 avg Exp $ # # Spaces ARE valid field separators in this file. However, # other *nix-like systems still insist on using tabs as field # separators. If you are sharing this file between systems, you # may want to use only tabs as field separators here. # Consult the syslog.conf(5) manpage. *.err;kern.warning;auth.notice;mail.crit;local0.alert /dev/console *.info;authpriv.none;kern.debug;lpr.info;mail.crit;news.err;local0.* /var/log/messages security.* /var/log/security auth.info;authpriv.info /var/log/auth.log mail.info /var/log/maillog lpr.info /var/log/lpd-errs ftp.info /var/log/xferlog cron.* /var/log/cron *.=debug /var/log/debug.log *.emerg * # uncomment this to log all writes to /dev/console to /var/log/console.log #console.info /var/log/console.log # uncomment this to enable logging of all log messages to /var/log/all.log # touch /var/log/all.log and chmod it to mode 600 before it will work *.* /var/log/all.log # uncomment this to enable logging to a remote loghost named loghost #*.* @loghost # uncomment these if you're running inn # news.crit /var/log/news/news.crit # news.err /var/log/news/news.err # news.notice /var/log/news/news.notice !ppp *.* /var/log/ppp.log !* Tail of /var/log/messages: Oct 28 16:01:41 borg sshd[67672]: Accepted publickey for ler from 32.97.110.60 port 25947 ssh2 Oct 28 16:02:03 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/usr/bin/tail /var/log/all.log Oct 28 16:02:10 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/usr/bin/tail -f /var/log/all.log Oct 28 16:02:24 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/usr/bin/grep 192.168.200 /var/log/all.log Oct 28 16:05:00 borg /usr/sbin/cron[67703]: (root) CMD (/usr/libexec/atrun) Oct 28 16:10:00 borg /usr/sbin/cron[67730]: (root) CMD (/usr/libexec/atrun) Oct 28 16:10:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 65 to 64 Oct 28 16:10:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 194 Temperature_Celsius changed from 35 to 36 Oct 28 16:11:00 borg /usr/sbin/cron[67738]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 16:15:00 borg /usr/sbin/cron[67770]: (root) CMD (/usr/libexec/atrun) Oct 28 16:16:37 borg ntpd[1296]: synchronized to 199.4.29.166, stratum 2 Oct 28 16:20:00 borg /usr/sbin/cron[67797]: (root) CMD (/usr/libexec/atrun) Oct 28 16:22:00 borg /usr/sbin/cron[67809]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 16:25:00 borg /usr/sbin/cron[67836]: (root) CMD (/usr/libexec/atrun) Oct 28 16:30:00 borg /usr/sbin/cron[67863]: (root) CMD (/usr/libexec/atrun) Oct 28 16:33:00 borg /usr/sbin/cron[67880]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 16:35:00 borg /usr/sbin/cron[67902]: (root) CMD (/usr/libexec/atrun) Oct 28 16:40:00 borg /usr/sbin/cron[67929]: (root) CMD (/usr/libexec/atrun) Oct 28 16:44:00 borg /usr/sbin/cron[67952]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 16:45:00 borg /usr/sbin/cron[67969]: (root) CMD (/usr/libexec/atrun) Oct 28 16:50:00 borg /usr/sbin/cron[67996]: (root) CMD (/usr/libexec/atrun) Oct 28 16:55:00 borg /usr/sbin/cron[68025]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 16:55:00 borg /usr/sbin/cron[68024]: (root) CMD (/usr/libexec/atrun) Oct 28 17:00:00 borg /usr/sbin/cron[68064]: (root) CMD (newsyslog) Oct 28 17:00:00 borg /usr/sbin/cron[68065]: (root) CMD (/usr/libexec/atrun) Oct 28 17:00:00 borg /usr/sbin/cron[68066]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:05:00 borg /usr/sbin/cron[68103]: (root) CMD (/usr/libexec/atrun) Oct 28 17:08:41 borg ntpd[1296]: synchronized to 63.211.239.58, stratum 2 Oct 28 17:10:00 borg /usr/sbin/cron[68130]: (root) CMD (/usr/libexec/atrun) Oct 28 17:10:29 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 63 to 62 Oct 28 17:10:29 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 194 Temperature_Celsius changed from 37 to 38 Oct 28 17:10:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 64 to 63 Oct 28 17:10:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 194 Temperature_Celsius changed from 36 to 37 Oct 28 17:11:00 borg /usr/sbin/cron[68138]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:15:00 borg /usr/sbin/cron[68170]: (root) CMD (/usr/libexec/atrun) Oct 28 17:20:00 borg /usr/sbin/cron[68197]: (root) CMD (/usr/libexec/atrun) Oct 28 17:22:00 borg /usr/sbin/cron[68209]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:25:00 borg /usr/sbin/cron[68236]: (root) CMD (/usr/libexec/atrun) Oct 28 17:30:00 borg /usr/sbin/cron[68263]: (root) CMD (/usr/libexec/atrun) Oct 28 17:33:00 borg /usr/sbin/cron[68280]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:35:00 borg /usr/sbin/cron[68302]: (root) CMD (/usr/libexec/atrun) Oct 28 17:40:00 borg /usr/sbin/cron[68329]: (root) CMD (/usr/libexec/atrun) Oct 28 17:40:30 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 62 to 63 Oct 28 17:40:30 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 194 Temperature_Celsius changed from 38 to 37 Oct 28 17:44:00 borg /usr/sbin/cron[68352]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:45:00 borg /usr/sbin/cron[68369]: (root) CMD (/usr/libexec/atrun) Oct 28 17:50:00 borg /usr/sbin/cron[68396]: (root) CMD (/usr/libexec/atrun) Oct 28 17:55:00 borg /usr/sbin/cron[68424]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 17:55:00 borg /usr/sbin/cron[68425]: (root) CMD (/usr/libexec/atrun) Oct 28 18:00:00 borg /usr/sbin/cron[68464]: (root) CMD (newsyslog) Oct 28 18:00:00 borg /usr/sbin/cron[68465]: (root) CMD (/usr/libexec/atrun) Oct 28 18:00:00 borg /usr/sbin/cron[68466]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:05:00 borg /usr/sbin/cron[68503]: (root) CMD (/usr/libexec/atrun) Oct 28 18:10:00 borg /usr/sbin/cron[68530]: (root) CMD (/usr/libexec/atrun) Oct 28 18:11:00 borg /usr/sbin/cron[68538]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:15:00 borg /usr/sbin/cron[68570]: (root) CMD (/usr/libexec/atrun) Oct 28 18:20:00 borg /usr/sbin/cron[68597]: (root) CMD (/usr/libexec/atrun) Oct 28 18:22:00 borg /usr/sbin/cron[68609]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:25:00 borg /usr/sbin/cron[68636]: (root) CMD (/usr/libexec/atrun) Oct 28 18:30:00 borg /usr/sbin/cron[68663]: (root) CMD (/usr/libexec/atrun) Oct 28 18:33:00 borg /usr/sbin/cron[68680]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:35:00 borg /usr/sbin/cron[68702]: (root) CMD (/usr/libexec/atrun) Oct 28 18:40:00 borg /usr/sbin/cron[68729]: (root) CMD (/usr/libexec/atrun) Oct 28 18:40:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 63 to 64 Oct 28 18:40:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 194 Temperature_Celsius changed from 37 to 36 Oct 28 18:42:02 borg ntpd[1296]: synchronized to 199.4.29.166, stratum 2 Oct 28 18:44:00 borg /usr/sbin/cron[68752]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:45:00 borg /usr/sbin/cron[68769]: (root) CMD (/usr/libexec/atrun) Oct 28 18:45:49 borg sshd[68774]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:45:51 borg sshd[68776]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:45:52 borg sshd[68778]: Invalid user shit from 121.207.230.69 Oct 28 18:45:52 borg sshd[68778]: input_userauth_request: invalid user shit [preauth] Oct 28 18:45:53 borg sshd[68778]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:45:55 borg sshd[68780]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:45:57 borg sshd[68783]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:45:59 borg sshd[68785]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:01 borg sshd[68787]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:03 borg sshd[68789]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:05 borg sshd[68791]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:07 borg sshd[68793]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:09 borg sshd[68795]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:11 borg sshd[68797]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:12 borg sshd[68799]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:14 borg sshd[68802]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:16 borg sshd[68805]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:18 borg sshd[68807]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:20 borg sshd[68809]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:22 borg sshd[68811]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:24 borg sshd[68813]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:26 borg sshd[68815]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:28 borg sshd[68817]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:30 borg sshd[68819]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:32 borg sshd[68821]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:34 borg sshd[68823]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:36 borg sshd[68826]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:38 borg sshd[68828]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:40 borg sshd[68830]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:42 borg sshd[68832]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:44 borg sshd[68835]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:44 borg sshd[68835]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:44 borg sshd[68835]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:46 borg sshd[68837]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:46 borg sshd[68837]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:46 borg sshd[68837]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:48 borg sshd[68839]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:48 borg sshd[68839]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:48 borg sshd[68839]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:50 borg sshd[68841]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:50 borg sshd[68841]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:50 borg sshd[68841]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:52 borg sshd[68843]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:52 borg sshd[68843]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:52 borg sshd[68843]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:54 borg sshd[68845]: Invalid user oracle from 121.207.230.69 Oct 28 18:46:54 borg sshd[68845]: input_userauth_request: invalid user oracle [preauth] Oct 28 18:46:54 borg sshd[68845]: Received disconnect from 121.207.230.69: 11: Bye Bye [preauth] Oct 28 18:46:54 borg sshd[68847]: refused connect from 121.207.230.69 (121.207.230.69) Oct 28 18:50:00 borg /usr/sbin/cron[68865]: (root) CMD (/usr/libexec/atrun) Oct 28 18:55:00 borg /usr/sbin/cron[68893]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 18:55:00 borg /usr/sbin/cron[68894]: (root) CMD (/usr/libexec/atrun) Oct 28 19:00:00 borg /usr/sbin/cron[68934]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:00:00 borg /usr/sbin/cron[68933]: (root) CMD (newsyslog) Oct 28 19:00:00 borg /usr/sbin/cron[68935]: (root) CMD (/usr/libexec/atrun) Oct 28 19:05:00 borg /usr/sbin/cron[68972]: (root) CMD (/usr/libexec/atrun) Oct 28 19:10:00 borg /usr/sbin/cron[68999]: (root) CMD (/usr/libexec/atrun) Oct 28 19:10:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 64 to 65 Oct 28 19:10:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 194 Temperature_Celsius changed from 36 to 35 Oct 28 19:10:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 64 to 63 Oct 28 19:10:29 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 194 Temperature_Celsius changed from 36 to 37 Oct 28 19:11:00 borg /usr/sbin/cron[69007]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:15:00 borg /usr/sbin/cron[69039]: (root) CMD (/usr/libexec/atrun) Oct 28 19:20:00 borg /usr/sbin/cron[69066]: (root) CMD (/usr/libexec/atrun) Oct 28 19:22:00 borg /usr/sbin/cron[69078]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:25:00 borg /usr/sbin/cron[69105]: (root) CMD (/usr/libexec/atrun) Oct 28 19:30:00 borg /usr/sbin/cron[69132]: (root) CMD (/usr/libexec/atrun) Oct 28 19:33:00 borg /usr/sbin/cron[69149]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:35:00 borg /usr/sbin/cron[69171]: (root) CMD (/usr/libexec/atrun) Oct 28 19:40:00 borg /usr/sbin/cron[69198]: (root) CMD (/usr/libexec/atrun) Oct 28 19:40:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 65 to 64 Oct 28 19:40:29 borg smartd[1341]: Device: /dev/ada0, SMART Usage Attribute: 194 Temperature_Celsius changed from 35 to 36 Oct 28 19:44:00 borg /usr/sbin/cron[69221]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:45:00 borg /usr/sbin/cron[69238]: (root) CMD (/usr/libexec/atrun) Oct 28 19:50:00 borg /usr/sbin/cron[69271]: (root) CMD (/usr/libexec/atrun) Oct 28 19:55:00 borg /usr/sbin/cron[69302]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 19:55:00 borg /usr/sbin/cron[69303]: (root) CMD (/usr/libexec/atrun) Oct 28 20:00:00 borg /usr/sbin/cron[69343]: (root) CMD (newsyslog) Oct 28 20:00:00 borg /usr/sbin/cron[69342]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:00:00 borg /usr/sbin/cron[69344]: (root) CMD (/usr/libexec/atrun) Oct 28 20:05:00 borg /usr/sbin/cron[69381]: (root) CMD (/usr/libexec/atrun) Oct 28 20:08:37 borg kernel: arp: 192.168.200.10 moved from 2c:9e:5f:f8:d9:a3 to d8:b3:77:f1:b2:61 on em0 Oct 28 20:10:00 borg /usr/sbin/cron[69408]: (root) CMD (/usr/libexec/atrun) Oct 28 20:10:29 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 63 to 62 Oct 28 20:10:29 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 194 Temperature_Celsius changed from 37 to 38 Oct 28 20:11:00 borg /usr/sbin/cron[69416]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:12:25 borg kernel: arp: 192.168.200.10 moved from d8:b3:77:f1:b2:61 to 2c:9e:5f:f8:d9:a3 on em0 Oct 28 20:15:00 borg /usr/sbin/cron[69451]: (root) CMD (/usr/libexec/atrun) Oct 28 20:20:00 borg /usr/sbin/cron[69478]: (root) CMD (/usr/libexec/atrun) Oct 28 20:22:00 borg /usr/sbin/cron[69490]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:25:00 borg /usr/sbin/cron[69517]: (root) CMD (/usr/libexec/atrun) Oct 28 20:30:00 borg /usr/sbin/cron[69544]: (root) CMD (/usr/libexec/atrun) Oct 28 20:33:00 borg /usr/sbin/cron[69561]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:33:29 borg ntpd[1296]: synchronized to 63.211.239.58, stratum 2 Oct 28 20:33:35 borg sshd[69574]: Accepted publickey for ler from 192.168.200.103 port 51503 ssh2 Oct 28 20:33:39 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/bin/sh Oct 28 20:35:00 borg /usr/sbin/cron[69593]: (root) CMD (/usr/libexec/atrun) Oct 28 20:40:00 borg /usr/sbin/cron[81187]: (root) CMD (/usr/libexec/atrun) Oct 28 20:40:29 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 195 Hardware_ECC_Recovered changed from 62 to 63 Oct 28 20:44:00 borg /usr/sbin/cron[97243]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:45:00 borg /usr/sbin/cron[98575]: (root) CMD (/usr/libexec/atrun) Oct 28 20:50:00 borg /usr/sbin/cron[98602]: (root) CMD (/usr/libexec/atrun) Oct 28 20:55:00 borg /usr/sbin/cron[98640]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 20:55:00 borg /usr/sbin/cron[98641]: (root) CMD (/usr/libexec/atrun) Oct 28 20:55:37 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/bin/sh Oct 28 21:00:00 borg /usr/sbin/cron[22210]: (root) CMD (newsyslog) Oct 28 21:00:00 borg /usr/sbin/cron[22211]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 21:00:00 borg /usr/sbin/cron[22212]: (root) CMD (/usr/libexec/atrun) Oct 28 21:05:00 borg /usr/sbin/cron[49378]: (root) CMD (/usr/libexec/atrun) Oct 28 21:10:00 borg /usr/sbin/cron[66044]: (root) CMD (/usr/libexec/atrun) Oct 28 21:10:30 borg smartd[1341]: Device: /dev/ada2, SMART Usage Attribute: 195 Hardware_ECC_Recovered changed from 63 to 64 Oct 28 21:10:30 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 62 to 63 Oct 28 21:10:30 borg smartd[1341]: Device: /dev/ada3, SMART Usage Attribute: 194 Temperature_Celsius changed from 38 to 37 Oct 28 21:10:30 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 63 to 64 Oct 28 21:10:30 borg smartd[1341]: Device: /dev/ada4, SMART Usage Attribute: 194 Temperature_Celsius changed from 37 to 36 Oct 28 21:11:00 borg /usr/sbin/cron[66745]: (operator) CMD (/usr/libexec/save-entropy) Oct 28 21:11:54 borg postgres[1374]: [2-1] LOG: received fast shutdown request Oct 28 21:11:54 borg postgres[1374]: [3-1] LOG: aborting any active transactions Oct 28 21:11:54 borg postgres[1380]: [2-1] LOG: autovacuum launcher shutting down Oct 28 21:11:54 borg postgres[1378]: [1-1] LOG: shutting down Oct 28 21:11:54 borg postgres[1378]: [2-1] LOG: database system is shut down Oct 28 21:11:55 borg postgres[69862]: [1-1] LOG: database system was shut down at 2011-10-28 21:11:54 CDT Oct 28 21:11:55 borg postgres[69861]: [1-1] LOG: database system is ready to accept connections Oct 28 21:11:55 borg postgres[69865]: [1-1] LOG: autovacuum launcher started Oct 28 21:12:34 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/bin/sh Oct 28 21:13:28 borg sudo: ler : TTY=pts/0 ; PWD=/home/ler ; USER=root ; COMMAND=/bin/sh Oct 28 21:13:56 borg kernel: em0: promiscuous mode enabled Oct 28 21:13:56 borg kernel: em0: promiscuous mode disabled Oct 28 21:14:14 borg kernel: em0: promiscuous mode enabled Oct 28 21:14:26 borg kernel: em0: promiscuous mode disabled Oct 28 21:15:00 borg /usr/sbin/cron[69944]: (root) CMD (/usr/libexec/atrun) Oct 28 21:16:12 borg ntpd[1296]: synchronized to 199.4.29.166, stratum 2 >How-To-Repeat: Set up syslog as above, and enable remote logging, and note no logging >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 02:39:36 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FFA7106564A; Sat, 29 Oct 2011 02:39:36 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 58DA68FC08; Sat, 29 Oct 2011 02:39:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9T2daOm096015; Sat, 29 Oct 2011 02:39:36 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9T2daBF096011; Sat, 29 Oct 2011 02:39:36 GMT (envelope-from dougb) Date: Sat, 29 Oct 2011 02:39:36 GMT Message-Id: <201110290239.p9T2daBF096011@freefall.freebsd.org> To: ler@lerctr.org, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org From: dougb@FreeBSD.org Cc: Subject: Re: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 02:39:36 -0000 Synopsis: remote syslog not logging State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sat Oct 29 02:36:36 UTC 2011 State-Changed-Why: This is something that needs to be reported on a mailing list first, probably freebsd-questions@FreeBSD.org. If you don't get a resolution there, then try freebsd-current@FreeBSD.org. Meanwhile, make sure that syslogd on the receiving host has not been started with any -s options. hope this helps, Doug Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Sat Oct 29 02:36:36 UTC 2011 Responsible-Changed-Why: I closed it. http://www.freebsd.org/cgi/query-pr.cgi?pr=162135 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 02:59:59 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44722106566B; Sat, 29 Oct 2011 02:59:59 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) by mx1.freebsd.org (Postfix) with ESMTP id 0CC238FC0A; Sat, 29 Oct 2011 02:59:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Content-Type:MIME-Version:References:Message-ID:In-Reply-To:Subject:To:Sender:From:Date; bh=kUgW6jvXhjkeyWYMgB42G5zIP31dEN29RtvBmDk8JMQ=; b=AwbmYq7M7X1/KwxIfQzzGakwAm3G+HJnDQVwYhnp9oEkPbfzotrBki7DVamA2WEtUCarOtHvixhmi5pYlh2S+i7z6xbYJptRWZJbAaez3MVr1+Zdu671syq3JbQOSwb6IIDNKjnVG7RBrs4VmMovbIl6Vv0iblqPtbOMyfZj/b8=; Received: from cpe-72-182-3-73.austin.res.rr.com ([72.182.3.73]:25684 helo=borg) by thebighonker.lerctr.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RJz9J-000MaO-CN; Fri, 28 Oct 2011 21:59:58 -0500 Date: Fri, 28 Oct 2011 21:59:54 -0500 (CDT) From: Larry Rosenman Sender: ler@borg To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org In-Reply-To: <201110290220.p9T2K6tf076178@freefall.freebsd.org> Message-ID: References: <201110290220.p9T2K6tf076178@freefall.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Score: -2.9 (--) X-LERCTR-Spam-Score: -2.9 (--) X-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1,BAYES_00=-1.9 X-LERCTR-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1,BAYES_00=-1.9 Cc: Subject: Re: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 02:59:59 -0000 Since Doug Barton doesn't believe that the syslogd is running with the options, here's a ps to show that it is: root 65128 0.0 0.0 12216 1552 ?? Ss 10:02AM 0:01.17 /usr/sbin/syslogd -n -a 192.168.200.10 -a 192.168.200.0/24 ler 70268 0.0 0.0 14680 1608 0 S+ 9:58PM 0:00.00 sh -c ps auxw|grep syslogd ler 70270 0.0 0.0 16460 1352 0 S+ 9:58PM 0:00.00 grep syslogd And in answer to Doug's point that the -a options are redundant, I know that but I did it as a debugging set. I think this proves that there is a PROBLEM in the code, and the PR should be reopened. I object STRONGLY to the closure of this PR. -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 03:50:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E74B9106566B for ; Sat, 29 Oct 2011 03:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A6D058FC0A for ; Sat, 29 Oct 2011 03:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9T3oBnq060006 for ; Sat, 29 Oct 2011 03:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9T3oBb5060005; Sat, 29 Oct 2011 03:50:11 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 03:50:11 GMT Resent-Message-Id: <201110290350.p9T3oBb5060005@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, David Rook Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC62A106564A for ; Sat, 29 Oct 2011 03:46:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9C1AD8FC12 for ; Sat, 29 Oct 2011 03:46:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9T3kYQb000464 for ; Sat, 29 Oct 2011 03:46:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9T3kY5T000463; Sat, 29 Oct 2011 03:46:34 GMT (envelope-from nobody) Message-Id: <201110290346.p9T3kY5T000463@red.freebsd.org> Date: Sat, 29 Oct 2011 03:46:34 GMT From: David Rook To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162138: wrong file referenced in package - Shared object "libcam.so.5" not found, required by "mkisofs" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 03:50:12 -0000 >Number: 162138 >Category: misc >Synopsis: wrong file referenced in package - Shared object "libcam.so.5" not found, required by "mkisofs" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 03:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: David Rook >Release: 9.0RC1 >Organization: N/A >Environment: wolf# uname -a FreeBSD wolf 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:51:43 UTC 2011 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Several programs I've tried are failing with same message; Shared object "libcam.so.5" not found. One was mkisofs, from the package cdrtools-3.00_1. Another was smartctl from the package smartmontools-5.41_3. Apparently RC1 has libcam.so.6, but not libcam.so.5. I assume you have some automated build tools that should catch this type of inconsistency, but apparently these escaped notice. >How-To-Repeat: import package and run it. >Fix: ? Reference the correct .so in the package build script? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 05:29:52 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C850B106566B; Sat, 29 Oct 2011 05:29:52 +0000 (UTC) (envelope-from remko@elvandar.org) Received: from mailgate.jr-hosting.nl (mail.jr-hosting.nl [IPv6:2a01:4f8:141:5061::25]) by mx1.freebsd.org (Postfix) with ESMTP id 260968FC13; Sat, 29 Oct 2011 05:29:52 +0000 (UTC) Received: from [IPv6:2001:470:d701::c12d:a4ec:15e0:75ea] (unknown [IPv6:2001:470:d701:0:c12d:a4ec:15e0:75ea]) by mailgate.jr-hosting.nl (Postfix) with ESMTPSA id 464D13F44F; Sat, 29 Oct 2011 07:29:50 +0200 (CEST) Mime-Version: 1.0 (Apple Message framework v1251.1) From: Remko Lodder In-Reply-To: Date: Sat, 29 Oct 2011 07:29:49 +0200 Message-Id: References: <201110290220.p9T2K6tf076178@freefall.freebsd.org> To: Larry Rosenman X-Mailer: Apple Mail (2.1251.1) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-bugs@FreeBSD.org, Doug Barton Subject: Re: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 05:29:52 -0000 On Oct 29, 2011, at 4:59 AM, Larry Rosenman wrote: > Since Doug Barton doesn't believe that the syslogd is running with the = options, here's a ps to show that it is: >=20 >=20 > root 65128 0.0 0.0 12216 1552 ?? Ss 10:02AM 0:01.17 = /usr/sbin/syslogd -n -a 192.168.200.10 -a 192.168.200.0/24 > ler 70268 0.0 0.0 14680 1608 0 S+ 9:58PM 0:00.00 = sh -c ps auxw|grep syslogd > ler 70270 0.0 0.0 16460 1352 0 S+ 9:58PM 0:00.00 = grep syslogd >=20 > And in answer to Doug's point that the -a options are redundant, I = know that > but I did it as a debugging set. >=20 > I think this proves that there is a PROBLEM in the code, and the PR = should > be reopened. >=20 > I object STRONGLY to the closure of this PR. >=20 >=20 I doubt this is a PROBLEM in the code. I have syslog running for many = many networks and they are not local (remote logging); Please investigate this first and ask around before submitting a PR. I strongly suggest to NOT reopen the PR at this point. Cheers Remko HAT: Bugmeister --=20 /"\ With kind regards, | remko@elvandar.org \ / Remko Lodder | remko@FreeBSD.org X FreeBSD | = http://www.evilcoder.org / \ The Power to Serve | Quis custodiet ipsos custodes From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 08:26:34 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B1E5106566C; Sat, 29 Oct 2011 08:26:34 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) by mx1.freebsd.org (Postfix) with ESMTP id CC9E68FC18; Sat, 29 Oct 2011 08:26:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Message-ID:CC:To:Date:From:Subject:Content-Type:MIME-Version:In-Reply-To:References; bh=kbvisasvi7mm89YoFpMhdkH54FKOquo/GfxHFGnfKi4=; b=DFAnY7ROtgg1WZQl3K/PXyo0mKJwU+5/xXb9g4p7TL5N+1D87NmKPV8Sl53BR0Vhd+l0HjCaggt6SuF4+VUTeKK7FWPtbvCEvZnad6I7Zy0qIUX9g6F1/0EqGaHqEEltUR9eQIHHOt4/Txvs7UYiv9yIQgb7DrXyMP+XG0d8+ro=; Received: from cpe-72-182-3-73.austin.res.rr.com ([72.182.3.73]:45676 helo=[192.168.200.100]) by thebighonker.lerctr.org with esmtpa (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RK4FK-0000iP-Qj; Sat, 29 Oct 2011 03:26:32 -0500 References: <201110290220.p9T2K6tf076178@freefall.freebsd.org> User-Agent: K-9 Mail for Android In-Reply-To: MIME-Version: 1.0 From: Larry Rosenman Date: Sat, 29 Oct 2011 03:26:45 -0500 To: Remko Lodder Message-ID: X-Spam-Score: -2.9 (--) X-LERCTR-Spam-Score: -2.9 (--) X-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1, BAYES_00=-1.9, HTML_MESSAGE=0.001 X-LERCTR-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1, BAYES_00=-1.9, HTML_MESSAGE=0.001 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-bugs@FreeBSD.org, Doug Barton Subject: Re: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 08:26:34 -0000 We found the issue, I needed to add a :* to the end of the -a option addres= ses since the Cable modem is using anonymous ports for the source instead o= f 514. I'm now getting the messages. -- Sent from my Android phone with K-= 9 Mail. Please excuse my brevity. Remko Lodder wrote:= On Oct 29, 2011, at 4:59 AM, Larry Rosenman wrote: Since Doug Barton d= oesn't believe that the syslogd is running with the options, here's a ps to= show that it is: root 65128 0.0 0.0 12216 1552 ?? Ss 10:02A= M 0:01.17 /usr/sbin/syslogd -n -a 192.168.200.10 -a 192.168.200.0/24 le= r 70268 0.0 0.0 14680 1608 0 S+ 9:58PM 0:00.00 sh -c ps= auxw|grep syslogd ler 70270 0.0 0.0 16460 1352 0 S+ 9:58PM= 0:00.00 grep syslogd And in answer to Doug's point that the -a option= s are redundant, I know that but I did it as a debugging set. I think this= proves that there is a PROBLEM in the code, and the PR should be reopened.= I object STRONGLY to the closure of this PR. I doubt this is a PROBL= EM in the code. I have syslog running for many many networks and they are = not local (remote logging); Please investigate this first and ask around = before submitting a PR. I strongly suggest to NOT reopen the PR at this p= oint. Cheers Remko HAT: Bugmeister -- /"\ With kind regards, | r= emko@elvandar.org \ / Remko Lodder | remko@FreeBSD.org X FreeBSD = | http://www.evilcoder.org / \ The Power to Serve | Quis custodiet ipso= s custodes From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 09:06:58 2011 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41D96106566C; Sat, 29 Oct 2011 09:06:58 +0000 (UTC) (envelope-from remko@evilcoder.org) Received: from mailgate.jr-hosting.nl (mail.jr-hosting.nl [IPv6:2a01:4f8:141:5061::25]) by mx1.freebsd.org (Postfix) with ESMTP id 7A3DB8FC0A; Sat, 29 Oct 2011 09:06:57 +0000 (UTC) Received: from [IPv6:2001:470:d701::4819:e7f:32f:896b] (unknown [IPv6:2001:470:d701:0:4819:e7f:32f:896b]) by mailgate.jr-hosting.nl (Postfix) with ESMTPSA id 6783F3F44F; Sat, 29 Oct 2011 11:06:55 +0200 (CEST) References: <201110290220.p9T2K6tf076178@freefall.freebsd.org> In-Reply-To: Mime-Version: 1.0 (1.0) Message-Id: <7F241BFE-07AD-4E78-B2F9-34EE4F954466@evilcoder.org> X-Mailer: iPad Mail (9A334) From: Remko Lodder Date: Sat, 29 Oct 2011 11:06:55 +0200 To: Larry Rosenman Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Doug Barton , "freebsd-bugs@FreeBSD.org" , Remko Lodder Subject: Re: bin/162135: remote syslog not logging X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 09:06:58 -0000 So it wasnt a problem in the code.. I think we can safely say that Doug was right.. Cheers Sent from my iPad On Oct 29, 2011, at 10:26 AM, Larry Rosenman wrote: > We found the issue, I needed to add a :* to the end of the -a option addre= sses since the Cable modem is using anonymous ports for the source instead o= f 514. I'm now getting the messages. > --=20 > Sent from my Android phone with K-9 Mail. Please excuse my brevity. >=20 > Remko Lodder wrote: >=20 > On Oct 29, 2011, at 4:59 AM, Larry Rosenman wrote: >=20 >> Since Doug Barton doesn't believe that the syslogd is running with the op= tions, here's a ps to show that it is: >>=20 >>=20 >> root 65128 0.0 0.0 12216 1552 ?? Ss 10:02AM 0:01.17 /usr= /sbin/syslogd -n -a 192.168.200.10 -a 192.168.200.0/24 >> ler 70268 0.0 0.0 14680 1608 0 S+ 9:58PM 0:00.00 sh -= c ps auxw|grep syslogd >> ler 70270 0.0 0.0 16460 1352 0 S+ 9:58PM 0:00.00 grep= syslogd >>=20 >> And in answer to Doug's point that the -a options are redundant, I know t= hat >> but I did it as a debugging set. >>=20 >> I think this proves that there is a PROBLEM in the code, and the PR shoul= d >> be reopened. >>=20 >> I object STRONGLY to the closure of this PR. >>=20 >>=20 >=20 >=20 >=20 > I doubt this is a PROBLEM in the code. I have syslog running for many many= networks > and they are not local (remote logging); >=20 > Please investigate this first and ask around before submitting a PR. >=20 > I strongly suggest to NOT reopen the PR at this point. >=20 > Cheers > Remko > HAT: Bugmeister >=20 > --=20 > /"\ With kind regards, | remko@elvandar.org > \ / Remko Lodder | remko@FreeBSD.org > X FreeBSD | http://www.evilcoder.org > / \ The Power to Serve | Quis custodiet ipsos custodes >=20 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 11:25:21 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5B2E1065678; Sat, 29 Oct 2011 11:25:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9DCEB8FC0A; Sat, 29 Oct 2011 11:25:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TBPLG1024747; Sat, 29 Oct 2011 11:25:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TBPL1m024743; Sat, 29 Oct 2011 11:25:21 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 11:25:21 GMT Message-Id: <201110291125.p9TBPL1m024743@freefall.freebsd.org> To: david@catwhisker.org, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: conf/161835: [patch] SVN-detection in sys/conf/newvers.sh fails with subversion-1.7 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 11:25:21 -0000 Synopsis: [patch] SVN-detection in sys/conf/newvers.sh fails with subversion-1.7 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Oct 29 11:24:57 UTC 2011 State-Changed-Why: fixed via r226863. http://www.freebsd.org/cgi/query-pr.cgi?pr=161835 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 12:05:30 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 098FC106566C; Sat, 29 Oct 2011 12:05:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D57FC8FC0C; Sat, 29 Oct 2011 12:05:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TC5TM2064654; Sat, 29 Oct 2011 12:05:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TC5TXT064650; Sat, 29 Oct 2011 12:05:29 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 12:05:29 GMT Message-Id: <201110291205.p9TC5TXT064650@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162110: [igb] [panic] RELENG_9 panics on boot in IGB driver - [regression] from 8.2 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 12:05:30 -0000 Old Synopsis: Releng_9 panics on boot in IGB driver - regression from 8.2 New Synopsis: [igb] [panic] RELENG_9 panics on boot in IGB driver - [regression] from 8.2 Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 12:04:50 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=162110 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 12:11:41 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A61981065672; Sat, 29 Oct 2011 12:11:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E2318FC0C; Sat, 29 Oct 2011 12:11:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TCBfkV072967; Sat, 29 Oct 2011 12:11:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TCBf4e072963; Sat, 29 Oct 2011 12:11:41 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 12:11:41 GMT Message-Id: <201110291211.p9TCBf4e072963@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162068: [msk] Marvell Yukon GE onboard card does not work in 1000baseTX mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 12:11:41 -0000 Old Synopsis: msk Marvell Yukon GE onboard card does not work in 1000baseTX mode New Synopsis: [msk] Marvell Yukon GE onboard card does not work in 1000baseTX mode Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 12:11:29 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162068 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 12:13:38 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D79111065768; Sat, 29 Oct 2011 12:13:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AFBBA8FC14; Sat, 29 Oct 2011 12:13:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TCDc5R073639; Sat, 29 Oct 2011 12:13:38 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TCDcSk073633; Sat, 29 Oct 2011 12:13:38 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 12:13:38 GMT Message-Id: <201110291213.p9TCDcSk073633@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162028: [ixgbe] [patch] misplaced #endif in ixgbe.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 12:13:39 -0000 Old Synopsis: misplaced #endif in ixgbe.c New Synopsis: [ixgbe] [patch] misplaced #endif in ixgbe.c Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 12:13:14 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162028 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 12:16:39 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB417106566B; Sat, 29 Oct 2011 12:16:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B42F48FC15; Sat, 29 Oct 2011 12:16:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TCGdNW074644; Sat, 29 Oct 2011 12:16:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TCGdVk074640; Sat, 29 Oct 2011 12:16:39 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 12:16:39 GMT Message-Id: <201110291216.p9TCGdVk074640@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, ohauer@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/162066: security/nmap libpcap error X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 12:16:39 -0000 Old Synopsis: nmap libpcap error New Synopsis: security/nmap libpcap error Responsible-Changed-From-To: freebsd-bugs->ohauer Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 12:15:51 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=162066 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 13:20:04 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 372C8106566C for ; Sat, 29 Oct 2011 13:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EADD88FC14 for ; Sat, 29 Oct 2011 13:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TDK3kT032136 for ; Sat, 29 Oct 2011 13:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TDK322032135; Sat, 29 Oct 2011 13:20:03 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 13:20:03 GMT Resent-Message-Id: <201110291320.p9TDK322032135@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, Sisantha Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDDF4106564A for ; Sat, 29 Oct 2011 13:12:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 728028FC0A for ; Sat, 29 Oct 2011 13:12:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TDCST3091054 for ; Sat, 29 Oct 2011 13:12:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9TDCSVh091053; Sat, 29 Oct 2011 13:12:28 GMT (envelope-from nobody) Message-Id: <201110291312.p9TDCSVh091053@red.freebsd.org> Date: Sat, 29 Oct 2011 13:12:28 GMT From: Sisantha To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162147: GEOM: mirror GPT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 13:20:04 -0000 >Number: 162147 >Category: misc >Synopsis: GEOM: mirror GPT >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 13:20:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sisantha >Release: FreeBSD version 9.0RC1 >Organization: >Environment: f9server# uname -a FreeBSD f9server.nirmana.de 9.0-RC1 FreeBSD 9.0-RC1 #0: Tue Oct 18 18:30:38 UTC 2011 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Implementing GMIRROR with 2X2TB or 2X1TB diskd with FreeBSD V.9RC1 after issuing: 1. # sysctl kern.geom.debugflags=17 2. gmirror label -vb round-robin gm0 /dev/ada0 ( my disks are: f9server# df -h Filesystem Size Used Avail Capacity Mounted on /dev/ada0p2 1G 210M 716M 23% / devfs 1.0k 1.0k 0B 100% /dev /dev/ada0p4 122G 32M 112G 0% /var /dev/ada0p5 1.7T 2.3G 1.5T 0% /usr ) 3. #gmirror label -vb round-robin gm0 /dev/ada0 Metadata value stored on /dev/ada0. Done. 4. #gmirror load 5.# echo 'geom_mirror_load="YES"' >> /boot/loader.conf 6. # vi /etc/fstab 7. :w /etc/fstab.bak. 8. :%s/ada/mirror\/gm/g But I´m getting GEOM: mirror/gm0: corrupt or invalid GPT detected. GEOM: mirror/gm0: GPT rejected -- may not be recoverable. I teste this on two servers with: 1. 2X2TB ( allmost new disks) 1. 2X1TB (less used disks) Pl. let me know the reasons for this problem as how to solve it. I appreciate your cooperation. Regards, Sisantha >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 15:50:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1F2E1065672 for ; Sat, 29 Oct 2011 15:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEE048FC14 for ; Sat, 29 Oct 2011 15:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TFo9sP069216 for ; Sat, 29 Oct 2011 15:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TFo9Mo069215; Sat, 29 Oct 2011 15:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 15:50:09 GMT Resent-Message-Id: <201110291550.p9TFo9Mo069215@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, Nicolas Braud-Santoni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5071D1065673 for ; Sat, 29 Oct 2011 15:44:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 272E28FC13 for ; Sat, 29 Oct 2011 15:44:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TFiofm090274 for ; Sat, 29 Oct 2011 15:44:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9TFio0P090265; Sat, 29 Oct 2011 15:44:50 GMT (envelope-from nobody) Message-Id: <201110291544.p9TFio0P090265@red.freebsd.org> Date: Sat, 29 Oct 2011 15:44:50 GMT From: Nicolas Braud-Santoni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/162152: No up-to-date IPv6 French mirror in bsdinstaller X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 15:50:09 -0000 >Number: 162152 >Category: misc >Synopsis: No up-to-date IPv6 French mirror in bsdinstaller >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 15:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Nicolas Braud-Santoni >Release: 9.0-RC1 >Organization: NONE >Environment: >Description: In bsdinstaller's mirrors list, the only French mirror reachable throught IPv6 is ftp2.fr.freebsd.org, which is outdated (18 days old, seems not to be updated automatically). Could you add ftp4.fr.FreeBSD.org's IPv6 (2a01:e0b:1000:29:be30:5bff:feda:7b8a) ? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 16:21:43 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 924EE1065673; Sat, 29 Oct 2011 16:21:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A69D8FC17; Sat, 29 Oct 2011 16:21:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TGLhEv004334; Sat, 29 Oct 2011 16:21:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TGLhtE004330; Sat, 29 Oct 2011 16:21:43 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 16:21:43 GMT Message-Id: <201110291621.p9TGLhtE004330@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/162152: No up-to-date IPv6 French mirror in bsdinstall(8) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 16:21:43 -0000 Old Synopsis: No up-to-date IPv6 French mirror in bsdinstaller New Synopsis: No up-to-date IPv6 French mirror in bsdinstall(8) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 16:20:58 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=162152 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 16:23:03 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38CA11065678; Sat, 29 Oct 2011 16:23:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 10BEE8FC15; Sat, 29 Oct 2011 16:23:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TGN2Y5004449; Sat, 29 Oct 2011 16:23:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TGN2jO004445; Sat, 29 Oct 2011 16:23:02 GMT (envelope-from linimon) Date: Sat, 29 Oct 2011 16:23:02 GMT Message-Id: <201110291623.p9TGN2jO004445@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/162147: [geom] mirror GPT: GPT rejected -- may not be recoverable X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 16:23:03 -0000 Old Synopsis: GEOM: mirror GPT New Synopsis: [geom] mirror GPT: GPT rejected -- may not be recoverable Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Sat Oct 29 16:22:05 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=162147 From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 21:40:12 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47B9F1065675 for ; Sat, 29 Oct 2011 21:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 160D88FC16 for ; Sat, 29 Oct 2011 21:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TLeBrN092033 for ; Sat, 29 Oct 2011 21:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TLeB2Q092032; Sat, 29 Oct 2011 21:40:11 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 21:40:11 GMT Resent-Message-Id: <201110292140.p9TLeB2Q092032@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, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D24C9106564A for ; Sat, 29 Oct 2011 21:38:29 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 250478FC12 for ; Sat, 29 Oct 2011 21:38:27 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 08AF540007 for ; Sat, 29 Oct 2011 23:38:27 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id F251240021; Sat, 29 Oct 2011 23:38:26 +0200 (CEST) Received: from mx.daemonic.se (mx.daemonic.se [IPv6:2001:470:dca9:0:1::3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id A037240007 for ; Sat, 29 Oct 2011 23:38:26 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id F0E61119C08 for ; Sat, 29 Oct 2011 23:38:25 +0200 (CEST) Received: from vincent.daemonic.se (login.daemonic.se [IPv6:2001:470:dca9:0:1::10]) by mail.daemonic.se (Postfix) with ESMTPS id CCBE612B0A1 for ; Sat, 29 Oct 2011 23:38:25 +0200 (CEST) Received: (from zeising@localhost) by vincent.daemonic.se (8.14.5/8.14.5/Submit) id p9TLcPEc048901; Sat, 29 Oct 2011 23:38:25 +0200 (CEST) (envelope-from zeising) Message-Id: <201110292138.p9TLcPEc048901@vincent.daemonic.se> Date: Sat, 29 Oct 2011 23:38:25 +0200 (CEST) From: Niclas Zeising To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/162157: [PATCH] add birth- and deathdate of some notable people to calendar.birthday X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Niclas Zeising List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 21:40:12 -0000 >Number: 162157 >Category: bin >Synopsis: [PATCH] add birth- and deathdate of some notable people to calendar.birthday >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 21:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 9.0-BETA2 amd64 >Organization: >Environment: System: FreeBSD vincent.daemonic.se 9.0-BETA2 FreeBSD 9.0-BETA2 #0 r225368: Sat Sep 3 22:13:26 CEST 2011 root@vincent.daemonic.se:/usr/obj/usr/src/sys/VINCENT amd64 >Description: Attached patch adds Dennis Ritchie's and Steve Jobs' death date, as well as Ken Thompson's and Steve Jobs' birth dates to calendar.birthday. >How-To-Repeat: >Fix: --- calendar.birthday.diff begins here --- Index: head/usr.bin/calendar/calendars/calendar.birthday =================================================================== --- head/usr.bin/calendar/calendars/calendar.birthday (revision 226887) +++ head/usr.bin/calendar/calendars/calendar.birthday (working copy) @@ -42,6 +42,7 @@ 01/30 Franklin Delano Roosevelt born in Hyde Park, New York, 1882 01/31 Jackie Robinson born, 1919 02/03 Gertrude Stein born, 1874 +02/04 Ken Thompson, creator of unix, born, 1943 02/05 Alex Harvey (SAHB) is born in Glasgow, Scotland, 1935 02/06 King George VI of UK dies; his daughter becomes Elizabeth II, 1952 02/07 Sinclair Lewis born, 1885 @@ -68,6 +69,7 @@ 02/22 Pierre Jules Cesar Janssen born, 1838, found hydrogen in the sun 02/23 W.E.B. DuBois born, 1868 02/24 Winslow Homer born, 1836 +02/24 Steve Jobs born, 1955 02/25 George Harrison born in Liverpool, England, 1943 02/25 Renoir born, 1841 02/26 Dominique Francois Jean Arago born, 1786; @@ -212,7 +214,7 @@ 09/08 Richard ``the Lionheart'', king of England born in Oxford, 1157 09/08 Peter Sellers born in Southsea, England, 1925 09/09 Chinese Communist Party Chairman Mao Tse-Tung dies at age 82, 1976 -09/09 Dennis Ritchie born, 1941 +09/09 Dennis MacAlistair Ritchie, creater of C, born, 1941 09/12 Jesse Owens born, 1913 09/13 Walter Reed born, 1851 09/15 Agatha Christie born in Torquay, England, 1890 @@ -239,6 +241,8 @@ 10/02 Mohandas K. Gandhi born at Porbandar, Kathiawad, India, 1869 10/04 John V. Atanasoff born, 1903 10/05 Ray Kroc (founder of McDonald's) born, 1902 +10/05 Steve Jobs died at the age of 56, 2011 +10/12 Dennis MacAlistair Ritchie died at the age of 70, 2011 10/13 Lenny Bruce is born in New York City, 1925 10/13 Virgil (Publius Vergilius Maro) born near Mantua, Italy, 70 BC 10/14 Dwight David Eisenhower, 34th President of the United States, born in --- calendar.birthday.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 23:50:06 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1652D106566C for ; Sat, 29 Oct 2011 23:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E20468FC08 for ; Sat, 29 Oct 2011 23:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TNo5IK010842 for ; Sat, 29 Oct 2011 23:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9TNo5Wb010841; Sat, 29 Oct 2011 23:50:05 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2011 23:50:05 GMT Resent-Message-Id: <201110292350.p9TNo5Wb010841@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, George Kontostanos Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77A68106566C for ; Sat, 29 Oct 2011 23:42:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4D7CB8FC08 for ; Sat, 29 Oct 2011 23:42:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9TNgcpi034261 for ; Sat, 29 Oct 2011 23:42:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9TNgcjL034260; Sat, 29 Oct 2011 23:42:38 GMT (envelope-from nobody) Message-Id: <201110292342.p9TNgcjL034260@red.freebsd.org> Date: Sat, 29 Oct 2011 23:42:38 GMT From: George Kontostanos To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/162160: 9-RC1 over IPMI Virtual CD causes unexpected behaviur X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2011 23:50:06 -0000 >Number: 162160 >Category: kern >Synopsis: 9-RC1 over IPMI Virtual CD causes unexpected behaviur >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 23:50:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: George Kontostanos >Release: FreeBSD 9 RC1 >Organization: barebsd >Environment: 9.0-RC1 FreeBSD 9.0-RC1 /usr/obj/usr/src/sys/GENERIC amd64 >Description: When trying to boot from a mounted a virtual CD from supermicro IPMI the system begins an infinite loop. Installation can not be performed. Also mounting a virtual CD from supermicro IPMI causes the following messages: ugen0.4: at usbus0 umass1: on usbus0 umass1: SCSI over Bulk-Only; quirks = 0x0000 umass1:3:1:-1: Attached to scbus3 umass2: on usbus0 umass2: 8070i (ATAPI) over Bulk-Only; quirks = 0x0000 umass2:4:2:-1: Attached to scbus4 (probe0:umass-sim1:1:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:umass-sim1:1:0:0): CAM status: SCSI Status Error (probe0:umass-sim1:1:0:0): SCSI status: Check Condition (probe0:umass-sim1:1:0:0): SCSI sense: No sense data present (probe0:umass-sim1:1:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:umass-sim1:1:0:0): CAM status: SCSI Status Error (probe0:umass-sim1:1:0:0): SCSI status: Check Condition (probe0:umass-sim1:1:0:0): SCSI sense: No sense data present (probe0:umass-sim1:1:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:umass-sim1:1:0:0): CAM status: SCSI Status Error (probe0:umass-sim1:1:0:0): SCSI status: Check Condition (probe0:umass-sim1:1:0:0): SCSI sense: No sense data present (probe0:umass-sim1:1:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:umass-sim1:1:0:0): CAM status: SCSI Status Error (probe0:umass-sim1:1:0:0): SCSI status: Check Condition (probe0:umass-sim1:1:0:0): SCSI sense: No sense data present For more details see the following thread: http://forums.freebsd.org/showthread.php?t=27260 >How-To-Repeat: Two ways: 1)Try to boot from a FreeBSD9-RC1 installation CD through IPMI 2)Attach a virtual ISO to a running FreeBSD9-RC1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: