From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 25 08:00:40 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44F5A16A506 for ; Sun, 25 Jun 2006 08:00:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E99943D45 for ; Sun, 25 Jun 2006 08:00:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5P80aPM036394 for ; Sun, 25 Jun 2006 08:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5P80a0I036393; Sun, 25 Jun 2006 08:00:36 GMT (envelope-from gnats) Resent-Date: Sun, 25 Jun 2006 08:00:36 GMT Resent-Message-Id: <200606250800.k5P80a0I036393@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, "Jukka A. Ukkonen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D3C216A492 for ; Sun, 25 Jun 2006 07:51:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7107843D67 for ; Sun, 25 Jun 2006 07:51:42 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k5P7pgLX039043 for ; Sun, 25 Jun 2006 07:51:42 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5P7pgfn039042; Sun, 25 Jun 2006 07:51:42 GMT (envelope-from nobody) Message-Id: <200606250751.k5P7pgfn039042@www.freebsd.org> Date: Sun, 25 Jun 2006 07:51:42 GMT From: "Jukka A. Ukkonen" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: conf/99444: Enhancement: rc.subr could easily support starting some daemons with realtime priorities 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, 25 Jun 2006 08:00:40 -0000 >Number: 99444 >Category: conf >Synopsis: Enhancement: rc.subr could easily support starting some daemons with realtime priorities >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 25 08:00:35 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jukka A. Ukkonen >Release: 6.1-STABLE >Organization: private individual >Environment: FreeBSD mjolnir 6.1-STABLE FreeBSD 6.1-STABLE #5: Sun Jun 25 09:40:42 EET DST 2006 root@mjolnir:/usr/obj/usr/src/sys/Mjolnir i386 >Description: It is a weird inconsistency in FreeBSD that while there is a relatively good realtime scheduling policy support in the kernel one cannot start some of the daemons automatically with RT priorities. This would be beneficial with some daemons like natd to improve the behaviour of the system. Personally I have been for about half a year now running certain daemons with automatic RT priorities specified in rc.conf. With the attached patch installed one could do something like this in rc.conf... moused_rtprio="24" named_rtprio="22" ntpd_rtprio="21" rarpd_rtprio="26" natd_rtprio="20" These are just examples. One could obviously find a lot of other uses for this little amendment. >How-To-Repeat: No problem, just added functionality. Simply apply the patch and start adding RT priorities in rc.conf. If no RT priority has been specified for a service/daemon, everything will remain as before. No rtprio will be applied. The attached patch has been copied in the web form using xcut and xclipboard to retain all tab characters. It should be possible to apply the patch as is. >Fix: --- etc/rc.subr.orig Thu Jun 8 07:25:51 2006 +++ etc/rc.subr Thu Jun 8 07:26:18 2006 @@ -536,7 +536,8 @@ fi eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \ _nice=\$${name}_nice _user=\$${name}_user \ - _group=\$${name}_group _groups=\$${name}_groups + _group=\$${name}_group _groups=\$${name}_groups \ + _rtprio=\$${name}_rtprio if [ -n "$_user" ]; then # unset $_user if running as that user if [ "$_user" = "$(eval $IDCMD)" ]; then @@ -662,12 +663,14 @@ if [ -n "$_chroot" ]; then _doit="\ ${_nice:+nice -n $_nice }\ +${_rtprio:+rtprio $_rtprio} \ chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\ $_chroot $command $rc_flags $command_args" else _doit="\ ${_chdir:+cd $_chdir; }\ ${_nice:+nice -n $_nice }\ +${_rtprio:+rtprio $_rtprio} \ $command $rc_flags $command_args" if [ -n "$_user" ]; then _doit="su -m $_user -c 'sh -c \"$_doit\"'" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 25 08:36:50 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B554D16A403; Sun, 25 Jun 2006 08:36:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7022343D45; Sun, 25 Jun 2006 08:36:50 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5P8aoZ4040212; Sun, 25 Jun 2006 08:36:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5P8ao61040208; Sun, 25 Jun 2006 08:36:50 GMT (envelope-from linimon) Date: Sun, 25 Jun 2006 08:36:50 GMT From: Mark Linimon Message-Id: <200606250836.k5P8ao61040208@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-rc@FreeBSD.org Cc: Subject: Re: conf/99444: [patch] Enhancement: rc.subr could easily support starting some daemons with realtime priorities 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, 25 Jun 2006 08:36:50 -0000 Old Synopsis: Enhancement: rc.subr could easily support starting some daemons with realtime priorities New Synopsis: [patch] Enhancement: rc.subr could easily support starting some daemons with realtime priorities Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jun 25 08:36:35 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=99444 From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 25 14:02:27 2006 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4977F16A400 for ; Sun, 25 Jun 2006 14:02:27 +0000 (UTC) (envelope-from archwndas@yahoo.com) Received: from web55203.mail.re4.yahoo.com (web55203.mail.re4.yahoo.com [206.190.58.167]) by mx1.FreeBSD.org (Postfix) with SMTP id 8496243D62 for ; Sun, 25 Jun 2006 14:02:23 +0000 (GMT) (envelope-from archwndas@yahoo.com) Received: (qmail 17411 invoked by uid 60001); 25 Jun 2006 14:02:22 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=jkK8yW6g8GSx8ze9IBFyzGnYQJEpHXXH739coOfcef303capVP27Z6LNmLRo6r9mQ5R/AR6SpgOOcIqHZcQEnHLWCb/TQ0L6zTWKMqhgaKHCb0MieffdHSDgisrzrupK434QHOO4d0+8a/zD1KUh7cxtfkZdDulif6I8BGfy8hg= ; Message-ID: <20060625140222.17409.qmail@web55203.mail.re4.yahoo.com> Received: from [87.203.107.254] by web55203.mail.re4.yahoo.com via HTTP; Sun, 25 Jun 2006 07:02:22 PDT Date: Sun, 25 Jun 2006 07:02:22 -0700 (PDT) From: Simeon Nifos To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: FreeBSD 6.1 AMD64 Hangs when compiling in ext2fs 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, 25 Jun 2006 14:02:27 -0000 Hello, I would like to report a strange behaviour of FreeBSD AMD64 ver. 6.1. I installed it on a QUAD Opteron 846 with Tayan motherbord and 4GB RAM. I was running SMP kernel. I have an ext2fs partition where I store all installed compilers and libraries. I changed directory to my ext3 (ext2fs) partition and I started compiling one of my libraries. The system Hanged. I repeated the same thing with several other libraries (ATLAS(BLAS), LAPACK, ...) and everytime the system hanged. Then I copied the sources to /usr and I compiled them there. No problem. Everything was fine there. I do not know what is FreeBSD AMD64 problem when I compile something being in an ext2fs partition since with FreeBSD x86 I didn't experienced similar behaviour. Has anybody noticed something similar? Best! Simeon. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 25 22:10:31 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B66816A407 for ; Sun, 25 Jun 2006 22:10:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E81443D60 for ; Sun, 25 Jun 2006 22:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5PMAMCT089786 for ; Sun, 25 Jun 2006 22:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5PMAMiA089784; Sun, 25 Jun 2006 22:10:22 GMT (envelope-from gnats) Resent-Date: Sun, 25 Jun 2006 22:10:22 GMT Resent-Message-Id: <200606252210.k5PMAMiA089784@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, Rene Ladan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFD1E16A407 for ; Sun, 25 Jun 2006 22:04:11 +0000 (UTC) (envelope-from rene@82-168-79-254.dsl.ip.tiscali.nl) Received: from 82-168-79-254.dsl.ip.tiscali.nl (82-168-74-136.dsl.ip.tiscali.nl [82.168.74.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DD2A43D69 for ; Sun, 25 Jun 2006 22:04:06 +0000 (GMT) (envelope-from rene@82-168-79-254.dsl.ip.tiscali.nl) Received: from 82-168-79-254.dsl.ip.tiscali.nl (localhost [127.0.0.1]) by 82-168-79-254.dsl.ip.tiscali.nl (8.13.6/8.13.6) with ESMTP id k5PM44Fx020659 for ; Mon, 26 Jun 2006 00:04:04 +0200 (CEST) (envelope-from rene@82-168-79-254.dsl.ip.tiscali.nl) Received: (from rene@localhost) by 82-168-79-254.dsl.ip.tiscali.nl (8.13.6/8.13.6/Submit) id k5PM44Vk020658; Mon, 26 Jun 2006 00:04:04 +0200 (CEST) (envelope-from rene) Message-Id: <200606252204.k5PM44Vk020658@82-168-79-254.dsl.ip.tiscali.nl> Date: Mon, 26 Jun 2006 00:04:04 +0200 (CEST) From: Rene Ladan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-Mailman-Approved-At: Sun, 25 Jun 2006 22:58:16 +0000 Cc: Subject: kern/99464: 'sysctl -a' panics at dev2udev X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rene Ladan List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 22:10:31 -0000 >Number: 99464 >Category: kern >Synopsis: 'sysctl -a' panics at dev2udev >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 25 22:10:21 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Rene Ladan >Release: FreeBSD 6.1-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD 82-168-79-254.dsl.ip.tiscali.nl 6.1-RELEASE-p2 FreeBSD 6.1-RELEASE-p2 #4: Sat Jun 17 23:10:00 CEST 2006 root@s000655.campus.tue.nl:/usr/obj/usr/src61/sys/RENE i386 see http://home.tiscali.nl/rladan/conf/ for relevant files (RENE, kgdb.0, ...) >Description: 'sysctl -a | grep cpu' caused a page fault. It was called from an xterm (version 215) inside xfce-4.2.3_2. boinc-simap-5.08 was running. Not doing any kernel hacking. Uptime was 3d2h33m17s >How-To-Repeat: Try the description, situation is quite vague indeed. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 00:39:41 2006 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28D8916A405 for ; Mon, 26 Jun 2006 00:39:41 +0000 (UTC) (envelope-from dbrose@syr.edu) Received: from web34805.mail.mud.yahoo.com (web34805.mail.mud.yahoo.com [209.191.68.169]) by mx1.FreeBSD.org (Postfix) with SMTP id 80AC0446BD for ; Mon, 26 Jun 2006 00:13:32 +0000 (GMT) (envelope-from dbrose@syr.edu) Received: (qmail 50578 invoked by uid 60001); 26 Jun 2006 00:13:31 -0000 Message-ID: <20060626001331.50576.qmail@web34805.mail.mud.yahoo.com> Received: from [24.196.82.118] by web34805.mail.mud.yahoo.com via HTTP; Sun, 25 Jun 2006 17:13:31 PDT X-RocketYMMF: dougbrose Date: Sun, 25 Jun 2006 17:13:31 -0700 (PDT) From: Doug Rose To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org In-Reply-To: <200605241223.k4OCNCZj045045@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: kern/97527: bge driver shows "no carrier" on IBM Blade 8843L1U X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dbrose@syr.edu List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 00:39:41 -0000 I solved this issue. It seems that the BGE driver simply will not work with this DLink switch. Both the IBM rebranded switches (current and the older model) did not work. I replaced the switch with a switch from another vendor and the driver showed the link. Thank you, --- Gleb Smirnoff wrote: > Synopsis: bge driver shows "no carrier" on IBM Blade > 8843L1U > > State-Changed-From-To: open->feedback > State-Changed-By: glebius > State-Changed-When: Wed May 24 12:22:26 UTC 2006 > State-Changed-Why: > Please try to set > > hw.bge.fake_autoneg=1 > > in /boot/loader.conf. > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=97527 > From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 05:06:18 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6210616A54E for ; Mon, 26 Jun 2006 05:06:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E734443BD for ; Mon, 26 Jun 2006 04:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5Q4eIfh016262 for ; Mon, 26 Jun 2006 04:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5Q4eIZK016257; Mon, 26 Jun 2006 04:40:18 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jun 2006 04:40:18 GMT Resent-Message-Id: <200606260440.k5Q4eIZK016257@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Schweikle Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 351D016A47C for ; Mon, 26 Jun 2006 04:33:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2150043E39 for ; Sun, 25 Jun 2006 23:01:40 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k5PN1dat060191 for ; Sun, 25 Jun 2006 23:01:39 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5PN1d44060166; Sun, 25 Jun 2006 23:01:39 GMT (envelope-from nobody) Message-Id: <200606252301.k5PN1d44060166@www.freebsd.org> Date: Sun, 25 Jun 2006 23:01:39 GMT From: Thomas Schweikle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99473: FreeBSD Kernel 4.11 does not compile 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, 26 Jun 2006 05:06:18 -0000 >Number: 99473 >Category: kern >Synopsis: FreeBSD Kernel 4.11 does not compile >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 26 04:40:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Thomas Schweikle >Release: FreeBSD 4.11-STABLE >Organization: >Environment: FreeBSD ash.tps 4.11-STABLE FreeBSD 4.11-STABLE #8: Mon May 29 22:16:49 CEST 2006 screen@ash.wibu.local:/usr/obj/usr/src/sys/ASH i386 >Description: Doing: mergemaster -p cd /usr/src make buildworld make buildkernel KERNCONF=MyKERNEL gives back: rm -f setdef0.c setdef1.c setdefs.h setdef0.o setdef1.o miibus __miibus_hack_dep.c if_axe.ko if_axe.kld if_axe.o @ machine symb.tmp tmp.o opt_bdg.h opt_usb.h bus_if.h device_if.h miibus_if.h rm -f .depend GPATH GRTAGS GSYMS GTAGS ===> bce cd: can't cd to /usr/src/sys/modules/bce *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/obj/usr/src/sys/ASH. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Since I updated from cvsup.freebsd.de.org, I did it again from cvsup.freebsd.org --- no change. >How-To-Repeat: See above. Repeat the steps. >Fix: Looks like the module bce has gone, but without adding a comment about this fact and what to do. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 08:32:36 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4E8E16A400; Mon, 26 Jun 2006 08:32:36 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8906B43D8F; Mon, 26 Jun 2006 08:32:36 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5Q8WaAv033189; Mon, 26 Jun 2006 08:32:36 GMT (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5Q8Waoj033184; Mon, 26 Jun 2006 08:32:36 GMT (envelope-from maxim) Date: Mon, 26 Jun 2006 08:32:36 GMT From: Maxim Konovalov Message-Id: <200606260832.k5Q8Waoj033184@freefall.freebsd.org> To: dbrose@syr.edu, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/97527: [bge] bge driver shows "no carrier" on IBM Blade 8843L1U 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, 26 Jun 2006 08:32:36 -0000 Synopsis: [bge] bge driver shows "no carrier" on IBM Blade 8843L1U State-Changed-From-To: feedback->closed State-Changed-By: maxim State-Changed-When: Mon Jun 26 08:31:33 UTC 2006 State-Changed-Why: The submitter reports he fixed the issue by replacing the ethernet switch. http://www.freebsd.org/cgi/query-pr.cgi?pr=97527 From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 08:40:37 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4736316A40B for ; Mon, 26 Jun 2006 08:40:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5CF43D86 for ; Mon, 26 Jun 2006 08:40:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5Q8eZ76033415 for ; Mon, 26 Jun 2006 08:40:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5Q8eZAF033414; Mon, 26 Jun 2006 08:40:35 GMT (envelope-from gnats) Date: Mon, 26 Jun 2006 08:40:35 GMT Message-Id: <200606260840.k5Q8eZAF033414@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Maxim Konovalov Cc: Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Maxim Konovalov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 08:40:37 -0000 The following reply was made to PR kern/99473; it has been noted by GNATS. From: Maxim Konovalov To: Thomas Schweikle Cc: bug-followup@freebsd.org Subject: Re: kern/99473: FreeBSD Kernel 4.11 does not compile Date: Mon, 26 Jun 2006 12:30:35 +0400 (MSD) Hi Thomas, [...] > mergemaster -p > cd /usr/src > make buildworld > make buildkernel KERNCONF=MyKERNEL RELENG_4 GENERIG builds OK. Could you please try again from the pristine environment (updated src tree, empty /usr/obj, empty /etc/make.conf)? -- Maxim Konovalov From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 10:40:30 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E198416A5D3 for ; Mon, 26 Jun 2006 10:40:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 387FC43D62 for ; Mon, 26 Jun 2006 10:40:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5QAeSKC040103 for ; Mon, 26 Jun 2006 10:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QAeSPB040099; Mon, 26 Jun 2006 10:40:28 GMT (envelope-from gnats) Resent-Date: Mon, 26 Jun 2006 10:40:28 GMT Resent-Message-Id: <200606261040.k5QAeSPB040099@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, Colin Petrie Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 186C116A400 for ; Mon, 26 Jun 2006 10:39:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5113444A8 for ; Mon, 26 Jun 2006 10:39:05 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k5QAd5of024757 for ; Mon, 26 Jun 2006 10:39:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k5QAd5jB024756; Mon, 26 Jun 2006 10:39:05 GMT (envelope-from nobody) Message-Id: <200606261039.k5QAd5jB024756@www.freebsd.org> Date: Mon, 26 Jun 2006 10:39:05 GMT From: Colin Petrie To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/99484: enabling net.inet.ip.fastforwarding breaks rfc2644 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, 26 Jun 2006 10:40:31 -0000 >Number: 99484 >Category: kern >Synopsis: enabling net.inet.ip.fastforwarding breaks rfc2644 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 26 10:40:28 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Colin Petrie >Release: 6.1-RELEASE >Organization: >Environment: FreeBSD xxxxxxxx 6.1-RELEASE FreeBSD 6.1-RELEASE #1: Mon May 15 12:15:49 BST 2006 root@xxxxxxxx:/usr/src/sys/i386/compile/ROUTER i386 >Description: When net.inet.ip.fastforwarding=1, FreeBSD 6.1-RELEASE will forward packets to network prefix broadcast addresses. This is in violation of RFC2644 (Changing the Default for Directed Broadcasts in Routers) (while ping'ing 217.8.240.255) # sysctl net.inet.ip.fastforwarding=1 # tcpdump -qnei vlan200 ether broadcast and icmp 11:28:37.473427 00:30:48:84:ff:b1 > ff:ff:ff:ff:ff:ff, IPv4, length 154: 217.133.19.77 > 217.8.240.255: ICMP echo request, id 3408, seq 0, length 120 11:28:38.569223 00:30:48:84:ff:b1 > ff:ff:ff:ff:ff:ff, IPv4, length 154: 217.133.19.77 > 217.8.240.255: ICMP echo request, id 3408, seq 0, length 120 # sysctl net.inet.ip.fastforwarding=0 # tcpdump -qnei vlan200 ether broadcast and icmp (no packets returned) >How-To-Repeat: sysctl net.inet.ip.fastforwarding=1 Then ping the broadcast address on a LAN from a host on a different subnet >Fix: sysctl net.inet.ip.fastforwarding=0 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 11:00:43 2006 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C20EB16A401 for ; Mon, 26 Jun 2006 11:00:43 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74AE543D99 for ; Mon, 26 Jun 2006 11:00:43 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5QB0hoa041402 for ; Mon, 26 Jun 2006 11:00:43 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QB0fDI041398 for freebsd-bugs@freebsd.org; Mon, 26 Jun 2006 11:00:41 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jun 2006 11:00:41 GMT Message-Id: <200606261100.k5QB0fDI041398@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo 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, 26 Jun 2006 11:00:43 -0000 Current FreeBSD problem reports No matches to your query From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 11:06:13 2006 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08CBE16A401 for ; Mon, 26 Jun 2006 11:06:13 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C13943D6B for ; Mon, 26 Jun 2006 11:06:09 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5QB68U2043912 for ; Mon, 26 Jun 2006 11:06:08 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QB62xL043881 for freebsd-bugs@FreeBSD.org; Mon, 26 Jun 2006 11:06:02 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jun 2006 11:06:02 GMT Message-Id: <200606261106.k5QB62xL043881@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 11:06:13 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/27250 daichi [unionfs] [patch] unionfs filesystem panics in large n o kern/70096 [msdosfs] [patch] full msdos file system causes corrup o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o i386/93963 acpi [panic] [patch] ACPI Panic with some ACPI 2.0 PC & can o kern/94822 [kbd] [patch] Fix keyboard hang for IBM / Intel blade o kern/94939 [acpi] [patch] reboot(8) fails on IBM / Intel blades f ports/97693 [PATCH] [SECURITY] www/mod_frontpage2-rtr upgrade to 5 8 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/14048 des [patch] doscmd -r doesn't work o kern/17310 [nis] [patch] NIS host name resolving may loop forever s bin/19773 markm [PATCH] telnet infinite loop depending on how fds are a kern/21808 [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/21998 green [socket] [patch] ident only for outgoing connections s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o bin/23098 qa [sysinstall] [patch] if installing on a serial console o bin/24271 [patch] dumpon(8) should check its argument more o i386/24997 i386 [biosdisk] [patch] /boot/loader cannot handle extended o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o docs/27605 doc [patch] Cross-document references () o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o conf/30223 [patch] Using /usr/share/examples/kld/cdev, testcdev f f bin/31304 linimon [patch] fix crunchgen to work with more contrib-kind o o kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4.5 o bin/33672 [patch] telnetd and mount_mfs signal handlers call exi o kern/33940 [ufs] [patch] quotactl allows compromise gid-quotas o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o i386/35078 i386 [i386] [patch] Uninitialized pointer dereference in fu o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/36219 [bpf] [patch] poll() behaves erratic on BPF file descr o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/36504 [kernel] [patch] crash/panic vm_object_allocate under o bin/36867 [patch] games/fortune: add FORTUNE_PATH env var, so po o kern/37441 davidxu [isa] [patch] ISA PNP parse problem o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro s threa/39922 threads [threads] [patch] Threaded applications executed with a bin/39940 [patch] /usr/sbin/periodic sends thousands of emails o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o bin/43674 [patch] login(1): able to bypass expired password o kern/44202 [rp] [patch] -stable rp driver does not work with mult o kern/44417 luigi [bridge] [patch] ipfw layer2 rules are not checked for o gnu/44564 peter [PATCH] Aborted cvs session causes an endless loop in o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 o bin/44808 [PATCH] opiepasswd makes bad seed for existing user f kern/45023 emulation [linux] [patch] flexlm does not run with linux-base-7, o bin/45529 hexdump core-dumps with certain args [PATCH] o bin/46676 ru [PATCH] bsd.dep.mk restricts domain of tags commands o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o bin/48183 marcel [patch] gdb on a corefile from a threaded process can' o conf/48881 [PATCH] The influence of /etc/start_ifname on /etc/rc. s kern/50827 [kernel] [patch] new feature: add sane record locking o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent f kern/51341 ipfw [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51583 [nullfs] [patch] allow to work with devices and socket o kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 and syncooki o bin/54401 [patch] pppstats prints 0 for absolute values in range p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57722 [kernel] [patch] uidinfo list corruption o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc o kern/58953 [puc] [patch] detect NetMOS-based six serial port card o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ o i386/60226 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o docs/60679 doc [patch] pthread(3): pthreads documentation does not de o bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o bin/61587 qa [sysinstall] [patch] installation problem, disklabel c o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o i386/65523 i386 [loader] [patch] PXE loader malfunction in multiple PX o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66984 qa [2TB] [patch] teach sysinstall about larger disks o bin/67995 [patch] morse(6) plays beeps 10 times faster than it s o usb/69006 usb [patch] Apple Cinema Display hangs USB ports f ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPSEC tunnels on o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o kern/71109 alc [pmap] [patch] Possible race conditions in pmap.c o bin/71290 [PATCH] passwd cannot change passwords other than NIS/ f kern/71568 emax [kbd] [patch] unable to install FreeBSD using only a u o bin/71602 [PATCH] uninitialized "len" used instead of "slen" wit o kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic a bin/71786 [patch] adduser breaks if /sbin/nologin is included in o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont f ports/72149 [PATCH] heimdal with LDAP backend - bad slapd socket p o kern/72396 [netinet] [patch] Incorrect network accounting with al o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o kern/73224 wpaul [ndis] [patch] Lock order reversal in ntoskrnl_timerca o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on o bin/74127 [patch] patch(1) may misapply hunks with too little co o kern/74935 qingli [netinet] [patch] TCP simultaneous open fails. o kern/75122 andre [netinet] [patch] Incorrect inflight bandwidth calcula o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r f kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/76893 [cam] [patch] Fatal divide in booting processes with B o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic s kern/77195 darrenr [ipfilter] [patch] ipfilter ioctl SIOCGNATL does not m o kern/77432 cel [nfs] [patch] It is not possible to load nfs4client.ko o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more compliant wit o gnu/78161 [patch] typo in gzexe o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78227 [netinet] [patch] Destroying a network interface leaks o kern/78434 [vfs] [patch] vfs_mount: -current does not cdboot o conf/78762 ipfw [ipfw] [patch] /etc/rc.d/ipfw should excecute $firewal o kern/78953 [smbfs] [patch] smbfs getdirentries() failure causes C o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/79025 [patch] && in /usr/src/etc/Makefile needs to be an or p kern/79332 [ata] [patch] "ffs_mountroot: can't find rootvp" after s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/79493 [if_tun] [patch] Reproducible if_tun panic o bin/80074 [patch] openssl(1): Bug in OpenSSL's sk_insert() cause o kern/80266 rwatson [ipx] [patch] IPX routing doesn't work o kern/80694 [kbd] [patch] atkbd looped on Acer TravelMate 2701LC o kern/80742 [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth o docs/80843 doc [patch] psm(4): Suggested fix for psm0 / handle driver o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o usb/80862 usb [patch] USB locking issues: missing some Giant calls o bin/80913 ipfw [patch] /sbin/ipfw2 silently discards MAC addr arg wit s kern/80932 [em] [patch] Degraded performance of em driver o kern/80980 [i386] [patch] problem in "sys/i386/include/bus.h" cau f kern/81147 linimon [em] [patch] em0 reinitialization while adding aliases o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o conf/81882 [patch] missing terminal definition for wy120 in termc o kern/81943 des [kernel] [patch] _assert_sbuf_integrity causes panic f o bin/82207 [patch] tcpslice(1) incorrectly handles dates where ye o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests o bin/82720 [patch] Incorrect help output from growfs.c and mkfs.c o kern/82919 [bridge] [patch] Bridge configuration update will cras p bin/83085 des [patch] double free() in openpam o kern/83107 [libc] [patch] libc uuid_compare() doesn't work with l o bin/83336 [patch] libc's parse_ncp() don't check malloc/realloc o bin/83338 [patch] libc's getent() don't check for malloc failure o bin/83340 [patch] setnetgrent() and supporting functions don't c o bin/83344 [patch] Improper handling of malloc failures within li o bin/83347 [patch] improper handling of malloc failures within li o bin/83348 [patch] Improper handling of malloc failures within li o bin/83349 [patch] improper handling o malloc's failures within l o bin/83359 [patch] improper handling of malloc failures within li o bin/83364 [patch] improper handling of malloc failures, bad prin o kern/83368 [ipx] [patch] incorrect handling of malloc failures wi o bin/83369 [patch] incorrect handling of malloc failures within l o kern/83464 [geom] [patch] Unhandled malloc failures within libgeo o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti a kern/84544 dhartmei [pf] [patch] pfvar.h: PF_QNAME_SIZE is too small for c o kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn't recognize o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o kern/84861 [ipw] [patch] still can't get working ipw(4) with adho o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/85320 [gre] [patch] possible depletion of kernel stack in ip o kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark volume "clean" o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o bin/85830 des [patch] pam_exec incorrectly works with vfork() o kern/86306 [em] [patch] if_em.c locks up while trying to send a h o kern/86598 [patch] Bug in OpenSSL Padlock Engine o kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/87506 [vr] [patch] Fix alias support on vr interfaces o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to p threa/89262 threads [kernel] [patch] multi-threaded process hangs in kerne o ports/89308 apache [patch] www/mod_accounting crash on request_timeout o bin/89410 [PATCH] sh(1) missing \u interpolation and bug/fix in o kern/89660 le [patch] [panic] due to g_malloc returning null in gv_d o kern/89752 [bpf] [patch] bpf_validate() needs to do more checks o kern/89784 phk [patch] [panic] 6.0-RELEASE panics when applying `type o kern/89876 [txp] [patch] txp driver doesn't work with latest firm o kern/89878 [pccard] [patch] pccard.c:pccard_safe_quote() unsafe o kern/90096 [net] [patch] arp mixup if carp and bridge used o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous p kern/90800 maxim [kernel] [patch] it is possible to fake credentials in o kern/90815 [smbfs] [patch] SMBFS with character conversions somet f conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o conf/91732 [patch] 800.loginfail: fix log message grep expression p kern/91879 alfred [patch] Panic in nfs_putpages() on 6-stable. o bin/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o kern/92092 [iicbus] [patch] Panic if device with iicbus child is p conf/92433 brooks [patch] /etc/network.subr cannot handle interfaces lik o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o kern/92786 sos [patch] ATA fixes, write support for LSI v3 RAID o bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer overrun o kern/93199 [kernel] [patch] missing linux rt_sigtimedwait system o kern/93236 dwmalone [netinet] [patch] Received out of window SYN in ESTABL o gnu/93566 tjr [patch] sort(1): numeric sort is broken on multi-byte o bin/93603 [patch] restore(8) fails if /tmp fills o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o kern/93998 [libstand] [patch] panic in libstand when closing raw p kern/94408 thompsa [if_bridge] [patch] if_bridge breaks proxy ARP functio o kern/94669 [vfs] [patch] Panic from Failed Removable Media Mount o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke o bin/94815 [patch] [sysinstall] Upping the network interface befo o ports/94826 ade [patch] Very slow startup for libtool ltdl clients (eg o kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m p bin/95041 maxim [patch] for mrouted(8) subnet mask checking on interfa o kern/95084 ipfw [ipfw] [patch] IPFW2 ignores "recv/xmit/via any" (IPFW o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95368 [kernel] [patch] Test for race between callout_drain() o kern/95417 [netgraph] [patch] ng_fec doesn't allow jumbo packets o ports/95584 perky [patch] bsd.python.mk: A port's "USE_ZOPE=yes" overrid o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o bin/96393 [libz] [patch] assembler implementations for libz on i o ports/96407 joerg [PATCH] devel/avr-gcc-devel fails to build with -march o gnu/96481 obrien [patch] native ld(1) does not look for shared libs in f ports/96543 [PATCH] emulators/vmware3: fix checking for linprocfs. o kern/96806 [bge] [patch] Correction of kernel panic with Broadcom o kern/96840 [libc] [patch] getgrent() does not return large groups p kern/97056 [drm] [patch] PCIE radeon DRM doesn't correctly initia o kern/97174 [patch] [umass] Y-E DATA USB-FDU quirk: no synchronize o docs/97229 blackend [patch] Handbook contains obsolete instructions on NDI f ports/97330 [PATCH] japanese/phpgroupware: install destination is o bin/97888 ceri [sysinstall] [patch] sysinstall - give 'distSetCustom' o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok p kern/98111 maxim [libc] [patch] /etc/groups: the parser dies on large g o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o conf/98734 rc [patch] /etc/rc.subr restart_postcmd is failing start_ o kern/98738 [bge] [patch] if_bge.c Fail to collect link-status of o conf/98758 rc [patch] Templatize 'jail_fstab' in /etc/rc.d/jail o conf/98846 rc [patch] Templatize 'jail_rootdir' in /etc/rc.d/jail f kern/98858 [kernel] [patch] Local denial of service (mbuf exhaust o ports/98891 portmgr [PATCH] bsd.port.mk: Fix DESKTOP_ENTRIES processing on f ports/98895 [PATCH] net-mgmt/nagios-plugins: Fix check_dns error o o kern/98962 sos [ata] [patch] writing >1 session on ATAPI CDs fails o kern/99064 [ste] [patch] ste driver does not support IC Plus IP10 o ports/99067 ale [PATCH] finance/php4-pfpro: fix default certificate pa o kern/99188 net [tcp] [patch] FIN in same packet as duplicate ACK is l o ports/99424 [PATCH] MC's subshell doesn't work with stock freebsd o ports/99428 [PATCH] Case insensetive search in mc doesn't work 239 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- a bin/1375 eivind [patch] Extraneous warning from mv(1) s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p s kern/4184 [netatalk] [patch] minor nits in sys/netatalk s bin/5173 [PATCH] restore ought to deal with root setable file f o bin/5745 nik [PATCH] Add /usr/local/share/mk to default make(1) sea s kern/6668 babkin [patch] new driver: Virtual Ethernet driver o bin/7265 [patch] A warning flag is added to ln(1). s bin/7606 [patch] NIS Makefile.dist: NOPUSH replaced by REMOTE_S o bin/7868 [patch] morse(6): Morse Code Fixups o bin/8867 qa [sysinstall] [patch] /stand/sysinstall core dumps (sig o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement s bin/9770 jmallett [patch] An openpty(3) auxiliary program s kern/12071 fanf [net] [patch] new function: large scale IP aliasing o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai o kern/14166 [bktr] [patch] AVER TVPhone o bin/15168 [patch] Adding tracklist support to fdformat(1) o bin/15205 billf [patch] Addition to random(6) o bin/15480 [patch] make cdcontrol(1) easier to use o bin/15619 peter [patch] standard pppd doesn't authenticate users with o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.conf o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o bin/16880 [PATCH] pw(8) hardcodes directory creation modes o bin/17289 gad [PATCH] wrong permissions on /var/run/printer o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro o i386/18154 i386 [sysctl] [patch] Add cpu class and features flags sysc s kern/19363 [kernel] [patch] allow processes know about their file s kern/19535 [procfs] [patch] procfs_rlimit tidyup o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o bin/20501 mjacob [patch] extra flag to dump to offline autoloaders at E f bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, quiet compiler a kern/21807 [msdosfs] [patch] Make System attribute correspond to s bin/22442 linimon [PATCH] Increase speed of split(1) o conf/23063 bms [PATCH] for static ARP tables in rc.network o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem o bin/23562 markm [patch] telnetd doesn't show message in file specified o bin/24485 [PATCH] to make cron(8) handle clock jumps p kern/25499 [kbd] [patch] buffer paste functionality from keyboard f kern/25777 [kernel] [patch] atime not updated on exec o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) f ports/28155 portmgr [patch] DESTDIR is used incorrectly in bsd.port.mk a gnu/28189 [PATCH] fix for detecting empty CVS commit log message o conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't contain some u o docs/28555 trhodes [PATCH] style(9) isn't explicit about booleans for tes o kern/29355 mux [kernel] [patch] add lchflags support o bin/29363 gad [PATCH] newsyslog can support time as extension s kern/29423 [patch] new feature: kernel security hooks implementat o kern/29698 emulation [linux] [patch] linux ipcs doesn'work a docs/30008 doc [patch] French softupdates document should be translat o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite s ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKEFILE variable s kern/30422 [patch] new function: add WDT hardware watchdog driver o bin/30542 [PATCH] add -q option to shut up killall f bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do partial NFS o conf/30812 [patch] giant termcap database update p kern/30857 [intr] [patch] intr_machdep.c allows access out of arr o conf/30929 usb [patch] use usbd to initialize USB ADSL modem s docs/31109 doc [patch] replace gif images w/ png ones due to patent l o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o i386/31353 i386 [apm] [patch] 'shutdown -p' does not work on SMP Tyan o i386/31427 davidxu [pmap] [patch] minor incorrect code in sys/i386/i386/p o kern/31456 [pcn] [patch] register number definition for AMD PCnet f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/31890 [syscons] [patch] new syscons font o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o bin/32680 [PATCH] Allows users to start jail(1) by hostname as w o bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ctl s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o kern/33965 [kbd] [patch] programmable keys of the keyboard (Olida a bin/34010 [patch] keyinit takes passwords less than 10 chars, bu o bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o bin/34412 [patch] tftp(1) will still try and receive traffic eve o bin/34628 [pkg_install] [patch] pkg-routines ignore the recorded o gnu/34709 marcel [patch] Inaccurate GDB documentation o bin/35109 [PATCH] games/morse: add ability to decode morse code o docs/35222 doc [patch] getmsg.cgi: mailing list archive URL regexp su o kern/35262 [boot2] [patch] generation of boot block for headless o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o misc/35542 bde [patch] BDECFLAGS needs -U__STRICT_ANSI__ o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o kern/35635 [libiconv] [patch] missing dep in libiconv prevents pa o bin/35886 [patch] pax(1) enhancement: custom time format for lis p bin/35894 [patch] popen.c in cron won't build without LOGIN_CAP o bin/36143 [patch] Dynamic (non linear) mouse acceleration added o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o bin/36556 [patch] regular expressions for tcpwrappers o kern/36902 [libc] [patch] proposed new format code %N for strftim a bin/37074 [PATCH] Typographical error in output of "smbutil view o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o bin/37424 [patch] nfsstat(1) reports negative values o bin/37442 [PATCH] sleep(1) to support time multipliers p kern/37448 obrien [PATCH] ldd/rtld support for more information of linke o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o conf/37569 matteo [PATCH] Extend fstab(5) format to allow for spaces in o bin/37844 [PATCH] make knob to not install progs with suid/sgid o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o bin/38168 [patch] feature request: installing curses-based versi s kern/38347 [libutil] [patch] [feature request] new library functi o docs/38540 blackend [patch] make application name capitalization consisten o bin/38727 [patch] mptable(1) should complain about garbage argum o docs/38982 doc [patch] developers-handbook/Jail fix o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o bin/39463 mtm [PATCH] Add several options to fingerd f ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/40017 [patch] allows config(8) to specify config metadata di s kern/40021 [kernel build] [patch] use ld(1) to build kernel with o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > o kern/40516 [ti] [patch] ti driver has no baudrate set f docs/41270 remko [patch] handbook: confusing directions for kernelconfi f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/41543 emulation [patch] feature request: easier wine/w23 support f bin/41556 obrien [PATCH] wtmp patch for lukemftpd o docs/41807 doc [patch] natd(8): document natd -punch_fw "bug" o bin/41947 hexdump(1) unprintable ASCII enhancement [PATCH] o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o bin/42336 [PATCH] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o i386/42766 i386 [vm] [patch] proposal to perform reboot via jump to BI o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/43154 [if_tun] [patch] tunwrite() does not allocate clusters o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o docs/43823 doc [PATCH] update to environ(7) manpage o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr o docs/44074 doc [patch] ln(1) manual clarifications o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messages o bin/45193 [PATCH] truss can't truss itself o bin/45254 qa [sysinstall] [patch] sysinstall installs things it sho o bin/45333 [PATCH] New option -r for chown and chgrp o ports/45414 portmgr [patch] make update in /usr/ports missing defaults. o conf/45704 [PATCH] request to change cp866b font to cp866 o kern/45793 [headers] [patch] invalid media subtype aliases in if_ o i386/46113 i386 [bus] [patch] busspace bugs in parameter checking o kern/46159 ipfw [ipfw] [patch] ipfw dynamic rules lifetime feature o docs/46196 doc [patch] menu_format(3): Missing return value in (set_) o kern/46368 [isa] [patch] MAXDEP in isa/pnpparse.c is too small a docs/46709 peter [patch] tables in terminfo(5) are broken o kern/46973 [syscons] [patch] syscons virtual terminals switching o i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do not change co o kern/47311 mdodd [patch] Kernel support for NVIDIA nForce2-based mother o i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd characte o bin/47387 [PATCH] gprof -K still requires "a.out" arg / override o conf/47566 le [vinum] [patch] add vinum status verification to perio o bin/47576 [PATCH] factor(6)ing of negative numbers o docs/47594 doc [PATCH] passwd(5) incorrectly states allowed username o docs/47818 doc [patch] ln(1) manpage is confusing o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ o misc/48110 [patch] change CVSROOT/log_accum.pl to not send mail i o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o usb/48342 usb [PATCH] usbd dynamic device list. o conf/48444 [patch] security.functions: count connection attempts o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o gnu/48638 [PATCH] some bug fixs in libdialog o conf/48870 [PATCH] rc.network: allow to cancel interface status d s bin/48962 des [PATCH] modify /usr/bin/fetch to allow bandwidth limit o docs/48980 doc [patch] nsgmls -s errors and sect. 3.2.1 of the fdp-pr a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename o kern/49086 ipfw [ipfw] [patch] Make ipfw2 log to different syslog prio f ports/49955 portmgr [PATCH] bsd.port.mk: add target to automatically insta o misc/50106 [patch] make 'make release' more flexible behind FWs a o docs/50211 doc [PATCH] doc.docbook.mk: fix textfile creation p docs/50248 ceri [patch] New FreeBSD books o bin/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/50526 [kernel] [patch] update to #! line termination p docs/50735 brueffer [patch] small diff to the developers handbook & outdat o bin/50749 ipfw [ipfw] [patch] ipfw2 incorrectly parses ports and port o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/51009 [aue] [patch] buggy aue driver fixed. o bin/51070 [patch] add -p option to pom(6) s bin/51137 [patch] config(8) should check if a scheduler is selec f ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o docs/51875 doc [patch] atkbd(4) adjustment o docs/51921 doc [patch] ls(1) manpage lacks some information about whi o kern/51958 usb [usb] [patch] update for urio driver o docs/52071 doc [PATCH] Add more information about soft updates into a o docs/52448 simon [patch] Misc man page reference fixes o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52725 [PATCH] installincludes for kmods o kern/52752 [ichsmb] [patch] SMBus controller on ICH4 not recogniz s ports/52765 portmgr [PATCH] Uncompressing manual pages may fail due too "a o kern/52907 phk [libc] [patch] more malloc options for debugging progr s ports/52917 portmgr [PATCH] bsd.port.mk: update default value of CONFIGURE o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o bin/53341 qa [sysinstall] [patch] dump frequency in sysinstall is a p bin/53377 [PATCH] su does not return exit status of executed com o www/53676 simon [patch] Don't make people contact doc@ for 404 from no o stand/53682 le [PATCH] add fuser(1) utility o docs/54009 trhodes [patch] clarify the location of the splash image in th o bin/54026 bms [patch] Add support for non-standard ports to /usr/bin o kern/54220 [PATCH] /usr/src/Makefile has wrong instructions for u o bin/54365 [PATCH] add -u option to install(1) for SysV compatibi o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o docs/54451 doc [patch] i386_get_ldt(2): i386_{get|set}_ldt manual pag o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54897 [PATCH] -y flag for mount_mfs o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/55163 [jail] [patch] hide kld system details from jails o misc/55387 [patch] users LD_LIBRARY_PATH can interfere with mail o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 s ports/55515 portmgr [patch] extract perl stuff from bsd.port.mk into bsd.p o bin/55539 [patch] Parse fstab(5) with spaces in path names o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys o i386/55838 i386 [kbd] [patch] Dual characters from keyboard in X on To o ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml o conf/55916 rc [PATCH] ppp-user options o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o bin/56648 le [PATCH] enable rcorder(8) to use a directory for locat o bin/57018 le [PATCH] convert growfs to use libufs(3) s bin/57088 [cam] [patch] for a possible fd leak in libcam.c o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o docs/57298 blackend [patch] add using compact flash cards info to handbook o docs/57388 doc [patch] INSTALL.TXT enhancement: mention ok prompt s bin/57407 bms [patch] Better NTP support for dhclient(8) and friends o kern/57522 [PATCH] New PID allocater algorithm from NetBSD o bin/57715 [patch] tcopy(1) enhancement o docs/57926 doc [patch] amd.conf(5) poorly format as it has both man(7 o conf/58206 [Patch] 460.status-mail-rejects incompatible with FEAT o bin/58483 [patch] mount(8): allow type special or node relative f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o conf/58939 [patch] dumb little hack for /etc/rc.firewall{,6} o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour f kern/59208 matk [sound] [patch] reduce pops and crackles and fix selec o docs/59240 blackend [patch] handbook update: linux MATLAB o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o www/59307 remko [patch] xml/xsl'ify & update publications page o conf/59600 [PATCH] Improved us.emacs.kbd mapping o kern/59624 [ata] [patch] HightPoint HPT371 support for FreeBSD 4. o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio o bin/59708 qa [sysinstall] [patch] add sSMTP support for Mail select o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o docs/59736 kensmith [patch] Updating size of archives in hubs article o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o misc/60352 [patch] buildworld fails in sysinstall if terminfo dat o bin/60510 [patch] change to less(1) for compressed files o docs/60544 doc [patch] getenv(3) manpage doesn't state the return val o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o f ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o bin/61239 [patch] bootp enhancement, places the dhcp tags into t o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun f misc/61322 [patch] bsd.dep.mk disallows shell generated flags in o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di o i386/61481 i386 [patch] a mechanism to wire io-channel-check to userla o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o bin/61666 peter [patch] mount_nfs(8) parsing bug, segmentation fault a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o bin/61808 [PATCH] Update RPC prgs to allow binding to specific a o bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c with KAME o bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l with KAME o i386/62003 i386 [loader] [patch] make /boot/loader "reboot" code same o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o docs/62724 doc [patch] host(1) manpage does not include information a f ports/62761 portmgr [patch] for phasing out distinfo files o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o docs/63570 ceri [patch] Language cleanup for the Handbook's DNS sectio o i386/63628 bms [loader] [patch] i386 master boot record to allow boot s ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${SYSCTL} and a o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o bin/64198 [patch] init(8) may keep zombies o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64588 [joy] [patch] Extend joystick driver architecture to s s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o docs/65065 doc [patch] improper language ntpd(8) man pages o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o bin/65306 obrien [patch] Portability fixes for FreeBSD build utils, par f ports/65344 portmgr [patch] USE_ macros for graphics libraries o kern/65355 [pci] [patch] TC1000 serial ports need enabling o docs/65530 doc [patch] minor improvement to getgrent(3) o kern/65627 [i386] [patch] store P3 serial number in sysctl s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow f ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive configure scri o ports/66032 portmgr [PATCH] bsd.port.mk: clean room installation o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o docs/66265 doc [patch] Document what -f and LD_TRACE_LOADED_OBJECTS_F o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_options instead o ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports o docs/66343 doc [patch] unlisted supported card on man page for wi(4) o ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o bin/66445 [patch] Add options to last(1) to ignore ftp logins (u o docs/66483 doc [patch] share/man/man4/csa.4 grammar nits s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports o docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, grammar, and o docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 grammar and o docs/66775 roam [patch] clarification to committer's guide that port n o bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clients connecting o bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix unacceptable s o bin/66988 [Patch] apm.c check validation of the returned values o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc o docs/67078 doc [patch] MFC of a rtld(1) man page is incomplete. o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc a bin/67317 bms [patch] to nfsd.c to make it slightly more dynamic o i386/67383 i386 [i386] [patch] do a better job disassembling code in 1 f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR o ports/67437 portmgr [patch] bsd.port.mk: NO_BUILD and PKGNAMESUFFIX do not o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul f docs/67806 doc [patch] Let 5.x users know how to boot into single use o kern/67830 [smp] [patch] CPU affinity problem with forked child p o kern/68081 [headers] [patch] sys/time.h (lint fix) o conf/68108 [patch] Adding mac-address /conf selector to diskless s kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD p docs/68201 keramida [patch] pthread_atfork(3) man page o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o kern/68311 [patch] it is impossible to override defaults with ker o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o bin/68586 dwmalone [patch] allow syslogd to forward to non-default ports o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/68719 [msdosfs] [patch] poor performance with msdosfs and US o bin/68848 [patch] find(1) shows pathname as optional but it isn' o bin/69010 [patch] Portability fixes for FreeBSD build utils, par o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o bin/69083 [patch] basic modelines for contrib/nvi o i386/69257 i386 [i386] [patch] in_cksum_hdr is non-functional without o bin/69268 wpaul [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69398 [patch] cleartext display of password in login.c o kern/69650 [patch] make getserv* functions work with nsdispatch o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o ports/69965 portmgr [patch] check for moved ports in "make deinstall-all" o bin/69986 qa [sysinstall] [patch] no job control in fixit shell on o bin/70182 [patch] fortune -e implementation bug o docs/70217 doc [patch] Suggested rewrite of docproj/sgml.sgml for cla f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o docs/70583 ceri [patch] Update freebsd-glossary o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == o docs/70652 hmp [patch] New man page: portindex(5) o bin/70756 [PATCH] indent(1) mishandles code that is protected fo o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o stand/70813 standards [PATCH] ls(1) not Posix compliant a ports/70900 edwin [patch] devel/sdl12 inconsistency between actual versi o kern/71258 [vm] [patch] anonymous mmappings not always page align o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o bin/71613 [PATCH] cleanup of the usr.sbin/traceroute6 code o bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb code o bin/71617 [PATCH] cleanup of the usr.sbin/ypserv code o bin/71618 [PATCH] cleanup of the usr.sbin/timed code o bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump code o bin/71620 [PATCH] cleanup of the usr.sbin/sysinstall code o bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin code o bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol code o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd code o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd code o bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind code o bin/71629 [PATCH] cleanup of the usr.sbin/pppstats code o bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o bin/71631 [PATCH] cleanup of the usr.sbin/pppctl code o bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o bin/71633 [PATCH] cleanup of the usr.sbin/mrouted code o bin/71659 [PATCH] cleanup of the usr.sbin/mount_portalfs code o bin/71660 [PATCH] cleanup of the usr.sbin/kgmon code o bin/71661 [PATCH] cleanup of the usr.sbin/keyserv code o bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol code o bin/71665 [PATCH] cleanup of the usr.sbin/dconschat code o bin/71667 [PATCH] cleanup of the usr.sbin/bootparamd code o bin/71669 [PATCH] cleanup of the usr.sbin/atm code o bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o docs/71690 doc [patch] inaccurate information in systat(1) manpage o kern/71711 [bpf] [patch] generate a single bpf timestamp for each o bin/71749 [PATCH] truss -f causes circular wait when traced proc o conf/71767 [patch] French translations for keyboards keymaps desc s bin/71773 des [patch] genericize.pl -c misses some comments o bin/71801 [patch] Add ncurses utility programs: infocmp, tic and s bin/71855 [patch] making kdump WARNS=6 clean o conf/71994 [patch] dot.login: login shell may unnecessarily print f ports/72067 obrien [PATCH] editors/vim: i18n and extra support o conf/72076 [patch] German locales use old %d.%m.%y date format in o bin/72124 [patch] rm -P can't unlink u-w files o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o conf/72277 [patch] update for /usr/share/skel o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72465 [patch] United States International keyboard layout fo p conf/72505 brian [patch] Fix rc.d/ppp-user to make use of rc.subr o kern/72560 jeff [sched_ule] [patch] small cleanup of SCHED_ULE o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o bin/72674 [patch] make /usr/bin/whois use SK-NIC's whois server o usb/72732 usb [patch] Kyocera 7135 quirk. o bin/72793 [patch] wicontrol(8) prints out non-printable chars in a bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - doesn't work w o conf/72901 [patch]: dot.profile: prevent printing when doing an s f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does a conf/72978 [patch] add danish syscons keymap with accents o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame p bin/73110 rwatson [patch] ffsinfo conversion from atol() to strtol() p bin/73112 rwatson [patch] change atol() to strtol() in badsect o kern/73276 ipfw [ipfw] [patch] ipfw2 vulnerability (parser error) o bin/73411 [patch] FTPD could set attributes to 0600 while upload o kern/73514 [ntfs] [patch] mount_ntfs: can't access to a large fil o docs/73583 doc [patch] add missing instructions to ndis(4) o conf/73677 [patch] add support for powernow states to power_profi o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73929 dougb [patch] /etc/rc.d/named will not work with ports-named o conf/74004 [PATCH] add fam support to inetd.conf o conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o kern/74159 [headers] [patch] fix warnings concerned with header f o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o conf/74213 [PATCH] Connect src/etc/periodic/security/610.ipf6deni o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o bin/74450 [libalias] [patch] enable libalias/natd to create skip o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family o docs/74477 doc [patch] Correct several links in the contributing arti o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o bin/74506 [patch] bad top command display o kern/74549 [modules] [patch] Allow third party KLDs (eg ports) to o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o docs/74612 doc [patch] updates to the glossary o bin/74743 [patch] wctype.c declares static array on stack o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o o conf/74817 [patch] network.subr: fixed automatic configuration of o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o ports/74907 apache [PATCH] www/mod_perl: cleanups o ports/74919 ale [PATCH] lang/php4: Add hardened-php.org patch s kern/74986 glebius [patch] sysctlize a parameter of if_em's interrupt mod o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75298 [pccard] [patch] add missing device id for pccard brid o ports/75464 portmgr [patch] bsd.port.mk install default configuration file o conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY for de_CH local o docs/75545 trhodes [patch] typos in man3 manual pages, form_field_opts.3, o docs/75577 doc [patch] typos in man3 manual pages, login_class.3, log p kern/75582 glebius [dc] [patch] Add support for Linksys PCMPC200 Cardbus o kern/75764 [umass] [patch] "umass0: Phase Error" - no device for o bin/75766 [patch] nfsd(8) loops with TCP + multiple -h options o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o conf/76124 [patch] Mistake in /usr/share/misc/pci_vendors o gnu/76169 [patch] Add PAM support to cvs pserver o docs/76333 doc [patch] ferror(3): EOF indicator can be cleared by not o kern/76432 gnn [net] [patch] recursive locking in the network stack o bin/76494 [patch] passwd(1) does not indicate a successful chang o conf/76509 [patch] New locale uk_UA.CP1251 support o docs/76515 doc [patch] misleading use of make -j flag in handbook s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same o kern/76551 [re] [patch] re0: watchdog timeout o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o kern/76710 [mii] [patch] rgephy does not deal with status properl o ports/76915 portmgr [patch] Handle port deinstall scripts when /var is mou o bin/77031 [patch] comm(1) unable to handle lines greater than LI o docs/77087 doc [patch] the bootvinum script given in the vinum articl o conf/77197 [patch] calendar.judaic is out of date o kern/77355 [i386] [patch] Detect i*86 subarches for uname o kern/77365 [amdpm] [patch] amdpm driver has wrong PCI device ID f o kern/77841 [libc] [patch] cast away const in getpublickey() f ports/77873 portmgr [patch] New variable: USE_BSD_MK o ports/77876 portmgr [patch] Ensure uniqueness of (DOCS|EXAMPLES|DATA)DIR o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o docs/78041 doc [patch] docs for md(4) need further explanation of typ o kern/78072 [lge] [patch] Potential memory leak in lge(4) o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o docs/78138 doc [patch] Error in pre-installation section of installat o bin/78170 [patch] Fix signal handler in bootpd a docs/78174 markus [patch] Update for Bluetooth-related manpages o docs/78240 doc [patch] handbook: replace with aroun o ports/78490 portmgr [patch] bsd.port.mk: add PORTEXAMPLES and PORTDATA o ports/78554 portmgr [patch] bsd.port.mk: allow install port with the same o kern/78646 [libmap] [patch] libmap should canonicalize pathnames o kern/78673 cel [nfs] [patch] nfs client open resets attrstamp ever if o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks a ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV viewing a bit mor o bin/78763 pjd [PATCH] Added jail support to ps o bin/78768 pjd [Patch] Added jail support to top o bin/78785 ipfw [ipfw] [patch] ipfw verbosity locks machine if /etc/rc o kern/78884 cel [nfs] [patch] nfs client cache negative lookups o conf/78906 rc [patch] Allow mixer_enable="NO" in rc.conf o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o conf/79196 [PATCH] configurable dummynet loading from /etc/rc.co o bin/79228 [patch] extend /sbin/arp to be able to create blackhol o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF knob o bin/79607 obrien grok and default to bzip2-compressed manual pages [pat o ports/79651 clement [patch] mail/ssmtp: add per-user smtp authentication c o usb/79725 usb [usb] [patch] USB device speed is not double-checked o threa/79887 threads [patch] freopen() isn't thread-safe o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/80031 [coda] [patch] Remove insque/remque from kernel land o kern/80048 [aac] [patch] support for HP ML110 G2 SATA RAID Contro o bin/80117 qa [sysinstall] [patch] smbfs install option for sysinsta o docs/80159 doc [patch] rtld(1) mentions "%m" but it's not implemented o docs/80186 imp [patch] Footnote is wrong in the /usr/src/UPDATING o bin/80258 [PATCH] Comment why some Binaries are statically linke o kern/80269 [libtacplus] [patch] libtacplus tac_get_av_value will o bin/80411 [patch] df(1): bin/df/df.c sign errors in calls to get o conf/80504 [patch] de_DE.ISO8859-1 libc message catalog f bin/80610 [patch] netstat(1): lost data due lu format o bin/80620 des [patch] fetch -U does not work o kern/80642 ipfw [ipfw] [patch] ipfw small patch - new RULE OPTION o bin/80687 [patch] Missing NULL termination after strncpy() in lo o bin/80732 [PATCH]: getty(8) and telnetd(8) ignore the 'if' optio o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o bin/81035 [patch] boot0cfg emits bogus error o conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o ports/81070 ale [PATCH] www/php-screw: randomize CRYPTKEY o usb/81073 usb [umass] [patch] fix umass NO_GETMAXLUN quirk o bin/81230 rodrigc [patch] mountd does not ignore SIGPIPE o stand/81287 standards [PATCH]: fingerd(8) might send a line not ending in CR o bin/81300 [PATCH] add option to sockstat(1) to always separate o i386/81358 i386 [geode.c] [patch] add PC Engines WRAP support o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o bin/81692 [patch] atacontrol(8) support for disk APM and acousti o bin/81709 [patch] lam accepts -P but not -p o kern/81803 [ichsmb] [patch] Unsupported ICH6 SMBus controller on o bin/81837 [patch] Sort by directories first option for ls(1) p bin/81874 [patch] TCP mode in systat overwrites load average o kern/81987 [libc] [patch] memory leaks in libc/rpc o bin/81989 [patch] mount_msdosfs(8): when a mask, but no dirmask o bin/82058 markm [PATCH] Ability for pw groupmod to delete members o bin/82161 [patch] m4's eval does not handle INT_MIN correctly o bin/82170 [patch] m4's eval does not work as documented o bin/82185 [patch] ndp(8) command bug o kern/82188 [netgraph] [patch] ng_fec interface not running after o kern/82189 [netgraph] [patch] ng_fec interface - problems with co o conf/82228 roberto [patch] order parsed ntpdate_hosts in /etc/rc.d/ntpdat o bin/82287 [patch] routed(8): Fix varargs usage, remove non-exist o docs/82290 hmp [patch] update to handbook firewall PF section o gnu/82351 [patch] update (385-cl3) to version 385 of the "less" o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o gnu/82484 [patch] for misleading man cvs f ports/82661 portmgr [patch] Add support to filter MASTER_SITES and PATCH_S o kern/82724 ipfw [ipfw] [patch] Add setnexthop and defaultroute feature o docs/82779 doc [patch] Kill entry for ddb manpage o conf/82823 [patch] little addon for /etc/periodic/400.passwdless o kern/82882 yar [patch] ip_mroute abends kernel when interface detache p kern/82908 glebius [patch] ip_carp should use ifnet_departure_event event o bin/83170 [patch] Allow 'install' to compare files by mtime inst a ports/83264 [PATCH] emulators/linux_base-suse-9.2: Add freetype2 o bin/83358 [patch] improper handling of malloc failures within re o bin/83361 [patch] Incorrect malloc failures handling within libd o www/83397 ceri [patch] Improvement to the GNATS webinterface o bin/83424 [patch] improper handling of malloc failures within li o bin/83451 [patch] improper handling of malloc failures within li o docs/83621 doc [patch]: Minor omissions in /usr/src/UPDATING o kern/83622 [patch] add network interfaces labeling support o kern/83697 [snd_mss] [patch] support, docs added for full-duplex, o kern/83778 [kame] [patch] JPv6 cannot use Jumbo Frames o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o bin/84041 [PATCH] fix for wall(1) error message p docs/84101 doc [patch] mt(1) manpage has erroneous synopsis, etc. o kern/84215 [jail] [patch] wildcard ip (INADDR_ANY) should not bin o kern/84219 [ncurses] [patch] ncurses.h wchar_t confliction o docs/84265 doc [patch] chmod(1) manpage omits implication of setting p docs/84266 doc [patch] security(8) manpage should have init(8)'s list o docs/84267 doc [patch] chflags(1) manual doesn't say it's affected by o docs/84271 ceri [patch] compress(1) doesn't warn about nasty link hand p docs/84273 keramida [patch] disktab(5) manual has bad SEE ALSO o bin/84298 [patch] allow mount(8) to recognize relative pathnames o docs/84408 doc [patch] dump(8) manpage doesn't require an option and f ports/84448 portmgr [patch] bsd.port.mk: Add "make test" to ports o docs/84467 doc [patch] bsdlabel(8) manpage uses archaic "pack" in "ap s docs/84519 doc [patch] mdoc(7) manpage needs more about AUTHORS o docs/84549 doc [patch] errno(2) manpage uses "<...>" for "(..)" o conf/84581 [patch] Teach config(8) to look for kernel configurati o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o docs/84670 doc [patch] tput(1) manpage missing ENVIRONMENT section wi f ports/84718 girgen [PATCH] databases/postgresql74-server: Add option from o conf/84752 [patch] 100.clean-disks cleans file systems that don't o docs/84764 doc [patch] hosts.equiv(5) manpage should SEE ALSO netgrou o kern/84797 [libutil] [patch] State engine in the libutils propert o conf/84800 obrien [patch] setting CPUTYPE=nocona on an Intel system resu o docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdisk doesn't re o bin/84911 [patch] ndisgen(8) can't cope with .sys-files that beg o docs/84955 doc [patch] mdoc(7) manpage should mention missing documen o docs/84956 doc [patch] intro(5) manpage doesn't mention API coverage o docs/84961 blackend [patch] Sync NDIS documentation with reality o kern/84981 [headers] [patch] header protection for 6.0 winTV card not pr o ports/89670 ade [patch] Automake 1.9 not detecting cppunit o docs/89747 doc [PATCH] faq: s/kbd0/ukbd0/ when USB keyboard is connec o kern/89748 dwmalone [bpf] [patch] BPF indexed byte load can sign extend o bin/89762 [patch] top(1) startup is very slow on system with man o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89799 [patch] Making natd(8) not require a newline at the en o conf/89860 matteo [patch] Add ability to set up vnode backed filesystems o conf/89870 rc [patch] feature request to make netif verbose rc.conf o ports/89896 ale [PATCH] Add support for multiple versions of php o bin/89988 [patch] bootparamd(8) null host support and whoami fix o bin/89989 [patch] Add option to /usr/sbin/jail: -I (ASCII 73) PI o kern/90012 scottl [ips] [patch] IBM/Adaptec ServeRAID 7x support s conf/90082 matteo [syscons] [patch] curses ACS line graphics support for o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 o bin/90130 [patch] sysctl(8): print temperature in celsius only w o kern/90155 [netinet] [patch] use sysctl(8) to control hardware ch a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf o kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documentation is incom o bin/90311 [patch] add "eject" to mt(1) o bin/90384 [patch] chroot patch for sftp-server(8) o bin/90415 [patch] Add -Z (no newfs) to mount_mfs(8). Use with e o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o bin/90687 [patch] side effect of -delete option of find(1) o bin/90823 [PATCH] cp(1) should use lchflags() o kern/90990 [PATCH] ncurses doesn't compile with --enable-widec o kern/91010 daichi [unionfs] [patch] new source code and some changes o bin/91034 [patch] minor fix to iostat(8) so that columns line up o bin/91049 [patch] dump(8): make dumps more rsync-friendly o bin/91101 [patch] /usr/src/usr.bin/whereis/whereis.c o bin/91134 [smbfs] [patch] Preserve access and modification time o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command p kern/91315 anholt [agp] [patch] add Intel E7505 chipset support to agp(4 o kern/91332 [patch] Linksys EG1032 V3.0 Gigabit card captured by s o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c p kern/91412 andre [netinet] [patch] Problem with PMTU Discovery / DF / I o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs p docs/91448 keramida [patch] fdc(4) man page refers to non-existing device o kern/91476 [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91488 [isofs] [patch] cd9660 filesystem cannot handle files o kern/91502 sos [ata] [patch] ICH7 - finds only 2 out of 4 drives p docs/91518 trhodes [patch] Update handbook section "Rebuilding 'world'" i o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work f kern/91777 darrenr [ipfilter] [patch] wrong behaviour with skip rule insi o ports/91843 anders [patch] thttpd with USE_SENDFILE generates ENOTCONN no p kern/91851 andre [netinet] [patch] cannot collect multicast upcall mess o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o p bin/91973 des [libfetch] [patch] relax fetch(1) reaction on a MODE c o ports/92123 portmgr [patch] bsd.port.mk: PLIST_SUBX and SUBX_LIST autoexpa f ports/92133 [PATCH] comms/spandsp: 0.0.2p22 fixes various bugs. o usb/92306 usb [quirk] [patch] Support for iRiver U10 USB media playe o kern/92323 [iwi] [patch] XI330_IEEE missing from if_wi_pccard.c o stand/92360 standards [headers] [patch] Missing TAB3 in kernel headers o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers o bin/92395 [patch] truss(1) does not work properly, procfs looks o bin/92412 [patch] rup(1): rpc.rstatd reports bogus packets/per/s o ports/92445 portmgr [patch] change all bogus uses of BROKEN to IGNORE f usb/92462 usb [patch] Add support for Epson CX3500/3600/3650 scanner o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/92541 [PATCH] add ca_AD, ca_FR and ca_IT locales o ports/92548 ahze [PATCH] textproc/p5-xmltv: Fix 'bad makefile line' err f ports/92688 portmgr [PATCH] bsd.port.mk: add check to USE_DOS2UNIX o ports/92738 bms [patch] net/libpcap LIBPCAP_OVERWRITE_BASES does not w o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o kern/92926 [headers] [patch] Missing copyright in /usr/include/sy s www/92973 www [patch] mailto.sgml o gnu/93127 [PATCH] add __FreeBSD_kernel__ to pre-defines o kern/93172 [isp] [patch] uintXX_t style(9) updates f ports/93216 lawrance [PATCH] finance/gnucash-devel: Add development release p ports/93276 secteam [patch] security/ca-roots: Update expired certs f ports/93304 itetcu [PATCH] sysutils/bacula-server port to no longer link f bin/93309 [PATCH] rpc.rquotad: group quota support over NFS o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o kern/93331 [kernel] [patch] broken asm in kernel o kern/93368 sos [ata] [patch] ATA_SMART command is missing o kern/93369 [ata] [patch] Fix failed detection of Nvidia NForce2 c o kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o kern/93414 scottl [aac] [patch] compilation problem in aac_ioctl header o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. o usb/93484 usb [umass] [patch] QUIRK: Toshiba TransMemory USB Memorys o ports/93540 kuriyama [PATCH] security/gnupg; enable OPTIONS; configure KNOB o ports/93560 roam [PATCH] dns/djbdns-ipv6: Update IPv6 patches o docs/93590 doc [patch] pf.conf's man page mentions route labels, but o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o docs/93683 jcamou [PATCH] some typos in klist(1) o ports/93687 portmgr [PATCH] Split bsd.port.pre.mk - allow OPTIONS to be pr o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o kern/93755 [kernel] [patch] 2 copy'n'paste-os in sys/vm/phys_page o docs/93764 jcamou [patch] addition to firewalls section - ipfw o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o misc/93838 [patch] Add notice to /usr/src/Makefile that make worl o bin/93841 dwmalone [patch] fix seg fault with dmesg(8) o bin/93857 [patch] kiconv_cs_preload(8): Utility for loading the o kern/93860 [msdosfs] [patch] sectors-per-track limit of MSDOSFS t o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor p kern/93897 emax [if_tap] [patch] if_tap doesn't handle kqueue(2) o bin/93915 krion [patch] pkg_add(1) behaves improperly when unpacking o o kern/93976 [if_tun] [patch] if_tun doesn't handle kqueue(2) f bin/94032 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo o ports/94043 ade [patch] bsd.autotools.mk: aclocal can't find libtool m o bin/94052 [PATCH]: Adds option to script(1) to suppress carriage o kern/94082 [re] [patch] USR 997902 Gig-Ethernet card not recogniz o ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b o bin/94154 [sysinstall] [patch] add release and architecture to t o ports/94167 x11 [patch] x11/xorg-clients: install xdm/Xstartup and /Xr o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o bin/94367 [patch] wall(1): fix `wall: /dev/:0: No such file or d o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o bin/94409 qa [sysinstall] [patch] add geom.debugflags-note to diskl o www/94423 www [patch] XML'ified release todo list o usb/94439 usb [patch] Add support for JNC MP3 Player o kern/94480 [kernel] [patch] bread(3) & bwrite(3) can crash under o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o bin/94546 [PATCH] Make telnet(1) accept 'host:port' on command l p bin/94577 emax [bluetooth] [patch] Wrong mouse button mapping in bthi o docs/94625 doc [patch] growfs man page -- document "panic: not enough f ports/94680 portmgr [patch] bsd.port.mk - introduce ONLY_FOR_OSVERSION as o ports/94690 ume [PATCH] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94829 thompsa [patch] feature request: adapt OpenBSD's enc0 support o kern/94830 cel [nfs] [patch] mount_nfs causes a fatal trap 18 if the o ports/94895 [PATCH] mail/postgrey: The shutting donw process of po o usb/94946 usb [uhub][patch] code dynamic status size for status chan f docs/94969 ale [patch] correct information about install php or mod_p o kern/94992 pf [pf] [patch] pfctl complains about ALTQ missing o ports/94997 seanc [patch] port databases/memcached performance (TCP_NODE o kern/95031 [netinet] [patch] routing table doesn't update corectl o docs/95039 doc [patch] small cosmetic syslog.conf(5) fix p docs/95059 ceri [patch] Incorrect example in wordexp(3) manpage o bin/95079 [patch] apply(1) dies when there are two %1 in command o bin/95082 [patch] ping(1) won't handle large preload patterns o ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o ports/95097 ume [patch] to build security/cyrus-sasl2 with gcc4 o ports/95102 ume [PATCH] security/cyrus-sasl2 - change authdaemond_path o bin/95146 ipfw [ipfw][patch]ipfw -p option handler is bogus o conf/95162 rc [patch] Missing feature in rc.subr o kern/95239 [patch] nftw(3) returns EINVAL for large values of max o kern/95391 [bfe] [patch] minor if_bfe error o bin/95550 [patch] ntpd(8): NTPD/ntpdate complain about IPv6 inte p usb/95616 usb [patch] Add support for USB Acer 640BT scanner o ports/95618 az [patch] irc/weechat p kern/95625 jhb [PATCH] Bug in cdboot's ISO9660 file name matching o bin/95698 philip [patch] moused(8): Software control of sysmouse p bin/95715 [patch] random(6) busy loop under some conditions o conf/95754 [patch] Portuguese timedef s ports/95759 portmgr [patch] bsd.port.mk parallel port builds broken a ports/95788 danfe [PATCH] audio/soundtouch: update to 1.3.1 o misc/95792 [patch] environment variable EDITOR is set wrong in fi o conf/95905 brooks [PATCH] /etc/rc.d/dhclient doesn't interact well with o kern/95957 gnn [netinet6] [patch] missing check for failed memory all o ports/96101 tobez [PATCH] security/p5-GSSAPI does not depend on security o bin/96128 [PATCH] Make aicasm WARNS=6 clean o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u o ports/96147 tegge [patch] devel/linuxthreads uses pre-install instead of o ports/96167 cy [PATCH] sysutils/screen: new knob WITH_CJK o stand/96236 standards [PATCH] [POSIX] sed.1 incorrectly describes a function o ports/96306 roam [PATCH] Add necessary DOS2UNIX to textproc/s5 o ports/96310 lth [PATCH] net/smokeping: Use fixed uid/gid p kern/96326 [libdisk] [patch] update to id -> partition name trans p bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob o conf/96343 [patch] rc.d order change to start inet6 before pf o kern/96346 [modules] [patch] disable build of modules that are al o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o ports/96436 x11 [patch] x11/xorg-clients: logging on xdm with pam_krb o ports/96469 seanc [PATCH] devel/tla: update to 1.3.4 p conf/96509 glebius [patch] Can't set sysctl containing space in /etc/sysc o bin/96540 [patch] catman(1) does not deal correctly with hard-li o usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o usb/96599 usb [patch] [usb] Sony Handycam DCR-HC32E memory stick slo p docs/96660 keramida [patch] mountd(8) fails to indicate debug mode does no o kern/96743 [sk] [patch] broken 32-bit register operations o conf/96746 [nanobsd] [patch] Configuration changes and README for o bin/96854 imp [patch] devd(8) parses events incorrectly in some case f ports/96891 [patch] port dns/powerdns does not have option for com o usb/96901 usb [patch] Add support for X-Micro Flash Disk o www/96902 keramida [patch] update the URL for NanoBSD project o ports/96971 [patch] graphics/xv incorrectly handles xwd files o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o bin/97002 [patch] crond(8) fails quietly if /usr/sbin/sendmail i p kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if_nvereg.h to o kern/97071 [jail] [patch] add security.jail.jid sysctl o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get f ports/97177 clsung [patch] chinese/qterm cannot be compiled o bin/97198 [patch] powerd(8) unable to reduce CPU frequency o kern/97228 sos [ata] [patch] Support new ATA ICH7 controller o docs/97231 doc [patch] ndis(4) man page outdated o www/97233 www [patch] Change the "Report a Bug" link on the home pag o www/97234 www [patch] Re-order links in bugreports.html o docs/97237 doc [patch] Fix dead links in FAQ o ports/97253 lioux [PATCH] multimedia/ogle: portlint(1) fixes f ports/97279 shaun [PATCH] net/linphone-base: Fix build on 4.x o conf/97311 [patch] /etc/rc.d/ipfilter reload can load bad files o kern/97329 matteo [nfs] [patch] code simplification o docs/97375 doc [PATCH] remove nonexistent man page reference o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid f ports/97406 portmgr [PATCH] bsd.port.mk: ghostscript port detection refact o www/97408 www [patch] updates for www/en/myths.sgml o bin/97467 [patch] ftpd(8) has no way to specify socket buffer si o usb/97472 usb [patch] add support for Olympus C150,D390 a ports/97579 delphij [patch] ports mail/spamd to reflect the public hostnam f ports/97622 miwi [patch] devel/gauche-sdl o kern/97624 sos [ata] [patch] enable SATA RAID on ASUS N4L-VM DH (ICH7 o ports/97653 sergei [patch] databases/puredb o ports/97654 anholt [patch] games/enigma p conf/97697 matteo [PATCH] rc.conf - jail__exec_afterstart[0..n] o ports/97708 roam [patch]misc/bogosort o ports/97711 anholt [patch] graphics/driconf update to 0.9.0 o ports/97714 aaron [patch]lang/harbour o ports/97715 roam [patch] misc/histring o ports/97724 lioux [patch]multimedia/libdivxdecore-devel/ f ports/97725 mi [patch]graphics/libfpx o ports/97729 lioux [patch] multimedia/ldvd o ports/97730 lioux [patch]multimedia/libdivxdecore o ports/97745 lioux [patch]net-p2p/mldonkey-sancho o ports/97746 lioux [patch]mldonkey-serverspy o ports/97750 lev [patch]games/xwelltris o ports/97767 girgen [PATCH] Some improvements over postgresql81-server o kern/97786 [udf] [patch] fs/udf: incorrect timestamps o ports/97794 sergei [patch] sysutils/installwatch f ports/97802 lawrance [patch] sysutils/rename o ports/97818 roam [patch]net/magictun f ports/97834 pav [patch] science/bblimage o ports/97841 roam [patch]net/tcpcat o ports/97941 ijliao [PATCH] databases/dbh: update to 4.5.0 o usb/97948 usb [patch] CMOTECH CDMA USB modem support f ports/97955 [PATCH] news/inn-stable: update to 2.4.4-stable f ports/97960 clsung [PATCH] chinese/libtabe: update to 0.2.6 o kern/98015 [bfe] [patch] bfe(4): double free in error handling pa f ports/98066 itetcu [PATCH] editors/tamago: apply anthy patch o ports/98105 portmgr [patch] new feature: IA32_BINARY_PORT macro o bin/98134 [patch] fwcontrol(8): MPEG2-TS/HDV support for fwcontr o ports/98283 mharo [patch] security/sudo: fix `OME' instead of `$HOME' in o ports/98320 mharo [PATCH] security/p5-Crypt-DSA: update to 0.14 o ports/98325 mharo [PATCH] math/p5-Math-Pari: use gcc >= 3.2, instead of f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD f ports/98364 [PATCH] net-mgmt/nagios-plugins: add several contrib c o ports/98371 mharo [PATCH] security/p5-Crypt-DSA: update to 0.14 o usb/98385 usb [patch] add support for libretto DVD Dock device to um o ports/98458 jylefort [PATCH] games/xpilot-ng-server: update to 4.7.2 o ports/98459 obrien [PATCH] shells/bash o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled o kern/98477 [isofs] [patch] For big size of file of cd9660 o bin/98489 matteo [patch] usr.bin/top to display jail id f ports/98499 [PATCH] misc/libpri: update to 1.2.3 f ports/98509 [patch] multimedia/totem, multimedia/totem-gstreamer: f ports/98512 [patch] multimedia/transcode: update pkg-plist o ports/98560 roam [PATCH] www/p5-WWW-Curl: update to 3.02 o ports/98565 portmgr [PATCH] Add PKGVERSION to bsd.port.mk f ports/98572 sat [PATCH] mail/linux-thunderbird: Disable auto-update o ports/98596 [patch] shell script to clean up ports work directorie o conf/98603 [PATCH] /etc/rc.d/ramdisk + ramdisk-own replacement f ports/98607 [PATCH] deskutils/ruby-alexandria: [pkg-plist fix] o ports/98613 eclipse [PATCH] java/eclipse: Problem with org.eclipse.platfor o ports/98614 knu [PATCH] Port databases/ruby-bdb does not build when mo a ports/98615 brooks [patch] net/globus4: fix test for the PowerPC architec o kern/98618 [libexpat] [patch] src/lib/libexpat is setup for small f ports/98639 [PATCH] japanese/ja-edict-utf-8: update to 20060608, u o bin/98693 [patch] top(1): Reduce NIS server loading f ports/98709 itetcu [PATCH] mail/dspam - ClamAV not supported when WITHOUT o docs/98759 doc [patch] sbp_targ(4) man page missing reference to devi o ports/98782 aaron [PATCH] BasiliskII Upgrade o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o ports/98792 adamw [PATCH] audio/cmus: update to 2.0.2 o docs/98801 doc [patch] gmirror(8) and glabel(8) manpages should menti o ports/98802 [PATCH] upgrade emulators/xmame 0.104 to 0.106 o bin/98805 [new feature] [patch] ddate(1) for BSD o conf/98815 [PATCH] Add euro symbol to pt_PT locale using other en f ports/98844 [PATCH] net/libeXosip2: update to 2.2.3 o bin/98860 [patch] mount_mfs(8): allow create md without softupda o ports/98868 demon [PATCH] devel/p5-Tree-Simple: update to 1.16 o ports/98888 roam [PATCH] devel/p5-File-Append-TempFile: update to 0.03 o kern/98898 [pci] [patch] fix random sound problems in fm801 o ports/98909 portmgr [PATCH] bsd.port.mk: Extend DISTVERSION->PORTVERSION a f ports/98924 aaron [PATCH] textproc/p5-Excel-Template: update to 0.26 o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o ports/98946 dougb [patch] xscreensaver and PAM support f ports/98995 aaron [PATCH] net/p5-POE-Component-Jabber: update to 1.21 f ports/99002 aaron [PATCH] textproc/p5-POE-Filter-XML: update to 0.29 o ports/99003 jmz [PATCH] lang/p5-Utils-F77: update to 1.15 o docs/99007 doc [patch] misleading nat configuration info o ports/99012 jmz [PATCH] graphics/pgperl: update to 2.19 o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap f ports/99019 aaron [PATCH] graphics/p5-GD: update to 2.34 f ports/99023 aaron [PATCH] lang/p5-Error: update to 0.15.009 f ports/99025 aaron [PATCH] graphics/p5-Image-Size: update to 3.0 o ports/99029 demon [PATCH] net/p5-Net-RawIP: update to 0.2 o ports/99030 demon [PATCH] misc/p5-I18N-Charset: update to 1.37.9 o ports/99050 roam [patch] Update port ftp/curl to 7.15.4 o ports/99053 ijliao [PATCH] net/p5-Frontier-RPC: update to 0.07.b4 o ports/99055 kbyanc [PATCH] net/p5-Net-Radius: update to 1.44 o ports/99056 kuriyama [PATCH] japanese/p5-Jcode: update to 2.05 o ports/99057 kuriyama [PATCH] devel/p5-IO-KQueue: update to 0.30 o ports/99058 kuriyama [PATCH] converters/p5-JSON: update to 1.07 o ports/99059 kuriyama [PATCH] math/p5-Math-Vec: update to 0.040 o ports/99060 kuriyama [PATCH] databases/p5-Search-Namazu: update to 0.96 o ports/99061 kuriyama [PATCH] ftp/p5-Net-FTP-Common: update to 5.31 o ports/99091 gioria [PATCH] net/delegate: update to 9.2.2 o ports/99092 shaun [patch] devel/monotone update to 0.27 o ports/99110 lev [PATCH] textproc/p5-XML-XUpdate-LibXML: update to 0.6. o ports/99117 lth [PATCH] textproc/p5-PPI: update to 1.115 o ports/99126 osa [PATCH] math/p5-Statistics-Lite: update to 2.0 o ports/99134 roam [PATCH] audio/p5-Net-FreeDB: update to 0.07 o ports/99135 roam [PATCH] devel/p5-File-Append-TempFile: update to 0.04 f ports/99136 aaron [PATCH] devel/p5-ReadLine-Perl: update to 1.0302 o ports/99138 skv [PATCH] www/p5-Apache-Test: update to 1.28 f ports/99141 itetcu [PATCH] audio/musepack: portlint(1) fixes f ports/99145 itetcu [PATCH] audio/pd: portlint(1) fixes f ports/99151 itetcu [PATCH] audio/spiralsynthmodular: portlint(1) fixes f ports/99152 itetcu [PATCH] audio/tuneradio: portlint(1) fixes f ports/99163 itetcu [PATCH] polish/gadugadu OPTIONS fix o ports/99169 tobez [PATCH] www/p5-Jifty: update to 0.60616 o gnu/99173 [PATCH] replace gnu patch with a bsd-licensed one. o ports/99175 stefan [PATCH] x11/xbindkeys_config run-depends on x11/xbindk o kern/99183 [PATCH] Gvinum stylefix o kern/99186 [PATCH] Gvinum dumpconfig/setstate/stop implementation o kern/99216 [bfe] [patch] make bfe(4) always detect LINK_DOWN even o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o ports/99235 [PATCH] comms/linrad: update to 2.14 f ports/99261 [PATCH] sysutils/fusefs-libs: update to 2.5.3 o ports/99294 lofi [PATCH][OPTIONS] multimedia/xvid options fixing o ports/99302 jdp [patch] net/cvsup options o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o conf/99328 [patch] updates for src/share/examples/cvsup f ports/99352 aaron [PATCH] net/p5-Net-Delicious: update to 1.01 o ports/99354 andreas [patch] print/apsfilter incorrectly specifies dependen o ports/99389 skv [PATCH] databases/firebird-devel: Use USE_LDCONFIG o ports/99398 shaun [PATCH] audio/glame: [SUMMARIZE CHANGES] o ports/99417 [PATCH] devel/cvs2svn: update to 1.3.1 o ports/99441 aaron [PATCH] devel/commoncpp: update to 1.4.2, take maintai o ports/99442 [patch] Update ports editors/scite and x11-toolkits/sc o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o ports/99455 pirzyk [PATCH] sysutils/p5-File-Stat-Bits: update to 1.00 o ports/99456 pirzyk [PATCH] sysutils/p5-Filesys-Df: update to 0.91 f ports/99457 aaron [PATCH] devel/p5-Object-InsideOut: update to 1.44 f ports/99458 aaron [PATCH] devel/p5-CPANPLUS: update to 0.0720 f ports/99468 [PATCH] cad/libgeda update f ports/99469 [PATCH] cad/geda-symbols update f ports/99476 [PATCH] cad/gschem update f ports/99477 [PATCH] cad/gnetlist update f ports/99478 [PATCH] cad/geda-utils update f ports/99479 [PATCH] cad/geda-symcheck update f ports/99482 [PATCH] cad/geda update o ports/99483 mat [patch][maintainer-update] irc/ircservices update 1074 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 11:15:53 2006 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50DE116A401 for ; Mon, 26 Jun 2006 11:15:53 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 942A443D6B for ; Mon, 26 Jun 2006 11:15:40 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5QBFebP046086 for ; Mon, 26 Jun 2006 11:15:40 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QB688A043920 for freebsd-bugs@FreeBSD.org; Mon, 26 Jun 2006 11:06:09 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jun 2006 11:06:09 GMT Message-Id: <200606261106.k5QB688A043920@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 11:15:53 -0000 Problem reports for tag '2tb': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/18874 [2TB] 32bit NFS servers export wrong negative values t o kern/41723 [2TB] on 1TB fs, copying files to filesystem causes "i p bin/56606 [2TB] df cannot handle 2TB NFS volumes o bin/66984 qa [2TB] [patch] teach sysinstall about larger disks p kern/67546 [2TB] Coredumps > 2Gb do not work (on 64bits platforms o bin/74567 [2TB] [patch] du doesn't handle sizes >1TB o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/84589 [2TB] 5.4-STABLE unresponsive during background fsck 2 o bin/88872 [2TB] Error 36 while sysinstall tries to create / part o bin/88873 [2TB] gpt create fails "bogus map" "unknown error: 0" 10 problems total. Problem reports for tag '64-bit': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90512 [64-bit] Snapshot corruption after fs activity 1 problem total. Problem reports for tag 'aac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80048 [aac] [patch] support for HP ML110 G2 SATA RAID Contro o kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceProbeInfo comm o kern/87191 scottl [aac] [patch] aac(4) panics immediately with INVARIANT o i386/87364 scottl [aac] aac controller stopped working between BETA5 and o kern/88718 [aac] [timeout] unable to install on RAID 5 and FreeBS o kern/91910 scottl [aac] aac driver hangs on Dell PE800 with CERC SATA co o kern/93414 scottl [aac] [patch] compilation problem in aac_ioctl header o kern/93903 [aac] aac driver cannot shutdown controller causing da 8 problems total. Problem reports for tag 'acpi': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o kern/74868 [acpi] ACPI enabled in 5.3 Release make Kernel reboot o i386/87568 acpi [ACPI] [REGRESSION] 6.0-STABLE needs ACPI disabled but o i386/89288 i386 [acpi] DMA error while booting with acpi enable o kern/89411 [acpi] acpiconf bug o kern/94939 [acpi] [patch] reboot(8) fails on IBM / Intel blades o i386/97468 i386 [acpi] ACPI on ASUS A7V hangs on shutdown -p (power of o kern/98171 acpi [acpi] ACPI 1304 / 0501 errors on Acer 5024WLMi Laptop 8 problems 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 'agp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets f i386/59854 anholt [agp] [panic] System panics when AMD 762 AGP is loaded a kern/62906 peadar [agp] [patch] AGP misconfigures i845G chipset, causing o i386/68518 i386 [agp] [hang] hangs while loading 82443BX agp during bo a kern/72224 anholt [agp] umass devices broken by DRM (AGP issue?) o i386/79141 i386 [agp] 5.4Beta1 does not recognize my intel graphics ca o kern/84015 [agp] [hang] Nforce3-250Gb freezes on FreeBSD-6 beta1 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad p kern/91315 anholt [agp] [patch] add Intel E7505 chipset support to agp(4 o kern/93676 [agp] Yet another i915G drm/agp issue o kern/97616 [agp] 6.1-RELEASE FreeBSD does not recognize VIA K8M80 11 problems total. Problem reports for tag 'ahc': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S s kern/45568 gibbs [ahc] ahc(A19160) pci parity error o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o kern/92798 scsi [ahc] SCSI problem with timeouts 4 problems total. Problem reports for tag 'ahd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73646 [ahd] I/O performance: with/without MEMIO option o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 2 problems total. Problem reports for tag 'altq': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/94182 [altq] [feature request] altq support for vlan driver 1 problem total. Problem reports for tag 'amd': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39425 [amd] Auto mounted directory was not found at boot tim 1 problem total. Problem reports for tag 'amd64': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/89549 amd64 [amd64] nve timeouts on 6.0-release o amd64/89550 amd64 [amd64] sym0: VTOBUS failed (6.0 Release) 2 problems total. Problem reports for tag 'amdpm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77365 [amdpm] [patch] amdpm driver has wrong PCI device ID f 1 problem total. Problem reports for tag 'amr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71771 [amr] Hang during heavy load with amr raid controller o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/76848 [amr] amr hangs o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S 5 problems total. Problem reports for tag 'an': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/36170 [an] [patch] an(4) does an_init() even if interface is o kern/69158 [an] Cisco MPI350 wireless card problems related to ir o kern/75407 [an] an(4): no carrier after short time o kern/85886 [an] an0: timeouts with Cisco 350 minipci 4 problems total. Problem reports for tag 'apic': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/80426 acpi [APIC] [panic] 5.4-RC3 still panic when boot on ASUS P o kern/81000 [apic] Via 8235 sound card worked great with FreeBSD 5 2 problems total. Problem reports for tag 'apm': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/31353 i386 [apm] [patch] 'shutdown -p' does not work on SMP Tyan o i386/40219 i386 [apm] apm breaks removable media o i386/40958 i386 [apm] apm on Acer TravelMate 351 could not resume o i386/44130 i386 [apm] Enabled apm hangs up FreeBSD kernel on i815 chip 4 problems total. Problem reports for tag 'ar': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/57043 i386 [ar] [hang] ar driver with 2 port PCI card locks up wh o kern/93771 [ar] [panic] atacontrol status ar1 causes panic o kern/98804 [ar] VIA V-RAID metadata mis-read 3 problems total. Problem reports for tag 'arp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98078 [arp] Static arp entries may be ignored 1 problem total. Problem reports for tag 'asr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on o kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't work together o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 4 problems total. Problem reports for tag 'ata': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/58784 i386 [ata] ATA does not work in DMA mode (ASUS P55TP4N moth o kern/59624 [ata] [patch] HightPoint HPT371 support for FreeBSD 4. o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture o kern/68315 [ata] [patch] atacontrol(8) addspare for 4.x o i386/74658 i386 [ata] ATAPI CD not recognized after booting FreeBSD 4. o i386/75090 i386 [ata] READ_BIG errors with Sony CRX1611 o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha f kern/76080 [ata] [panic] "bio_completed .. greater than bio_lengt s i386/76397 i386 [ata] ata raid crashes in g_down (heavy load) o i386/78517 i386 [ata] WRITE_DMA and READ_DMA timeouts with ATI RX330 c o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks p kern/79332 [ata] [patch] "ffs_mountroot: can't find rootvp" after o kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and 5.4 beta 1 o kern/79783 [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o i386/86364 i386 [ata] ATA woes, SATA controller: failed writes, FS cor o kern/88714 sos [ata] cannot record CD-R since 6.0 (regression) o i386/89353 i386 [ata] invalid disk controller recognition of intel ICH p kern/89481 keramida [ata] Spelling error in ata-lowlevel.c o kern/89597 [ata] uncorrectable ATA disc errors can be corrected w o kern/89885 [ata] Writing to S-ATA HDD in DMA mode fails o amd64/89968 amd64 [ata] Asus A8N-E MediaShield RAID problem (read-only s o kern/90206 [ata] [crash] Server reboot after "FAILURE - out of me o kern/90820 [ata] aborting burncd may keep drive "locked" o i386/90839 i386 [ata] burncd gets error on CDRIOCFIXATE with HL-DT-ST o bin/90854 [ata] problem with cd recorder (RICOH CD-R/RW MP7200A/ o i386/91214 i386 [ata] Disk corruption with Asus K8S-LA: board doesn't o kern/91290 sos [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 o kern/91502 sos [ata] [patch] ICH7 - finds only 2 out of 4 drives o kern/91723 [ata] IDE corruption on ICH controller, affects the ch o i386/91761 i386 [ata] NEC_DVD-RW + system start: semaphore timeout o kern/91914 [ata] Disk System Crashes - Raid Disk o kern/92238 [ata] Spurious "atapci1: failed to enable memory mappi o kern/93368 sos [ata] [patch] ATA_SMART command is missing o kern/93369 [ata] [patch] Fix failed detection of Nvidia NForce2 c o kern/93885 [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/94091 sos [ata] Audio CD is still detected even after it has bee o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o kern/94426 [ata] Cannot blank CDs with Samsung TS-L532A o i386/94911 i386 [ata] ata regression with DOM-IDE o kern/95023 [ata] Hard Drives not recognized by 6.0 Current on IC7 f kern/95184 sos [ata] Intel ICH7 support broke in 6.1 BETA (regression o kern/95260 [ata] Wrong array detection for LSI v3 SATA MegaRAID o kern/95342 sos [ata] Unable to run smartd after last commits to sys/d o kern/95344 sos [ata] burncd(8) failed to fixate cd after last sys/dev o kern/95554 sos [ata] undetected sata drive on 6.1, detected on 6.0 o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o kern/97228 sos [ata] [patch] Support new ATA ICH7 controller o i386/97263 i386 [ata] FreeBSD only detects first drive o i386/97589 i386 [ata] FAILURE - READ_DMA (regression from 5.4) o kern/97624 sos [ata] [patch] enable SATA RAID on ASUS N4L-VM DH (ICH7 o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o kern/98216 sos [ata] Intel ICH6 SATA150 with FreeBSD 6.1-RELEASE prob o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see o kern/98743 [ata] ATA panic and or timeout on IBM/Lenovo S50 with o i386/98765 i386 [ata] timeouts on sata drive o kern/98869 [ata] can't burn with Lite-ON SOHW-832S DVD+R dual lay o kern/98962 sos [ata] [patch] writing >1 session on ATAPI CDs fails o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr 61 problems total. Problem reports for tag 'atapicam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73675 [atapicam] atapicam causes interrupt storm o amd64/86503 amd64 [atapicam] [panic] k3b crash the system like hardware o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem 3 problems total. Problem reports for tag 'ath': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/77439 [ath] WAG511 NETGEAR pccard does not attach (Dell Insp o kern/83429 [ath] ath(4) does not work with the D-Link DWL-G630 (r o kern/87758 [ath] [hang] Reboot problem with atheros wireless card o kern/88082 [ath] [panic] cts protection for ath0 causes panic f kern/93125 sam [ath] ath0 times out periodically o kern/93886 [ath] Atheros/D-Link DWL-G650 long delay to associate o sparc/94483 sparc64 [ath] ath_hal does not work on 6-release/sparc64 o kern/97458 [ath] ath driver hangs up system during reboot f kern/99036 sam [ath] Long association time for 11b access points with 9 problems total. Problem reports for tag 'aue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/51009 [aue] [patch] buggy aue driver fixed. o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP f kern/71280 [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt o kern/91311 [aue] aue interface hanging 5 problems total. Problem reports for tag 'bfe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72296 [bfe] bfe0: discard oversize frame (ether type 5e0 fla o i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o kern/95391 [bfe] [patch] minor if_bfe error o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in o kern/98015 [bfe] [patch] bfe(4): double free in error handling pa o kern/99216 [bfe] [patch] make bfe(4) always detect LINK_DOWN even 6 problems total. Problem reports for tag 'bge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44500 [bge] [patch] bge(4): add AC1001 Gigabit NIC as workin o i386/45773 i386 [bge] Softboot causes autoconf failure on Broadcom 570 f kern/46484 [bge] [panic] System panics upon configuration of bge f kern/61109 [bge] bge on TYAN AMD762-based Thunder/Tiger passes on f kern/68351 glebius [bge] bge0 watchdog timeout on 5.2.1 and -current, 5.1 o kern/73538 [bge] problem with the Broadcom BCM5788 Gigabit Ethern o kern/79143 [bge] Broadcom NIC driver do not work for IPMI o kern/79324 [bge] Broadcom bge chip initialization failure o kern/92090 [bge] bge0: watchdog timeout -- resetting o kern/94162 [bge] 6.x kenel stale with bge(4) f kern/94307 [bge] kernel panics when passing trafffic through bge1 o kern/94424 [bge] BGE5721 or BGE5750? o i386/94850 i386 [bge] FreeBSD 6.0 on Fujitsu BX300, networking doesn't o kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work o kern/96806 [bge] [patch] Correction of kernel panic with Broadcom o kern/98738 [bge] [patch] if_bge.c Fail to collect link-status of o kern/98848 [bge] BGE is recognized as 1000baseSX but is connected 18 problems total. Problem reports for tag 'biosdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/24997 i386 [biosdisk] [patch] /boot/loader cannot handle extended 1 problem total. Problem reports for tag 'bktr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/14166 [bktr] [patch] AVER TVPhone o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/36415 [bktr] [patch] driver incorrectly handles the setting a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" s kern/48279 [bktr] Brooktre878 may cause freeze o kern/56245 [bktr] Distorted and choppy video with bktr-driver on o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget f kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/94369 [bktr] [patch] Patch to support Leadtek WinFast Tv2000 15 problems total. Problem reports for tag 'bluetooth': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/94577 emax [bluetooth] [patch] Wrong mouse button mapping in bthi o kern/99200 [bluetooth] SMP-Kernel crashes reliably when Bluetooth 2 problems total. Problem reports for tag 'boot0': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37380 jhb [boot0] [patch] boot0 partition list is outdated o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 2 problems 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 'bootmgr': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/38826 [bootmgr] RFE: BootMgr should provide more identifying 1 problem total. Problem reports for tag 'bootp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82491 [bootp] [patch] bootpd shouldn't ignore requests 1 problem total. Problem reports for tag 'bpf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/16644 [bpf] [patch] Bad comparison expression in bpf_filter. o kern/36219 [bpf] [patch] poll() behaves erratic on BPF file descr o kern/71711 [bpf] [patch] generate a single bpf timestamp for each o kern/88268 [bpf] yet another null pointer in bpf code o kern/89748 dwmalone [bpf] [patch] BPF indexed byte load can sign extend o kern/89752 [bpf] [patch] bpf_validate() needs to do more checks 6 problems total. Problem reports for tag 'bridge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44417 luigi [bridge] [patch] ipfw layer2 rules are not checked for a kern/57100 bms [bridge] disable hardware checksums when using bridge( o kern/80572 [bridge] bridge/ipfw works intermittantly. o kern/82919 [bridge] [patch] Bridge configuration update will cras s kern/86361 thompsa [bridge] bridge(4) does not work with VLAN trunks 5 problems total. Problem reports for tag 'bsd.cpu.mk': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family 1 problem total. Problem reports for tag 'bus': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/46113 i386 [bus] [patch] busspace bugs in parameter checking 1 problem total. Problem reports for tag 'busdma': S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock called (by ata o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 4 problems total. Problem reports for tag 'cam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17504 ken [cam] [patch] Another Micropolis Synchronize Cache Pro s i386/17662 gibbs [cam] cam_xpt.c incorrectly disables tagged queuing fo s kern/28840 gibbs [cam] Possible interrupt masking trouble in sys/cam/ca s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s kern/72041 [cam] [hang] Deadlock when disk is destroyed while use o kern/76893 [cam] [patch] Fatal divide in booting processes with B s kern/85975 [cam] devfs does not create entries when removable med o kern/92751 [cam] [reboot] 5.4 crashes after camcontrol devlist 8 problems total. Problem reports for tag 'cardbus': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84954 imp [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 o i386/88802 i386 [iwi] [cardbus] CARDBUS related kernel crash (TSB43AB2 o kern/92966 imp [cardbus] cardbus.ko loading failed 3 problems total. Problem reports for tag 'carp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92776 glebius [carp] kernel-crash using carp f kern/93448 glebius [carp] CARP advskew not propagated to VRRP packets p kern/93829 glebius [carp] pfsync state time problem with CARP + Arp.Balan o kern/98622 [carp] carp with IPv6 broken on 6.1 (regression) 4 problems total. Problem reports for tag 'cbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/96286 [cbb] [panic] TI1131 PCI CardBus Bridge: driver cbb le 1 problem total. Problem reports for tag 'coda': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80031 [coda] [patch] Remove insque/remque from kernel land o kern/95891 [coda] [panic] kernel panic when coda6_client 2 problems total. Problem reports for tag 'crypto': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/91407 [crypto] [panic] Kernel panic when heavily loading cry o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to 4 problems total. Problem reports for tag 'cue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75710 [cue] cue0 device configuration causes kernel panic 1 problem total. Problem reports for tag '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 'dc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite o kern/50574 mbr [dc] dc driver incorrectly detects ADMtek chip model o kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb o kern/55793 [dc] Flaky behavior of if_dc when initializing a LNE10 o kern/62333 [dc] syslog: kernel: dc0: discard oversize frame (ethe p kern/75582 glebius [dc] [patch] Add support for Linksys PCMPC200 Cardbus o kern/79262 [dc] Adaptec ANA-6922 not fully supported o kern/82070 [dc] Not all dc(4) devices can be used: MII without an s sparc/82681 sparc64 [dc] dc state messages o sparc/92033 sparc64 [dc] dc(4) issues on Ultra10 o kern/92279 [dc] Core faults everytime I reboot, possible NIC issu o kern/94196 [dc] if_dc panics on bad hardware o i386/96397 i386 [dc] strange behaveour of the dc driver on divicom dm9 13 problems total. Problem reports for tag 'de': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/15542 [de] de(4) suddenly stops working a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o kern/71450 [de] de(4): MAC address change on 21040 "Tulip" Ethern o kern/72293 [de] de(4) NIC performance degradation with debug.mpsa 4 problems total. Problem reports for tag 'devfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85751 [devfs] [panic] panic in devfs_setattr() when running o kern/87836 [devfs] If using ATAPICAM with cd(dvd)rw without media o conf/91342 [devfs] Errors in devfs.rules files don't get logged 3 problems total. Problem reports for tag 'dhcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71045 [dhcp] DHCP-Request is sets other device's ip to null, 1 problem total. Problem reports for tag 'digi': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o kern/74281 [digi] digi(4): Digiboard PCI Xem (64-ports) detection o kern/82227 [digi] Xem: chained concentrators not recognised o kern/83254 [digi] driver can't init Digiboard PC/4e 4 problems total. Problem reports for tag 'diskless': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/87586 [diskless] [panic] Unable to use networked swap in 6.0 1 problem total. Problem reports for tag 'dns': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/54189 [dns] resolver should resolve hostnames with underscor 1 problem total. Problem reports for tag 'drm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82064 anholt [drm] DRM not working with SMP o kern/87653 [drm] ATI Radeon Mobile X600SE not detected by kernel o kern/92381 [drm] i915 drm module unuseable by X.org 6.9.0 for GM8 o kern/94823 [drm] DRM doesnt't work with i915.ko p kern/97056 [drm] [patch] PCIE radeon DRM doesn't correctly initia 5 problems total. Problem reports for tag 'dummynet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same 1 problem total. Problem reports for tag 'ed': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/9570 dfr [ed] [patch] ed(4) irq config enhancement o i386/12088 imp [ed] [patch] ed(4) has minor problem with memory alloc o kern/80853 [ed] [patch] add support for Compex RL2000/ISA in PnP o kern/84202 [ed] [patch] Holtek HT80232 PCI NIC recognition on Fre o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o amd64/95282 amd64 [ed] fix ed for RELENG_5 amd64 so that it has network 7 problems total. Problem reports for tag 'ef': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85086 [ef] [patch] Locking fixes for ef(4) (+removes mem. le 1 problem total. Problem reports for tag 'em': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/72970 glebius [em] em(4) driver can hang when mbuf starvation occurs o kern/77588 [em] PREEMPTION problems in combination with em driver s kern/80932 [em] [patch] Degraded performance of em driver f kern/81147 linimon [em] [patch] em0 reinitialization while adding aliases o kern/86124 [em] dell 1850 pro/1000 slow (em problem? SMP problem? o kern/86306 [em] [patch] if_em.c locks up while trying to send a h o kern/90167 [em] adding aliases to em0 interfaces cause the interf o kern/94380 [em] Laptop panics, related to networking after resume o kern/96715 [em] [fxp] low speed if speed/duplex set o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 10 problems total. Problem reports for tag 'ep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OACTIVE o kern/74920 [ep] [panic] 3Com 3C509-Combo Etherlink III panics sys 2 problems total. Problem reports for tag 'ex': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43916 [ex] [hang] Olicom OC-2220 (PC-card) hangs on ifconfig o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod 3 problems total. Problem reports for tag 'ext2fs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77826 [ext2fs] ext2fs usb filesystem will not mount RW 1 problem total. Problem reports for tag 'fdc': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/43539 i386 [fdc] Cannot mout floppy on Compaq Proliant ML370 o kern/66876 [fdc] [patch] Cannot extract tar(1) multi-volume archi o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o kern/73961 [fdc] floppy disk drive performance problem [new in 5. o kern/74827 [fdc] Problem writing data to floppies [5.3-specific] s kern/75233 [fdc] breaking fdformat /dev/fd0 resets device permiss o i386/77443 i386 [fdc] can't access floppy -- regression on 5.3 o kern/84799 [fdc] [patch] can't read beyond track 0 on fdc (IBM th o i386/87968 i386 [fdc] cannot access the floppy device f i386/88585 i386 [fdc] Cannot mount floppy (HP Proliant ML370 G4) o kern/91476 [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97517 [fdc] Floppy device lost permissions when active flopp 13 problems total. Problem reports for tag 'fdescfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95711 [fdescfs] rm on fdescfs causes panic: lockmgr: locking 1 problem total. Problem reports for tag 'fe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88576 imp [fe] revision 1.31 to if_fe_pccard.c breaks NE200T fun 1 problem total. Problem reports for tag 'ffs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/48033 [ffs] FFS superblock flags are being ignored? o kern/89247 [ffs] [patch] QUOTA in 6.0/7.0-current leak o kern/92272 [ffs] [hang] Filling a filesystem while creating a sna 3 problems total. Problem reports for tag 'fifo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76144 [fifo] poll doesn't set POLLHUP when FIFO is closed o kern/76525 [fifo] select() hangs on EOF from named pipe (FIFO) o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke 3 problems total. Problem reports for tag 'firewire': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74238 firewire [firewire] fw_rcv: unknown response; firewire ad-hoc w o kern/93083 [firewire] Detach of Firewire Harddisk not recognied p o kern/95077 firewire [firewire] fatal trap 19 at fwohci_pci_init o kern/97208 [firewire] System hangs / locks up when a firewire dis 4 problems total. Problem reports for tag 'fwip': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85434 firewire [fwip] fwip (IP over firewire) doesn't work with polli 1 problem total. Problem reports for tag 'fxp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/12543 [fxp] [patch] cumulative error counters for fxp(4) f kern/40274 [fxp] "fxp: device timeout" errors during heavy, susta o kern/80784 mux [fxp] fxp gives device timeouts o amd64/82425 amd64 [fxp] fxp0: device timeout, fxp interface dies on 5.4/ o kern/85258 mux [fxp] changing promisc mode on nic can lead to kernel o kern/87194 [fxp] fxp(4) promiscuous mode seems to corrupt hw-csum o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o kern/96715 [em] [fxp] low speed if speed/duplex set 8 problems total. Problem reports for tag 'gbde': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76538 geom [gbde] nfs-write on gbde partition stalls and continue o kern/87544 geom [gbde] mmaping large files on a gbde filesystem deadlo 2 problems total. Problem reports for tag 'geli': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98093 geom [geli] Detaching gmirror/geli leads to panic (REGRESSI o kern/98742 geom [geli] IO errors while using geli o kern/99256 geom [geli] kernel panic/freeze with geli and ufs (maybe re 3 problems total. Problem reports for tag 'geode': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/98215 i386 [geode] regression: FreeBSD can no longer boot Geode G 1 problem total. Problem reports for tag 'geode.c': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/81358 i386 [geode.c] [patch] add PC Engines WRAP support 1 problem total. Problem reports for tag 'geom': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( o kern/83464 [geom] [patch] Unhandled malloc failures within libgeo o kern/84556 geom [geom] GBDE-encrypted swap causes panic at shutdown o bin/84634 fjoe [geom] [patch] new utility to control GEOM uzip class o kern/84637 pjd [geom] [patch] GEOM LABEL sometimes doesn't recognize o kern/87986 pjd [geom] [hang] gmirror and quota will hang the OS o amd64/89546 amd64 [geom] GEOM error o kern/94299 pjd [geom] missing printf locking for geom_mirror boot mes o kern/94632 geom [geom] Kernel output resets input while GELI asks for o kern/95771 geom [geom] geom mirror provider destroyed (machine crashed o kern/98034 geom [geom] dereference of NULL pointer in acd_geom_detach o kern/98538 geom [geom] Kernel panic on ggate destroy 12 problems total. Problem reports for tag 'geom_mirror': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90582 geom [geom_mirror] [panic] Restore cause panic string (ffs_ 1 problem total. Problem reports for tag 'geom_vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89102 geom [geom_vfs] [panic] panic when forced unmount FS from u 1 problem total. Problem reports for tag 'gif': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/58870 bms [gif] [panic] page fault in kernel mode with ifconfig o kern/95532 [gif] if_gif has artificial limitations 2 problems total. Problem reports for tag 'gpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o ia64/85772 ia64 [gpt] gpt (geom_) needs to adopt g_ctl 1 problem total. Problem reports for tag 'gre': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/47813 [gre] pseudo-device gre(4) doesn't appear to work with o kern/60183 sobomax [gre] [patch] No WCCPv2 support in gre o bin/74062 [gre] ifconfig(8) does not display tunnel endpoints fo o kern/85320 [gre] [patch] possible depletion of kernel stack in ip 4 problems total. Problem reports for tag 'headers': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/45793 [headers] [patch] invalid media subtype aliases in if_ o kern/68081 [headers] [patch] sys/time.h (lint fix) o kern/74159 [headers] [patch] fix warnings concerned with header f o kern/84981 [headers] [patch] header protection for o kern/42065 [kernel] [patch] kern.ps_showallprocs has no effect on o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o kern/43577 [kernel] [patch] feature request: new kernel option SH o kern/48471 pjd [kernel] [patch] new feature: private IPC for every ja o kern/50526 [kernel] [patch] update to #! line termination s kern/50827 [kernel] [patch] new feature: add sane record locking o kern/53447 alfred [kernel] poll(2) semantics differ from susV3/POSIX o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o kern/57722 [kernel] [patch] uidinfo list corruption o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o o kern/61497 ups [kernel] [patch] __elfN(map_insert) bug o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o kern/69064 [kernel] [patch] No multiple ip4/6's could assigned to o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame s kern/79339 [kernel] [patch] Kernel time code sync with improvemen o kern/81588 phk [kernel] [patch] Devices with SI_CHEAPCLONE flag don't o kern/81943 des [kernel] [patch] _assert_sbuf_integrity causes panic f p kern/85176 des [kernel] [patch] optimization of fdalloc o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel o kern/86336 rwatson [kernel] LOR in kern/uipc_usrreq.c and kern/kern_descr o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o kern/88336 [kernel] [patch] setkey(8) -D fails to report all SAs p threa/89262 threads [kernel] [patch] multi-threaded process hangs in kerne p kern/90800 maxim [kernel] [patch] it is possible to fake credentials in o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/92023 [kernel] 'options DEVICE_POLLING' makes loadavg wrong o kern/93199 [kernel] [patch] missing linux rt_sigtimedwait system o kern/93331 [kernel] [patch] broken asm in kernel o kern/93755 [kernel] [patch] 2 copy'n'paste-os in sys/vm/phys_page o kern/93887 [kernel] cpu_spinwait calls missing in subr_smp.c o kern/94413 [kernel] wine fails when increasing kern.maxdsiz o kern/94480 [kernel] [patch] bread(3) & bwrite(3) can crash under o kern/95368 [kernel] [patch] Test for race between callout_drain() o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/98116 [kernel] Crash with sparse files and execve() p kern/98298 glebius [kernel] panic: mutex gif softc not owned at /usr/src/ o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled f kern/98858 [kernel] [patch] Local denial of service (mbuf exhaust 49 problems total. Problem reports for tag 'kevent': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89775 [kevent] [hang] kevent hangs on second wait for /dev/d 1 problem total. Problem reports for tag 'kgdb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80321 ups [kgdb] serial db problems 1 problem total. Problem reports for tag 'kqueue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/86065 jmg [kqueue] system reboot without sync (and can be securi 3 problems total. Problem reports for tag 'kue': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57453 [kue] [patch] if_kue hangs boot after warm boot if fir f i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO 2 problems total. Problem reports for tag 'lge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31102 wpaul [lge] lge + Pentium III data transmission problem o kern/78072 [lge] [patch] Potential memory leak in lge(4) 2 problems total. Problem reports for tag 'libalias': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/50310 [libalias] [patch] natd / libalias fix to allow dcc re o kern/73034 [libalias] libalias does not handle lowercase port/epr o bin/74450 [libalias] [patch] enable libalias/natd to create skip 3 problems total. Problem reports for tag 'libarchive': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/86742 kientzle [libarchive] [patch] Add archive_open_ to read from a 1 problem total. Problem reports for tag 'libc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/19406 [libc] setenv(3) allocates memory which is not freed b o kern/25886 [libc] cgetset(3) doesn't get cleared when switching d o kern/26486 [libc] [patch] setnetgrent hangs when netgroup contain o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/32098 [libc] semctl() does not propagate permissions o kern/35506 jon [libc] innetgr() doesn't match wildcard fields in NIS- o kern/36902 [libc] [patch] proposed new format code %N for strftim o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42956 [libc] dlclose gives "invalid shared object handle" wh o kern/52907 phk [libc] [patch] more malloc options for debugging progr o kern/56720 [libc] feature request: UNICODE support in Resolver o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/59739 [libc] rmdir(2) and mkdir(2) both return EISDIR for ar s kern/64875 standards [libc] [patch] [feature request] add a system call: fd o kern/68690 [libc] write(2) returns wrong value when EFAULT o kern/69825 [libc] 1st group supplied to setgroups() does not take o kern/69826 [libc] 16th group has no effect when accesing file on o kern/72498 [libc] timestamp code on jailed SMP machine generates o kern/75702 dwmalone [libc] -O5 flag breaks some compiles in /usr/src/lib/l o kern/76398 [libc] stdio can lose data in the presence of signals o kern/77841 [libc] [patch] cast away const in getpublickey() o kern/78756 [libc] [patch] src/lib/libc/nls/fr_FR.ISO8859-1.msg fo s kern/79048 [libc] realloc() copies data even when the size of all o kern/81987 [libc] [patch] memory leaks in libc/rpc o kern/83107 [libc] [patch] libc uuid_compare() doesn't work with l o threa/83914 threads [libc] popen() doesn't work in static threaded program p kern/84740 tjr [libc] regcomp("\254") fails o i386/85242 i386 [libc] [patch] libc contains relocation to the .text s o kern/90333 das [libc] libc/gdtoa::__hldtoa() bug o bin/90736 [libc] dlfunc can not be defined in libc o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o amd64/92889 amd64 [libc] xdr double buffer overflow o kern/93093 [libc] xdr_string might call strlen(3) on NULL o kern/93197 [libc] strptime(3) succeeds on formats it should fail o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind a kern/94827 [libc] mmap with given (void *addr) may lock memory-ma o kern/95002 [libc] hash db source code has a bug which prevents us o kern/96840 [libc] [patch] getgrent() does not return large groups p kern/98111 maxim [libc] [patch] /etc/groups: the parser dies on large g o kern/98414 [libc] fts_read(3) disregards permissions of mounted v 40 problems total. Problem reports for tag 'libc_r': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/81534 threads [libc_r] [patch] libc_r close() will fail on any fd ty 1 problem total. Problem reports for tag 'libcrypt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/75934 [libcrypt] [patch] missing blowfish functionality in p 1 problem total. Problem reports for tag 'libdisk': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/24435 qa [libdisk] changing slice type causes Auto-partition to o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o kern/36916 qa [libdisk] DOS active partition flag lost in libdisk an o kern/96077 [libdisk] memory leak in libdisk(3)'s Disk_Names() p kern/96326 [libdisk] [patch] update to id -> partition name trans o bin/97164 [libdisk] libdisk's Open_Disk() crashes 6 problems total. Problem reports for tag 'libexec': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo 1 problem total. Problem reports for tag 'libexpat': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98618 [libexpat] [patch] src/lib/libexpat is setup for small 1 problem total. Problem reports for tag 'libfetch': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/91973 des [libfetch] [patch] relax fetch(1) reaction on a MODE c o kern/98873 des [libfetch] allow fetch(3) to force using of ipv4 or ip 2 problems total. Problem reports for tag 'libiconv': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35635 [libiconv] [patch] missing dep in libiconv prevents pa s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver 2 problems total. Problem reports for tag 'libkse': S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/73413 trhodes [libkse] [patch] pthread (libkse) library is broken on 1 problem total. Problem reports for tag 'libkvm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/95405 [libkvm] libkvm does not support /dev/fwmem0.0 in Free 1 problem total. Problem reports for tag 'libm': S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/83845 standards [libm] [patch] add log2() and log2f() support for libm o i386/85101 i386 [libm] nearbyint always returns nan o kern/94583 [libm] std::isnan()/std::isinf() are not identical to 3 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 'libpam': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/20333 des [libpam] ftp login fails on unix password when s/key a o kern/76678 rwatson [libpam] [patch] Allow pam_krb5 to authenticate no loc o bin/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from 4 problems total. Problem reports for tag 'libpcap': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. 1 problem total. Problem reports for tag 'libstand': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/93998 [libstand] [patch] panic in libstand when closing raw 2 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 'libthr': S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/85160 threads [libthr] [patch] libobjc + libpthread/libthr crash pro 1 problem total. Problem reports for tag 'libutil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35774 [libutil] logwtmp: Suboptimal auditing possibilities f s kern/38347 [libutil] [patch] [feature request] new library functi o kern/84797 [libutil] [patch] State engine in the libutils propert p bin/96335 delphij [libutil] [patch] ignored NO_INET6 knob 4 problems total. Problem reports for tag 'libz': S Tracker Resp. Description -------------------------------------------------------------------------------- p bin/89012 [libz] FreeBSD-6.0 is still using zlib-1.2.2 o bin/96393 [libz] [patch] assembler implementations for libz on i 2 problems total. Problem reports for tag 'linprocfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94528 [linprocfs] linprocfs /proc/memory reports wrong size 1 problem total. Problem reports for tag 'linux': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu f kern/45023 emulation [linux] [patch] flexlm does not run with linux-base-7, o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/77710 emulation [linux] Linux page fault sigcontext information is wro o kern/90330 [linux] linux_compat /dev system freeze problem o kern/97326 [linux] file descriptor leakage in linux emulation o kern/99068 [linux] Linux emulator crashed by java, when calling i 10 problems total. Problem reports for tag 'lnc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77982 [lnc] [patch] lnc0 can NOT be detected in vmware 4.5.2 o kern/81322 [lnc] [hang] lnc driver causes lockups 2 problems total. Problem reports for tag 'loader': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/39536 i386 [loader] FreeBSD default bootloader does not load from o i386/52581 i386 [loader] boot loaders reading more than one sector at o i386/62003 i386 [loader] [patch] make /boot/loader "reboot" code same o i386/63628 bms [loader] [patch] i386 master boot record to allow boot o i386/65523 i386 [loader] [patch] PXE loader malfunction in multiple PX o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/96927 [loader] Loader(8) cause kernel death on "boot -a" (re 8 problems total. Problem reports for tag 'lpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o kern/27403 [lpt] lpt driver doesn't handle flags anymore o kern/34568 [lpt] turning printer on and off hangs the computer 3 problems total. Problem reports for tag 'mac': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63096 rwatson [mac] [patch] MAC entry point for route manipulation o kern/71677 rwatson [mac] [patch] MAC Biba / IPFW panic 2 problems total. Problem reports for tag 'makedev': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44058 [MAKEDEV] [patch] /dev/ch* is created without group wr s bin/56012 [MAKEDEV] [patch] MAKEDEV does not allow creation of t 2 problems total. Problem reports for tag 'md': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/80136 [md] [crash] mdconfig can reboot the system o kern/81161 [md] Images mounted through mdconfig on a read-only fs o kern/87255 [md] [panic] large malloc-backed mfs crashes the syste o kern/89355 [md] mdconfig -t vnode filesystem mount problem o kern/92269 [md] [panic] panic with mdconfig and mount_cd9660 o kern/92292 [md] [hang] Heavy IO on a md-backed filesystem on a sn 6 problems total. Problem reports for tag 'mem': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71334 [mem] [patch] mem_range_attr_{set|get} are no longer k 1 problem total. Problem reports for tag 'mfi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok 1 problem total. Problem reports for tag 'mfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/50856 [mfs] panic if mounting /tmp as mfs with soft-updates o kern/52445 [mfs] panic when mounting floppy on MFS filesystem o kern/57195 [mfs] mount_mfs -i 512 => panic? 3 problems total. Problem reports for tag 'mii': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/76710 [mii] [patch] rgephy does not deal with status properl 1 problem total. Problem reports for tag 'mlx': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/84163 [mlx] 6.0-BETA1 mlx driver don't find any drive 1 problem total. Problem reports for tag 'mly': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/55603 i386 [mly] unable to reboot when system runs from Mylex A35 s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di 2 problems total. Problem reports for tag 'mmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68765 [mmap] a little data can be stored beyond EOF. 1 problem total. Problem reports for tag 'modules': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/29626 [modules] loading a module that is already compiled in o kern/48758 [modules] kldunload if_{nic} can cause kernel panic o kern/48976 [modules] nwfs.ko oddity o misc/60503 [modules] small error in modules installation o kern/62502 [modules] panic under double loading vinum.ko module o o kern/64903 [modules] panic: multiple kldload of a module compiled o kern/68076 [modules] Page fault when the sequence "kldunload ucom o kern/69502 [modules] kldload will load modules that are in the st o kern/70401 darrenr [modules] Could not load ipl.ko when no INET6 in the k o kern/74549 [modules] [patch] Allow third party KLDs (eg ports) to o kern/74809 [modules] [panic] smbfs panic if multiply mounted o kern/83017 [modules] snd_ich freezes system when being kldload'ed s kern/83738 jkoshy [modules] kldload hwpmc.ko fails with 'link_elf: symbo o kern/84052 [modules] [hang] 5.4-STABLE - kldunload snd_ich freeze o kern/88659 ipfw [modules] ipfw and ip6fw do not work properly as modul o kern/88709 [modules] [panic] sysctl -a after kldunload fdc panics o kern/88823 [modules] atapicam - kernel trap 12 on loading and unl o kern/95287 [modules] When using NETSMB without SMBFS the smbfs kl o kern/96346 [modules] [patch] disable build of modules that are al 19 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 -------------------------------------------------------------------------------- o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o kern/89166 [mouse] jumpy mouse movement o kern/89258 [mouse] synaptic touchpad support "worse" with hw.psm. o kern/97918 [mouse] Scrollwheel on MX700 Mouse does not work 4 problems total. Problem reports for tag 'mpt': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/67047 i386 [mpt] mpt driver does not recognize messages from LSI o amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when booting f kern/91160 mjacob [mpt] system hangs with: mpt0: Request 0xffffffff89b96 o kern/96040 [mpt] LSI1030 mpt0: bullet missed in timeout 4 problems total. Problem reports for tag 'msdosfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c a kern/21807 [msdosfs] [patch] Make System attribute correspond to a kern/21808 [msdosfs] [patch] msdosfs incorrectly handles vnode lo o kern/45558 [msdosfs] mdconfig and msdosfs make fs writes hang o kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption fix o kern/62762 trhodes [msdosfs] Fsync for msdos fs does not sync entries o kern/67326 [msdosfs] crash after attempt to mount write protected o kern/68719 [msdosfs] [patch] poor performance with msdosfs and US o kern/70096 [msdosfs] [patch] full msdos file system causes corrup o amd64/73322 amd64 [msdosfs] [hang] unarchiving /etc to msdosfs locks up o kern/79441 [msdosfs] problem writing on mounted msdos-fs at /mnt o amd64/84930 amd64 [msdosfs] something wrong with msdosfs on amd64 o kern/85366 [msdosfs] [patch] MSDOSFS doesn't mark volume "clean" f kern/85649 rodrigc [msdosfs] [patch] allow mounting msdos files systems a o kern/86655 [msdosfs] [patch] msdosfs incorrectly handles NT 8.3 c o kern/87368 [msdosfs] fat32 is very slow o kern/91242 [msdosfs] panic: rofs mod when remounting disk o kern/93634 [msdosfs] False access to renamed files/directories (c o kern/93860 [msdosfs] [patch] sectors-per-track limit of MSDOSFS t o kern/95738 [msdosfs] no support for big msdos disks 20 problems total. Problem reports for tag 'nanobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/96746 [nanobsd] [patch] Configuration changes and README for 1 problem total. Problem reports for tag 'ncurses': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/84219 [ncurses] [patch] ncurses.h wchar_t confliction 1 problem total. Problem reports for tag 'ndis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73224 wpaul [ndis] [patch] Lock order reversal in ntoskrnl_timerca o kern/78382 wpaul [ndis] dhclient on ndis0 causes kernel panic o i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argument (regress o i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacketStack o kern/88882 [ndis] ndis IF tx/rx and other problems in 6.0-R (regr o kern/88937 [ndis] ifconfig ndis does not show the correct mode o kern/89738 [ndis] [hang] Can't make WL8000PCM wifi card work with o kern/89880 wpaul [ndis] ndis interface stops rx/tx while large text tra o kern/95392 [ndis] Kernel panic loading ndisgen-created device dri 9 problems total. Problem reports for tag 'net': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/12071 fanf [net] [patch] new function: large scale IP aliasing s kern/68692 andre [net] [patch] Move ARP out of routing table o kern/76432 gnn [net] [patch] recursive locking in the network stack o kern/85648 [net] [patch] provide more specific default network dr o kern/90096 [net] [patch] arp mixup if carp and bridge used o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad o kern/92690 andre [net] slowstart_flightsize ignored in 6-STABLE 7 problems total. Problem reports for tag 'net80211': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/61415 [net80211] [patch] disable broadcast ssid if_wi and di o kern/95462 sam [net80211] Memory leak in ieee 802.11 stack 2 problems total. Problem reports for tag 'netatalk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/4184 [netatalk] [patch] minor nits in sys/netatalk 1 problem total. Problem reports for tag 'netgraph': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63863 glebius [netgraph] [patch] feature request: implement NGM_ELEC o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message f kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o kern/82188 [netgraph] [patch] ng_fec interface not running after o kern/82189 [netgraph] [patch] ng_fec interface - problems with co o kern/82881 [netgraph] [panic] ng_fec(4) causes kernel panic after o kern/87421 [netgraph] [panic]: ng_ether + ng_eiface + if_bridge o kern/91419 [netgraph] libnetgraph/debug.c compile error on sparc6 o kern/95417 [netgraph] [patch] ng_fec doesn't allow jumbo packets o kern/97306 [netgraph] NG_L2TP locks after connection with failed p kern/98529 glebius [netgraph] False "ng_generic_msg: number of nodes chan o kern/98875 [netgraph] ng_netflow not send data to flow collector 13 problems total. Problem reports for tag 'netinet': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/52585 bms [netinet] [patch] Kernel panic with ipfw2 and syncooki a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat s kern/68110 hsu [netinet] [patch] RFC 3522 for -HEAD o kern/72396 [netinet] [patch] Incorrect network accounting with al o kern/74935 qingli [netinet] [patch] TCP simultaneous open fails. o kern/75122 andre [netinet] [patch] Incorrect inflight bandwidth calcula o kern/78227 [netinet] [patch] Destroying a network interface leaks o kern/90155 [netinet] [patch] use sysctl(8) to control hardware ch p kern/91412 andre [netinet] [patch] Problem with PMTU Discovery / DF / I p kern/91851 andre [netinet] [patch] cannot collect multicast upcall mess o kern/93236 dwmalone [netinet] [patch] Received out of window SYN in ESTABL o kern/94249 andre [netinet] Inconsistent use of time_second & time_uptim o kern/95031 [netinet] [patch] routing table doesn't update corectl o kern/95277 [netinet] IP Encapsulation mask_match() returns wrong o kern/98799 [netinet] fastforwarding routes packets to network ip 15 problems total. Problem reports for tag 'netinet6': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/72217 [netinet6] [patch] Bug in calculation of the parameter o kern/93910 [netinet6] Kernel bug (Crash), possibly ipv6-related o kern/95957 gnn [netinet6] [patch] missing check for failed memory all o kern/98597 [netinet6] Bug in FreeBSD 6.1 IPv6 link-local DAD proc 4 problems total. Problem reports for tag 'netipsec': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ o kern/95307 gnn [netipsec] Panic (race condition?) in ipsec_process_do 2 problems total. Problem reports for tag 'newfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77181 [newfs] [patch] newfs -g largevalue, mkdir, panic 1 problem total. Problem reports for tag 'nfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 length files a kern/14712 iedowse [nfs] root has access to NFS mounted directories with s kern/17108 [nfs] SecureRPC not supported in mount_nfs command s conf/17540 cel [nfs] NIS host lookups cause NFS mounts to wedge at bo o kern/19909 [nfs] Problem with NFS client in 4.0-STABLE o kern/21222 [nfs] wrong behavior of concurrent mmap()s on NFS file o bin/22291 cel [nfs] getcwd() fails on recently-modified NFS-mounted o conf/22308 [nfs] mounting NFS during boot blocks if host map come a kern/26142 cel [nfs] Unlink fails on NFS mounted filesystem o kern/27232 cel [nfs] On NFSv3 mounted filesystems, stat returns st_bl o kern/30971 peter [nfs] NFS client modification time resolution is not h o kern/31380 cel [nfs] NFS rootfs mount failure message too cryptic o kern/31790 cel [nfs] problem with NFS and jail() o kern/32668 cel [nfs] NFS directory removal problems manifested in por o kern/33203 [nfs] "got bad cookie" errors on NFS client o kern/35669 cel [nfs] NFSROOT breaks without a gateway o kern/38872 cel [nfs] nfs code ignores possibility of MGET(M_WAIT) fai o kern/41216 cel [nfs] Get "NFS append race" error o kern/43474 [nfs] [patch] dhcp.* values not set in kenv by bootp c o kern/43954 cel [nfs] nfs-blocked process can't return or be interrupt p kern/44336 [nfs] NFSv3 client broken - security problem with attr o kern/44580 cel [nfs] NFS updates file access time when file is modifi o kern/48894 [nfs] Suggested improvements to the NFS read-ahead heu o kern/52936 [nfs] Huge writes to nfs exported FAT filesystems caus o kern/54383 net [nfs] [patch] NFS root configurations without dynamic a kern/57696 cel [nfs] NFS client readdir terminates prematurely if ren a kern/62278 iedowse [nfs] NFS server may not set eof flag when reading las a kern/64816 peadar [nfs] mmap and/or ftruncate does not work correctly on o kern/66611 [nfs] Crashing NFS servers (with workaround) o kern/66786 [nfs] panic: exporting msdosfs causes nfs to panic o kern/67545 [nfs] NFS Diskless Mount Option Suggestion o kern/70708 [nfs] gcore/procfs not finding /proc/pid/file on repea o kern/71391 [nfs] [panic] md via NFS file + mount -t ntfs: panic: o kern/72504 [nfs] nfsd result mbufs-overruns f kern/72630 [nfs] [hang] NFS copy of large file crash/hangs 5.2.1 o kern/73740 [nfs] [panic] 5-3-R#3 panic when accessing nfs exporte o amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32/64-bit confu o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/77432 cel [nfs] [patch] It is not possible to load nfs4client.ko o kern/77902 cel [nfs] NFS client should use VA_UTIMES_NULL to determin o kern/78673 cel [nfs] [patch] nfs client open resets attrstamp ever if o kern/78884 cel [nfs] [patch] nfs client cache negative lookups o kern/79208 cel [nfs] Deadlock or starvation doing heavy NFS writes wi o kern/79214 cel [nfs] iozone hurts tcp-based NFS o kern/79336 cel [nfs] NFS client doesn't detect file updates on Novell o kern/79700 cel [nfs] suspending nfs file access hangs other access to o kern/81770 cel [nfs] Always "NFS append race" at every NFS mount with o kern/82805 cel [nfs] [panic] sched_switch ched_4bsd.c:865 / nfs_inact o kern/84500 cel [nfs] [panic] nfsv4 memory allocation panic o kern/84673 cel [nfs] NFS client problem "Stale NFS file handle" o kern/84953 kuriyama [nfs] NFS locking issue in RELENG_6/i386/SMP o kern/84964 cel [nfs] nfs4 mount doesn't handle NFS4ERR_GRACE o kern/84965 cel [nfs] nfs4 mount generates NFS4ERR_BAD_SEQID o kern/84968 cel [nfs] programs on nfs4 mounts won't execute o kern/85894 cel [nfs] [panic] nfs_timer / nfs_socket.c:1146 panic o kern/86319 cel [nfs] [feature request] support a "noac" NFS mount fla o kern/86944 cel [nfs] [patch] When I use FreeBSD with NFS client, clos o kern/88320 [nfs] ypxfr(8) talks IPv6 to IPv4-only portmap -> ypin p kern/88856 rwatson [nfs] XDR/RPC breaks when sending msgs > 9000 bytes o kern/94256 cel [nfs] nfs locking/rpc.lockd doesn't understand file de o kern/94830 cel [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/97329 matteo [nfs] [patch] code simplification o kern/97686 [nfs] massive NFS server performance break under "opti p bin/97768 rodrigc [nfs] NFS rpc.lockd will die automatically f kern/98749 kib [nfs] NFS and QUOTA are bad bedfellows 65 problems total. Problem reports for tag 'nge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31940 [nge] nge(4) gigabit adapter link reset and slow trans o kern/41720 [nge] if_nge_load=YES make system not bootable o kern/90279 [nge] Appletalk and 0x090007 OUI enet frames can't pas 3 problems total. Problem reports for tag 'nis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17310 [nis] [patch] NIS host name resolving may loop forever o kern/34842 [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/40215 wpaul [nis] NIS host search not terminate o kern/44578 [nis] getnetgrent fails to read NIS netgroup map o kern/45026 [nis] Can't set next password change date on NIS serve o bin/51628 [nis] ypmatch doesn't match keys in legacy NIS servers o kern/61774 [nis] nis security issue o i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] o kern/71683 [nis] NIS/NFS problem [4.8] o conf/72592 [nis] NIS Domain Master fails as client of itself p kern/86693 maxim [nis] [patch] inconsistency between getusershell.c and 12 problems total. Problem reports for tag 'notes': S Tracker Resp. Description -------------------------------------------------------------------------------- f i386/89568 i386 [NOTES] XBOX options missing from NOTES o kern/90181 [NOTES] [patch] IPSEC_FILTERGIF documentation is incom 2 problems total. Problem reports for tag 'ntfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-formatted fs cause o kern/71774 [ntfs] NTFS cannot "see" files on a WinXP filesystem o kern/73484 [ntfs] Kernel panic when doing `ls` from the client si o kern/73514 [ntfs] [patch] mount_ntfs: can't access to a large fil o kern/80519 [ntfs] Write capability for ntfs filesystems does not o kern/86965 [ntfs] NTFS driver returns incorrect 'number of links' o kern/89966 rodrigc [ntfs] [panic] mounting ntfs causes kernel panic in so o kern/92000 [ntfs] [panic] Panic caused by mounting mounted NTFS p o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97494 [ntfs] Cannot access large file on NTFS volume o kern/99290 [ntfs] mount_ntfs ignorant of cluster sizes 11 problems total. Problem reports for tag 'ntp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/92839 roberto [ntp] [patch] contrib/ntp PARSE buffer overrun 1 problem total. Problem reports for tag 'nullfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/51583 [nullfs] [patch] allow to work with devices and socket o kern/59945 [nullfs] [patch] nullfs bug: reboot after panic: null_ p kern/63662 [nullfs] using read-only NULLFS leads to panic. gdb ou o bin/94045 [nullfs] dump(8) seg-fault on nullfs o kern/94269 [nullfs] procfs shows wrong data if executable is runn 5 problems total. Problem reports for tag 'nve': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) p kern/97063 obrien [nve] [patch] Added DEFINE to if_nve.c/if_nvereg.h to 2 problems total. Problem reports for tag 'nwfs': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/59211 [nwfs] System crashes when moving files from NWFS moun o kern/65920 [nwfs] Mounted Netware filesystem behaves strange o kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when mounting nwfs o kern/92750 [nwfs] Files in mounted Netware filesystem drop in and 4 problems total. Problem reports for tag 'ohci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94146 [ohci] fwohci parity error crashes kernel on boot 1 problem total. Problem reports for tag 'orm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82978 [orm] [hang] FreeBSD hangs loading orm(4) only after r 1 problem total. Problem reports for tag 'pam': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66095 [pam] template_user is broken in pam_radius o kern/83099 des [pam] pam_login_access change causes cyrus-sasl-saslau o kern/88150 des [pam] PAM does not search /usr/local/lib for modules o kern/94978 [pam] pam_opie module option without "no_fake_prompts" 4 problems total. Problem reports for tag 'pccard': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/41364 imp [pccard] NewMedia "Bus Toaster" SCSI card w/ Advansys o conf/55470 [pccard] [patch] new pccard.conf entry (I-O DATA WN-B1 o kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and clash on notebo o kern/67763 [pccard] [patch] PCMCIA: MELCO manufacturer code shoul o kern/71608 [pccard] XIRCOM REM56-100 Ethernet 10/100 can't config o kern/74498 [pccard] [patch] new CIS id for Intersil WiFi, pccard o kern/75298 [pccard] [patch] add missing device id for pccard brid o kern/82464 [pccard] Sony Ericsson GC75 GPRS MODEM not recognized o kern/89878 [pccard] [patch] pccard.c:pccard_safe_quote() unsafe o kern/92070 imp [pccard] wi0: No irq?! with LG 11Mbps Wireless LAN PCI o kern/93431 imp [pccard] dc interface attach failed after upgrade to 6 12 problems total. Problem reports for tag 'pccbb': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91919 [pccbb] pccbb does not supply appropriate voltage 1 problem total. Problem reports for tag 'pci': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o kern/60982 [pci] [patch] ID for VIA 686A Power Management Unit (f o kern/65355 [pci] [patch] TC1000 serial ports need enabling o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m p kern/79139 rodrigc [pci] [patch] Support for more PCIe chipsets o kern/79266 [pci] [patch] RELENG_4 pci CONF1_ENABLE_MSK depend MFC o kern/89837 [pci] PCI code outputs superfluous "failed to enable/d o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/98898 [pci] [patch] fix random sound problems in fm801 10 problems total. Problem reports for tag 'pcm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/90837 [pcm] PCM - ICH6 - device is busy, but old process doe 1 problem total. Problem reports for tag 'pcmcia': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/94898 [pcmcia] GPRS PCMCIA card cause interrupt storm and co 1 problem total. Problem reports for tag 'pcn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/31456 [pcn] [patch] register number definition for AMD PCnet o kern/72966 obrien [pcn] [patch] AMD PCnet/PCI Fast Ethernet driver broke 2 problems total. Problem reports for tag 'pcvt': S Tracker Resp. Description -------------------------------------------------------------------------------- a kern/26348 [pcvt] scon -s, page fault in HP mode o i386/47223 i386 [pcvt] [PATCH] pcvt(4), ESC sequences do not change co o i386/47376 i386 [pcvt] [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd characte o stand/54833 standards [pcvt] more pcvt deficits o stand/54839 standards [pcvt] pcvt deficits o bin/71623 [pcvt] [patch] cleanup of the usr.sbin/pcvt code o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke 7 problems total. Problem reports for tag 'pecoff': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o kern/80742 [pecoff] [patch] Local DoS in sys/compat/pecoff (+ oth 2 problems total. Problem reports for tag 'perfmon': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/24963 i386 [perfmon] perfmon(4) doesn't work on SMP systems 1 problem total. Problem reports for tag 'pf': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/81042 pf [pf] [patch] /etc/pf.os doesn't match FreeBSD 5.3->5.4 o kern/82271 pf [pf] cbq scheduler cause bad latency a kern/84544 dhartmei [pf] [patch] pfvar.h: PF_QNAME_SIZE is too small for c f kern/86072 pf [pf] Packet Filter rule not working properly (with SYN o kern/86848 [pf][multicast] destroying active syncdev leads to pan o kern/92949 pf [pf] PF + ALTQ problems with latency o kern/93825 pf [pf] pf reply-to doesn't work o kern/94992 pf [pf] [patch] pfctl complains about ALTQ missing a kern/98219 thompsa [pf] pf needs a way of matching on decapsulated IPSEC 9 problems total. Problem reports for tag 'pfil': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/73517 [pfil] pfil_hooks (ipfw,pf etc) and ipsec processing o 1 problem total. Problem reports for tag 'picobsd': S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/15876 small [picobsd] PicoBSD message of the day problems o misc/28255 small [picobsd] picobsd documentation still references old . o bin/29725 dwmalone [picobsd] [patch] fixed segmentation fault in simple_h o bin/42084 luigi [picobsd] PicoBSD's 'netstat -i' reports negative Ipkt o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE o kern/42728 small [picobsd] many problems in src/usr.sbin/ppp/* after c o misc/52255 small [picobsd] picobsd build script fails under FreeBSD 5.0 o misc/52256 small [picobsd] picobsd build script does not read in user/s 8 problems total. Problem reports for tag 'pipe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/77493 [pipe] freebsd 5.3 + bash process substitution fails d o kern/93685 [pipe] select on pipe write fails from '0' end 2 problems total. Problem reports for tag 'pkg_install': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/34628 [pkg_install] [patch] pkg-routines ignore the recorded 1 problem total. Problem reports for tag 'pmap': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/31427 davidxu [pmap] [patch] minor incorrect code in sys/i386/i386/p o kern/71109 alc [pmap] [patch] Possible race conditions in pmap.c o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage 3 problems total. Problem reports for tag 'powerd': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE o bin/90903 [powerd] cpufreq inconsistency / powerd broken 2 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 'ppc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74037 [ppc] ppc(4) cannot find parallel port on Toshiba M30 1 problem total. Problem reports for tag 'ppp': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/88619 brian [ppp] ppp chat auth fails ( pppoe ) o kern/93019 [ppp] ppp and tunX problems: no traffic after restarti 2 problems total. Problem reports for tag 'procfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/19535 [procfs] [patch] procfs_rlimit tidyup o kern/86107 [procfs] [panic] unrhdr has N allocations, NULL derefe o kern/90063 [procfs] access("/proc/123", F_OK) doesn't work on >= o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/97505 [procfs] file entry of procfs points to "unknown" 5 problems total. Problem reports for tag 'pseudofs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85137 [pseudofs] [patch] panic due to sleep with held mutex 1 problem total. Problem reports for tag 'psm': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/57230 [psm] [patch] psm(4) incorrectly identifies an Intelli o i386/65528 i386 [psm] mouse cursor disapears on moving o i386/67055 i386 [psm] Mouse (wheel) detection problem on SIS748/964 ba o kern/80844 [psm] [patch] Increase compatibility of psm driver wit o kern/84411 philip [psm] [patch] psm drivers adds bad buttons for Synapti o i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o kern/91339 [psm] mousedriver do not recognize aditional buttons o 7 problems total. Problem reports for tag 'pst': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst 1 problem total. Problem reports for tag 'pts': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92742 cognet [pts] [panic] New pts code causes AMD64 panics (regres 1 problem total. Problem reports for tag 'pty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause 1 problem total. Problem reports for tag 'puc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/42578 [puc] [panic] using PCI serial cards (puc) in SMP mach o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/58953 [puc] [patch] detect NetMOS-based six serial port card o kern/69730 [puc] [patch] puc driver doesn't support PC-Com 8-port o kern/72352 [puc] [patch] Support for VScom PCI-100L is missing fr o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/82901 [puc] ECP mode fails on NetMos ppc card - "PWord not s 7 problems total. Problem reports for tag 'pxe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91719 [pxe] BZ2_bzDecompress returned -3 error on loading bz o kern/91720 [pxe] pxeboot always tries to do an rpc call to an nfs 2 problems total. Problem reports for tag 'radeon': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/86080 amd64 [radeon] [hang] radeon DRI causes system hang on amd64 o kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad 2 problems total. Problem reports for tag 'ral': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/82456 [ral] WITNESS warning/backtrace in if_ral o kern/95519 [ral] ral0 could not map mbuf 2 problems total. Problem reports for tag 're': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68514 [re] Realtek driver halts on oversized frames o i386/70832 i386 [re] serious problems with RealTek NIC using re0 drive o kern/76551 [re] [patch] re0: watchdog timeout o kern/80005 [re] re(4) network interface _very_ unpredictable work o kern/81019 [re] re(4) RealTek 8169S32 behaves erratically o i386/83735 i386 [re] network card (realtek 8139) and sound card (CMI87 o kern/84584 [re] re(4) spends too much time in interrupt handler ( o kern/91942 [re] [panic] ifconfig causes panic on re(4) o kern/93893 [re] Boot panic from Netgear GA311 o kern/94082 [re] [patch] USR 997902 Gig-Ethernet card not recogniz o kern/96322 [re] re driver false positives on the loopback test 11 problems total. Problem reports for tag 'resolver': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/74314 [resolver] DNS resolver broken under certain jail cond 1 problem total. Problem reports for tag 'rl': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/64594 glebius [rl] 5.2-CURRENT: driver 'rl' (RealTek 8129/8139 Fast o kern/69092 [rl] kernel: rl0: watchdog timeout o i386/74966 i386 [rl] Realtek driver seems to misinterpret some packets o kern/75312 [rl] Built-in RTL8281BL on Asus Pundit AB P2800 is not o kern/76081 [rl] [patch] Add support for CardBUS NIC FNW3603TX o i386/76948 i386 [rl] Slow network with rl0 o kern/92744 [rl] problems with a realtek network card on a 6.0 rel 7 problems total. Problem reports for tag 'rp': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/28975 [rp] RocketPort problems o kern/44202 [rp] [patch] -stable rp driver does not work with mult 2 problems total. Problem reports for tag 'rpc': S Tracker Resp. Description -------------------------------------------------------------------------------- f bin/30661 alfred [rpc] [patch] FreeBSD-current fails to do partial NFS s kern/56461 [rpc] FreeBSD client rpc.lockd incompatible with Linux o bin/70974 [rpc] SIGSEGV in rpc.lockd o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/94252 [rpc] rpc.lockd cannot cancel lock requests o bin/94258 [rpc] O_NONBLOCK may block with rpc.lockd s bin/94892 [rpc] rpc.lockd does not interoperate with Solaris 10 o bin/94920 [rpc] rpc.statd(8) conflict with cups over tcp and udp o kern/95247 [rpc] NFS file locking problem, rpc.lockd seems to be o kern/96242 [rpc] rpcbind ignores NO_INET6=yes in make.conf o bin/96412 [rpc] 2 rpc.lockds launched at boot ? blocking problem o bin/98500 [rpc] rpc.lockd(+statd) bind to any ip 12 problems total. Problem reports for tag 'rtc': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63431 [rtc] motherboard going to suspend mode stops system c o kern/70649 [rtc] system clock slows down when heavily loaded 2 problems total. Problem reports for tag 'rtld': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88117 [rtld] [patch] support of $ORIGIN in rtld-elf. 1 problem total. Problem reports for tag 'sched_ule': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/71421 jeff [sched_ule] [hang] filesystem operations lockups o kern/71827 jeff [sched_ule] [panic] Running java applications causes k o kern/72560 jeff [sched_ule] [patch] small cleanup of SCHED_ULE o kern/72659 jeff [sched_ule] [patch] little bug in sched_ule interactiv o kern/73225 jeff [sched_ule] [panic] reproducable Page Fault o kern/78444 jeff [sched_ule] doesn't keep track of the sleep time of a o threa/80887 jeff [sched_ule] ULE with SMP broke libpthread/libthr on 5. o kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/86067 jeff [sched_ule] 6.0-BETA4 hangs while trying idprio 9 problems total. Problem reports for tag 'scsi': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/7264 gibbs [scsi] Buslogic BT 950 scsi card not detected o kern/13141 se [scsi] Multiple LUN support in NCR driver is broken. o kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 drive if dis o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u 4 problems total. Problem reports for tag 'sebsd': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/66553 linimon [sebsd] SEBSD kernel compilation errors 1 problem total. Problem reports for tag 'sf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/68623 [sf] [patch] sf(4) (Adaptec StarFire) multiple problem 1 problem total. Problem reports for tag 'sio': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/2298 [sio] [patch] support for DSR/DCD swapping on serial p o kern/20410 [sio] sio support for high speed NS16550A, ST16650A an o kern/26261 [sio] silo overflow problem in sio driver o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/51982 [sio] sio1: interrupt-level buffer overflows o kern/65278 ups [sio] [patch] kgdb debugger port initialization destro o kern/81807 [sio] Silo overflows with serial multiport cards o kern/87845 [sio] [patch] sio(4) should on probe return BUS_PROBE_ o i386/89383 i386 [sio] [panic] page fault o kern/97665 [sio] hang in sio driver 10 problems total. Problem reports for tag 'sis': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35442 [sis] [patch] Problem transmitting runts in if_sis dri o kern/35511 [sis] sis(4) multicast filtering doesn't pass some App o kern/36517 [sis] sis driver can't map ports/memory for NetGear FA o i386/60633 i386 [sis] SIS motherboard with the SIS 5591 (591) ATA chip o kern/64556 [sis] if_sis short cable fix problems with NetGear FA3 o kern/77631 [sis] sis network driver broken in 5.3 o amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not work on amd64 o kern/83807 [sis] [patch] if_sis: Wake On Lan support for FreeBSD o kern/89633 [sis] [panic] if_sis panic under extended load in 6.0- 9 problems total. Problem reports for tag 'sk': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/65817 [sk] [panic] kernel panic with GENERIC 5.2.1 and SysKo o kern/72997 [sk] Network performance down [6-CURRENT] o kern/96743 [sk] [patch] broken 32-bit register operations 3 problems total. Problem reports for tag 'smbfs': S Tracker Resp. Description -------------------------------------------------------------------------------- p kern/36038 [smbfs] sendfile(2) on smbfs fails, exposes kernel mem o kern/36566 [smbfs] System reboot with dead smb mount and umount a kern/39043 [smbfs] Corrupted files on a FAT32 partition o kern/42652 [smbfs] error deleting r/o (by windows) files on smbfs o kern/46017 [smbfs] smb mounts break /etc/periodic/weekly/310.loca o kern/53987 [smbfs] smbfs can't access to files with symbol ¿ in n o kern/55617 [smbfs] Accessing an nsmb-mounted drive via a smb expo o kern/61503 [smbfs] mount_smbfs does not work as non-root o kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User cannot unmount o kern/65901 [smbfs] smbfs fails fsx write/truncate-down/truncate-u o kern/77958 [smbfs] can't delete read-only files via smbfs o kern/78953 [smbfs] [patch] smbfs getdirentries() failure causes C o kern/80088 [smbfs] Incorrect file time setting on NTFS mounted vi o kern/80469 [smbfs] mount_smbfs causes freebsd to reboot o kern/85042 [smbfs] mount_smbfs: can't get handle to requester (no o kern/85326 [smbfs] [panic] saving a file via samba to an overquot o kern/87859 [smbfs] System reboot while umount smbfs. o kern/88266 [smbfs] smbfs does not implement UIO_NOCOPY and sendfi o kern/88657 [smbfs] windows client hang when browsing a samba shar o kern/90815 [smbfs] [patch] SMBFS with character conversions somet o bin/91134 [smbfs] [patch] Preserve access and modification time f kern/93458 [smbfs] mount_smbfs(8) fails with authentication error o kern/94733 [smbfs] smbfs may cause double unlock o kern/94844 [smbfs] mount_smbfs(8) don't work o kern/99363 [smbfs] ïÛÉÂËÁ mount_smb 25 problems total. Problem reports for tag 'smp': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/36943 i386 [smp] [hang] reboot hangs on Tyan Thunder K7 with SMP o kern/67830 [smp] [patch] CPU affinity problem with forked child p o kern/74319 [smp] system reboots after few hours (5.3) o kern/77537 [smp] [hang] Conditional breakpoints hang on SMP machi o i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 = deadlock, n o kern/83406 [smp] em/bge drivers: severe performance loss under SM o amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Areca ARC-1160 r o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in o kern/93461 [smp] Intel 440LX SMP freeze (regression vs. 4.X) o kern/97959 [smp] panic while booting SMP kernel 10 problems total. Problem reports for tag 'snd_csa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/16879 tanimura [snd_csa] csa sound drivers seem to be using shared ir o kern/23546 tanimura [snd_csa] [patch] csa DMA-interrupt problem 2 problems total. Problem reports for tag 'snd_ich': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel 1 problem total. Problem reports for tag 'snd_mss': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/83697 [snd_mss] [patch] support, docs added for full-duplex, o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr 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 'snd_solo': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/99205 multimedia [snd_solo] FreeBSD 6.1 freezes after playing sound wit 1 problem total. Problem reports for tag 'snp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/47359 dd [snp] [panic] panic after kldunload snp 1 problem total. Problem reports for tag 'socket': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/21998 green [socket] [patch] ident only for outgoing connections o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/93914 [socket] panic: uipc 3 o kern/96268 [socket] TCP socket performance drops by 3000% if pack o kern/97921 rwatson [socket] close() socket deadlocks blocked threads 5 problems total. Problem reports for tag 'sound': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/25386 multimedia [sound] Incorrect mixer registers (line & synth) in ne o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. f kern/59208 matk [sound] [patch] reduce pops and crackles and fix selec o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o f kern/66642 multimedia [sound] pcm0: play: 0: play interrupt timeout, channel f kern/72218 multimedia [sound] audio recording broken with emu10k1 on 5.3-bet o kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible f kern/73987 multimedia [sound] Nforce2 MB sound problem o kern/79678 multimedia [sound] sound works except recording from any source o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/80465 multimedia [sound] pcm0:record:0: record interrupt timeout (Acer o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Definition Audio f kern/84507 multimedia [sound] fm801: Not every card supports variable rate f kern/85964 multimedia [sound] Can't play 24 bit audio (Audigy 2 and others) o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup f kern/88820 multimedia [sound] Erratic recognition of VIA 8285 sound card by o kern/90214 multimedia [sound] memory leaks in snd_via8233 o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/92557 multimedia [sound] Contrary to 6.0 release notes, snd_csa does no o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la 29 problems total. Problem reports for tag 'speaker': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == 1 problem total. Problem reports for tag 'ste': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/99064 [ste] [patch] ste driver does not support IC Plus IP10 1 problem total. Problem reports for tag 'svr4': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula 1 problem total. Problem reports for tag 'sym': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load o kern/73289 [sym] Interrupt storm on sym0 o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI 6 problems total. Problem reports for tag 'syscons': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/15436 [syscons] syscons extension: "propellers" o kern/31890 [syscons] [patch] new syscons font o kern/32480 [syscons] Missing graphic characters in syscons font i o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/46973 [syscons] [patch] syscons virtual terminals switching o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q s conf/90082 matteo [syscons] [patch] curses ACS line graphics support for o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH 9 problems total. Problem reports for tag 'sysctl': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/18154 i386 [sysctl] [patch] Add cpu class and features flags sysc f kern/31490 [sysctl] [patch] Panic in sysctl_sysctl_next_ls on emp o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o kern/91023 [sysctl] cpufreq/p4tcc: sysctl: dev.cpu.0.freq: Device o kern/99464 [sysctl] 'sysctl -a' panics at dev2udev 7 problems total. Problem reports for tag 'sysinstall': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/4646 qa [sysinstall] can't fixit with an NFS-mounted CD s bin/7232 qa [sysinstall] suggestion for FreeBSD installation dialo o bin/8867 qa [sysinstall] [patch] /stand/sysinstall core dumps (sig o bin/13936 qa [sysinstall] no clear indication of how much space to o bin/14318 qa [sysinstall] sysinstall upon install has some counter- o bin/15038 qa [sysinstall] easy to not notice that selection lists m o conf/16584 qa [sysinstall] Hostname field too small during install ( o bin/16948 qa [sysinstall] sysinstall/disklabel: bad partition table o bin/17546 qa [sysinstall] sysinstall does not let you configure NIS o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por o bin/20282 qa [sysinstall] sysinstall does not recover some /etc fil o bin/20391 jhb [sysinstall] sysinstall should check debug.boothowto s o bin/20908 qa [sysinstall] /stand/sysinstall too limited in selectio o bin/23098 qa [sysinstall] [patch] if installing on a serial console a bin/23402 qa [sysinstall] upgrade ought to check partition sizes o bin/24907 qa [sysinstall] Options screen at MenuMedia menu problem o bin/26897 qa [sysinstall] 4.3R sysinstall fails to create swap part o bin/26919 qa [sysinstall] fdisk should ONLY set one bootable flag o bin/27216 qa [sysinstall] can not get to shell prompt from serial c f bin/27872 qa [sysinstall] "Load Config" hangs Compaq DL360 when use a bin/28081 qa [sysinstall] /stand/sysinstall errs out if /cdrom/ alr o bin/29375 qa [sysinstall] disk editor gets confused by slices that o bin/29893 qa [sysinstall] suggestions for 4.4 sysinstall o bin/30517 qa [sysinstall] using sysinstall with install.cfg has no o bin/30837 qa [sysinstall] sysinstall doesn't set the schg flag on t o bin/31363 qa [sysinstall] "partition editor" silently corrects part f bin/32144 qa [sysinstall] unattended install with sysinstall doesn' a bin/32375 qa [sysinstall] sysinstall doesn't respect User generated o bin/33370 qa [sysinstall] post-configuration issue o bin/35400 qa [sysinstall] sysinstall could improve manipulation of o bin/35925 qa [sysinstall] fixit floppy cannot be mounted on USB dri a bin/35985 qa [sysinstall] swap double mount o bin/36118 qa [sysinstall] 4.5 Upgrade says it won't touch /usr/src, o bin/36508 qa [sysinstall] installation floppy bug (4.5) o bin/36911 qa [sysinstall] installation floppies miss autoload file o bin/37160 qa [sysinstall] coredumps when trying to load package dat o bin/37710 qa [sysinstall] LAN interface in wrong state after attemp o bin/38055 qa [sysinstall] Groups (creation) item should be before U o bin/38056 qa [sysinstall] User (creation)'s "Member groups" item sh o bin/38057 qa [sysinstall] "install" document doesn't display correc o bin/38478 qa [sysinstall] In Choose Distributions screen, it's diff o bin/38480 qa [sysinstall] sysinstall should prompt for normal users o bin/38582 qa [sysinstall] sysinstall sets newfs flag after changing o bin/38609 qa [sysinstall] sysinstall should know the size of the va o bin/38610 qa [sysinstall] should be able to mount ISO images on DOS o bin/38854 qa [sysinstall] resetting during setup causes the target o bin/39360 qa [sysinstall] if linux emu is added as a dependency (an o bin/39574 qa [sysinstall] error mounting /dev/acd0c on /dist: No su o bin/40260 qa [sysinstall] hang when detecting devices (No CD/DVD de o bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA bridge gets o bin/41238 qa [sysinstall] problems with FreeBSD installation on a d o bin/41757 qa [sysinstall] sysinstall 4.6.x unstable o bin/41850 qa [sysinstall] sysinstall fails to create root filesyste o bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.conf during netb o bin/42022 qa [sysinstall] non-interactive mode prompts when only a o bin/42162 qa [sysinstall] installation crashes, md0c filled up. o bin/42934 qa [sysinstall] installation procedure on install floppie o bin/44915 qa [sysinstall] 'choose installation media' choose CD-ROM o bin/45254 qa [sysinstall] [patch] sysinstall installs things it sho o bin/45565 qa [sysinstall] write error, filesystem full o bin/45608 qa [sysinstall] install should config all ether devices, o bin/46235 rwatson [sysinstall] NTP servers for Finland require updating o bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD drawer locked. o bin/46905 qa [sysinstall] FreeBSD 5.x cannot be installed from mult o bin/47384 qa [sysinstall] sysinstall ignores intended destination d o bin/47908 qa [sysinstall] /stand/sysinstall can't display document f bin/48341 qa [sysinstall] sysinstall deletes mbr although it should o bin/48989 qa [sysinstall] Sysinstall's partition editor gets confu o bin/52271 qa [sysinstall] sysinstall panics in machine with no hard o bin/53131 qa [sysinstall] "ALL" could not turn check BOXes ON at pa o bin/53341 qa [sysinstall] [patch] dump frequency in sysinstall is a o bin/53839 qa [sysinstall] disklabel editor fails on post-install co o bin/56952 re [sysinstall] floppy install error o bin/58951 [sysinstall] some problems with 4.9-RELEASE installati o bin/59708 qa [sysinstall] [patch] add sSMTP support for Mail select o bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS installation o bin/60350 qa [sysinstall] in Choose Distributions screen, "All" doe o bin/61152 qa [sysinstall] installer refuses to mount USB-floppy or o bin/61264 qa [sysinstall] unable To Use VT100 Terminal Emulator (Te o kern/61438 qa [sysinstall] 5.2 nfs tasks running by default after sy o bin/61587 qa [sysinstall] [patch] installation problem, disklabel c o i386/61603 i386 [sysinstall] wrong geometry guessed o bin/61658 qa [sysinstall] 5.2R error "Add of package qt-3.2.1 abort o bin/61890 qa [sysinstall] fdisk(8) uses incorrect calculations for o bin/61937 qa [sysinstall] cannot install 5.2-REL via serial console o bin/62367 qa [sysinstall] 5.2.1-RC installation problems o bin/62375 qa [sysinstall] sysinstall core dump o bin/62702 qa [sysinstall] backup of /etc and /root during sysinstal o bin/62711 qa [sysinstall] installation: "Insert Next CD" Prompt is o bin/62833 qa [sysinstall] can't install: integer divide fault o bin/65546 qa [sysinstall] 4.10-BETA fails to install from NFS o bin/65774 qa [sysinstall] cannot run repair disk when booted from U o bin/66350 qa [sysinstall] sysinstall creates a partition of subtype o bin/66950 qa [sysinstall] upgrading to 4.10-RC3: package conflicts o bin/68047 [sysinstall] unattended install of FreeBSD 5.2.1 does o bin/69942 [sysinstall] sysinstall changes /etc/rc.conf after ins o bin/69986 qa [sysinstall] [patch] no job control in fixit shell on o bin/70002 qa [sysinstall] fails to locate FTP dirs if the OS has pa o bin/71323 qa [sysinstall] FTP download from floppy boot crashes wit o bin/72232 qa [sysinstall] Installer installs gui-enabled cvsup o bin/72895 qa [sysinstall] Sysinstall generates invalid partition ta o sparc/72962 sparc64 [sysinstall] Sysinstall panics on sparc64 if /dev/cd0 o kern/73035 qa [sysinstall] Upgrading from 5.2.1 to 5.3 RC1 fails o bin/73410 [sysinstall] Sysinstall could not allocate disklabel o bin/73511 qa [sysinstall] SCSI drive install failure - RC2 o bin/73617 qa [sysinstall] fdisk editor unmarks active partition o bin/78964 qa [sysinstall] can not write labels to hdd on instalatio o kern/79621 qa [sysinstall] sysinstall does not create a device when o bin/79910 qa [sysinstall] Cannot escape from failed port/package in o bin/80117 qa [sysinstall] [patch] smbfs install option for sysinsta o bin/81323 qa [sysinstall] Error in installation packages "write fai s bin/84084 qa [sysinstall] FreeBSD 4.11-R won't install to 4th part o bin/84208 qa [sysinstall] "Leave the MBR untouched" option not work f bin/84667 qa [sysinstall] annoying installation problem o bin/84668 qa [sysinstall] ssh and sysinstall problem o bin/84674 qa [sysinstall] Installer trying to install bad package t o bin/85367 qa [sysinstall] [patch] fix package categories in index.c o bin/86454 qa [sysinstall] sysinstall terminates with signal 10 if I f bin/86518 qa [sysinstall] USB keyboard not supported o bin/86600 qa [sysinstall] Sysinstall boot manager screen is mislead o bin/86665 qa [sysinstall] sysinstall binary upgrade clobbers named. o bin/86859 qa [sysinstall] Installer should ask about Linux earlier o bin/88826 qa [sysinstall] sysinstall infinity wait for da0 o bin/89144 [sysinstall] failed to install 2 packages on 6.0 disk o bin/90656 qa [sysinstall] 6.0-RELEASE (i386) cannot be installed vi o bin/91205 qa [sysinstall] sysinstall package options should require o bin/93275 qa [sysinstall] Failure to install after restarting insta o bin/93284 secteam [sysinstall] Insecure placement of user ftp into opera o bin/94154 [sysinstall] [patch] add release and architecture to t o bin/94409 qa [sysinstall] [patch] add geom.debugflags-note to diskl o bin/94815 [patch] [sysinstall] Upping the network interface befo o bin/97108 qa [sysinstall] write failure on transfer (wrote -1 bytes o bin/97888 ceri [sysinstall] [patch] sysinstall - give 'distSetCustom' 133 problems total. Problem reports for tag 'tcp': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/92792 [tcp] kernel crash with high number of TCP connections o kern/93378 [tcp] Slow data transfer in Postfix and Cyrus IMAP (wo o kern/94020 andre [tcp] tcp_timer_2msl_tw NULL pointer dereference panic o kern/99188 net [tcp] [patch] FIN in same packet as duplicate ACK is l 4 problems total. Problem reports for tag 'threads': S Tracker Resp. Description -------------------------------------------------------------------------------- s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/91266 threads [threads] Trying sleep, but thread marked as sleeping 2 problems total. Problem reports for tag 'ti': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/40516 [ti] [patch] ti driver has no baudrate set o amd64/63188 amd64 [ti] ti(4) broken on amd64 2 problems total. Problem reports for tag 'tty': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89538 phk [tty] [panic] triggered by "sysctl -a" o kern/95288 [tty] [panic] panic in sys/kern/tty_subr.c putc() 2 problems total. Problem reports for tag 'twa': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/93394 [twa] boot loader hangs in boot-menu on second 8 on 3w 1 problem total. Problem reports for tag 'twe': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/50201 [twe] 3ware RAID 5 resulting in data corruption o kern/61669 [twe] writing to 3ware escalade spends 90% of cpu in s o kern/66185 [twe] twe driver generates gratuitous warning on shutd o kern/70360 [twe] Random lock-ups with 3ware RAID 5 under FreeBSD o kern/72906 [twe] twe0 idefinite wait buffer 5 problems total. Problem reports for tag 'txp': S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/62753 obrien [txp] [panic] txp(4) panics on amd4 o kern/89876 [txp] [patch] txp driver doesn't work with latest firm 2 problems total. Problem reports for tag 'ucom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o kern/86763 [ucom] kernel: ucom0: ucomwritecb: IOERROR 2 problems total. Problem reports for tag 'udav': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task 1 problem total. Problem reports for tag 'udf': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/60089 scottl [udf] UDF filesystem appends garbage to files o i386/63305 i386 [udf] reading udf filesystem on dvd+rw leads to crash/ o kern/65300 [udf] Can't use sendfile(2) to download files in UDF D o kern/77234 [udf] [patch] corrupted data is read from UDF filesyst o kern/78987 scottl [udf] [patch] udf fs: readdir returns error when it sh o kern/84983 scottl [udf] [patch] udf filesystem: stat-ting files could ra o kern/90521 [udf] [patch] UDF driver might calculate a wrong descr o kern/92040 scottl [udf] mmap/cp fails on small file in UDF o kern/97786 [udf] [patch] fs/udf: incorrect timestamps 9 problems total. Problem reports for tag 'ufs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/26323 [ufs] [patch] Quota system creates zero-length files o kern/33940 [ufs] [patch] quotactl allows compromise gid-quotas o kern/48393 mckusick [ufs] ufs2 snapshot code bugs o kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC and 5.1 o bin/73019 [ufs] fsck_ufs: cannot alloc 607016868 bytes for inoin o amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing filesystem w o kern/89991 [ufs] softupdates with mount -ur causes fs UNREFS o kern/91568 [ufs] [panic] writing to UFS/softupdates DVD media in o kern/91572 [ufs] [panic] writing to UFS/softupdates DVD media usi o kern/93435 [ufs] [panic] kernel panic after setting big value of f kern/94261 [ufs] deadlock between ffs_mksnap and mysnc o kern/94769 [ufs] Multiple file deletions on multi-snapshotted fil o kern/94849 [ufs] rename on UFS filesystem is not atomic o kern/95155 [ufs] Creation of UFS snapshot turns 'acls' mount opti 14 problems total. Problem reports for tag 'ugen': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af 5 problems total. Problem reports for tag 'uhid': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o usb/85992 usb [uhid] [patch] USB stops working when trying to read f 2 problems total. Problem reports for tag 'uhub': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/94946 usb [uhub][patch] code dynamic status size for status chan 1 problem total. Problem reports for tag 'uma': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/85971 jeff [uma] [patch] minor optimization to uma 1 problem total. Problem reports for tag 'umapfs': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/74708 [umapfs] [panic] UMAPFS kernel panic 1 problem total. Problem reports for tag 'umass': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/57085 sanpei [umass] umass0 problems, with Sony Vio/USB memory stic o i386/70028 i386 [umass] umass issue in the boot prcess on SONY Laptop o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots f usb/74358 usb [umass] unplugging at boot time an umass device crashe o usb/74771 usb [umass] mounting write-protected umass device as read/ o kern/75764 [umass] [patch] "umass0: Phase Error" - no device for o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/81073 usb [umass] [patch] fix umass NO_GETMAXLUN quirk o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US f usb/89997 usb [umass] [panic] panic on iPod mini detach f usb/91516 usb [umass] umass0 problems, with Freecom Classic SL Hard o usb/93484 usb [umass] [patch] QUIRK: Toshiba TransMemory USB Memorys o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o kern/97174 [patch] [umass] Y-E DATA USB-FDU quirk: no synchronize 15 problems total. Problem reports for tag 'umodem': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work 1 problem total. Problem reports for tag 'ums': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/55555 usb [ums] system freezes with access to /dev/ums0 o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 2 problems total. Problem reports for tag 'unionfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/17819 daichi [unionfs] Build ports on nfs & union mount panics kern a kern/27250 daichi [unionfs] [patch] unionfs filesystem panics in large n o kern/27571 daichi [unionfs] Changing policy of shadowing files and direc s kern/52110 daichi [unionfs] FS corruption when using unionfs s kern/52745 daichi [unionfs] Fatal trap 12: page fault while in kernel mo s kern/54534 daichi [unionfs] unionfs && mfs|md crashing machine a kern/56381 daichi [unionfs] panic: page fault in fifo_close() ... s kern/66066 daichi [unionfs] panic: ufs_direnter: compact2 o kern/66152 daichi [unionfs] laying unionfs over another unionfs mount ca o kern/66829 daichi [unionfs] mounting fdesc union on /dev panics 4.10-pre s kern/67706 daichi [unionfs] cvs update over a union mount slows and then o kern/73094 daichi [unionfs] system runs out of vnodes o bin/75585 matteo [unionfs] mount -p on unionfs results in non parsable o kern/84498 daichi [unionfs] [hang] file system hangs when jail starts if s kern/86596 daichi [unionfs] unionfs -b brokes file modes s kern/89755 daichi [unionfs] [hang] Jailed process deadlocks when using u o kern/91010 daichi [unionfs] [patch] new source code and some changes s kern/97595 daichi [unionfs] FreeBSD 6.1-RELEASE - "lockmgr: locking aga o kern/97699 daichi [unionfs] UNIONFS panic 19 problems total. Problem reports for tag 'uplcom': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o kern/95509 [uplcom] uplcom(4) module load after device plug-in: d o kern/95512 [uplcom] uplcom(4) causes system hangups 3 problems total. Problem reports for tag 'ural': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88182 [ural] wep is broken in ural(4) hostap mode o kern/92083 [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o kern/94373 [ural] if_ural.c:93: error: `USB_PRODUCT_LINKSYS4_HU20 3 problems total. Problem reports for tag 'usb': S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/40948 usb [usb] USB HP CDW8200 does not work f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in f kern/73388 emax [usb] usb-keyboard stops working f usb/73553 usb [usb] Microsoft USB Internet Keyboard not recongized o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac f usb/79656 usb [usb] RHSC interrupts lost o usb/79722 usb [usb] wrong alignments in ehci.h o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o usb/83677 usb [usb] usb controller often not detected (Sun W2100z) o usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." o usb/89954 usb [usb] USB Disk driver race condition? o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o usb/96599 usb [patch] [usb] Sony Handycam DCR-HC32E memory stick slo 40 problems total. Problem reports for tag 'usbdevs': S Tracker Resp. Description -------------------------------------------------------------------------------- f usb/70362 sanpei [usbdevs] [patch] LaCie 160GB USB drive 1 problem total. Problem reports for tag 'uscanner': S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/65428 [uscanner] [panic] uscanner(4)-related repeatable kern 1 problem total. Problem reports for tag 'vfs': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/55297 [vfs] [panic] kernel panic after running XFree86 o kern/68459 [vfs] [patch] Patches to mknod(2) behave more like Lin o kern/74976 [vfs] [panic] 5.3-STABLE: vn_finished_write triggered o kern/78434 [vfs] [patch] vfs_mount: -current does not cdboot o kern/93942 [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o kern/94669 [vfs] [patch] Panic from Failed Removable Media Mount 6 problems total. Problem reports for tag 'vga': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/64114 [vga] [patch] bad vertical refresh for console using R 1 problem total. Problem reports for tag 'vge': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81644 [vge] vge(4) does not work properly when loaded as a K o kern/82497 [vge] vge(4) on AMD64 only works when loaded late, not o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 3 problems total. Problem reports for tag 'vinum': S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/47566 le [vinum] [patch] add vinum status verification to perio f kern/58391 le [vinum] Trap 12 with heavy disk load on ide vinum mirr o kern/79035 le [vinum] gvinum unable to create a striped set of mirro f kern/85329 [vinum] vinum dumpconfig destroys openmask and let Fre 4 problems total. Problem reports for tag 'vm': S Tracker Resp. Description -------------------------------------------------------------------------------- s i386/22944 tegge [vm] [patch] isa_dmainit fails on machines with 512MB o kern/32659 [vm] [patch] vm and vnode leak with vm.swap_idle_enabl o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/42766 i386 [vm] [patch] proposal to perform reboot via jump to BI o kern/70587 [vm] [patch] NULL pointer dereference in vm_pageout_sc o kern/71258 [vm] [patch] anonymous mmappings not always page align o kern/71792 [vm] [patch] Wrong/missing 'goto' target label in cont o kern/78179 [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o kern/78946 [vm] vm_pageout_flush: partially invalid page 9 problems total. Problem reports for tag 'vn': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/44744 [vn] [patch] VN devices can hang system FreeBSD v4.5 1 problem total. Problem reports for tag 'vpd': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/67011 mdodd [vpd] [patch] MFC of vpd driver for IBM xSeries etc 1 problem total. Problem reports for tag 'vr': S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/41138 [vr] vr0 locks up on one hub, OK on another o kern/78388 [vr] vr network drivers cause watchdog timeout o kern/87506 [vr] [patch] Fix alias support on vr interfaces o kern/89305 [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o kern/89864 [vr] [panic] if_vr panic under FreeBSD 6 o kern/90890 [vr] Problems with network: vr0: tx shutdown timeout o kern/93567 [vr] Via Rhine : Asymetric Bandwith o kern/94390 [vr] poor network performance after promiscuous mode i 8 problems total. Problem reports for tag 'wep': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91364 [wep] WF-511 RT2500 Card PCI and WEP 1 problem total. Problem reports for tag 'wi': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/39928 imp [wi] wi0 timeouts and hangs the system while sending d o kern/43625 imp [wi] wi(4) driver hangs after long data transfers o kern/59183 imp [wi] wi problems with wi_cmd o kern/69019 [wi] wlan stalling after 2-3 hrs of moderate traffic o i386/69722 i386 [wi] wi0: init failed, Lucent Technologies WaveLAN/IEE o kern/72924 [wi] 4.10 wi driver timeout problem with Global Sun Te o kern/73871 [wi] Intersil Prism wireless wi0 locks up, "busy bit w o kern/74495 [wi] wi(4) wlan driver device freeze (5.3-STABLE) o kern/75254 [wi] [patch] PRISM3-based adapter ZCOM XI330 doesn't w o kern/75823 [wi] wi0 interface self-destructs after a couple hours o kern/77913 [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) s kern/79323 [wi] authmod setup with ifconfig on dlink wlan card fa o kern/89688 [wi] wi0 cbb remove bug: Danger Will Robinson o i386/90065 i386 [wi] System hangs if wireless card wasn't disabled bef 14 problems total. Problem reports for tag 'wlan': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/88793 [wlan] wlan(4) broken, sends corrupted packets with iw 1 problem total. Problem reports for tag 'wpa': S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/98218 [wpa] wpa_supplicant blacklist not working 1 problem total. Problem reports for tag 'xe': S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE due to Compaq o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o kern/97401 [xe] Xircom CreditCard Ethernet 10/100, attach returne 3 problems total. Problem reports for tag 'xl': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/66564 [xl] 3c920-MV00 PHY detection problem f kern/76207 [xl] [patch] Null pointer dereference in xl_detach() o kern/77239 [xl] 3Com 3CXFEM656C does not seem to be supported by f kern/78791 [xl] xl(4) input errors and speed problem o kern/93791 [xl] xl0: watchdog timeout with 3CFE575BT 5 problems total. Problem reports for tag 'zlib': S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl 1 problem total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jun 26 11:00:56 2006 Return-Path: X-Original-To: freebsd-bugs@freebsd.org Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF94216A417 for ; Mon, 26 Jun 2006 11:00:56 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9117043D60 for ; Mon, 26 Jun 2006 11:00:53 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5QB0r9Z041454 for ; Mon, 26 Jun 2006 11:00:53 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5QB0ht6041410 for freebsd-bugs@freebsd.org; Mon, 26 Jun 2006 11:00:43 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jun 2006 11:00:43 GMT Message-Id: <200606261100.k5QB0ht6041410@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list X-Mailman-Approved-At: Mon, 26 Jun 2006 11:41:27 +0000 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, 26 Jun 2006 11:00:57 -0000 Current FreeBSD problem reports 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. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2001/05/10] kern/27250 daichi [unionfs] [patch] unionfs filesystem pani a [2002/06/08] kern/39043 [smbfs] Corrupted files on a FAT32 partit o [2002/08/16] kern/41723 [2TB] on 1TB fs, copying files to filesys f [2003/02/16] bin/48341 qa [sysinstall] sysinstall deletes mbr altho o [2003/03/23] kern/50201 [twe] 3ware RAID 5 resulting in data corr f [2003/12/12] kern/60175 panic: 5.2-RC: disk errors cause panic in o [2004/04/28] i386/66039 i386 [panic] system panic with file system cor a [2004/05/04] bin/66261 fsck cannot recover filesystem corruption f [2004/05/11] kern/66553 linimon [sebsd] SEBSD kernel compilation errors o [2004/07/07] kern/68757 kan rapid file creation on snapshotted filesy o [2004/08/06] kern/70096 [msdosfs] [patch] full msdos file system o [2004/08/23] kern/70881 re 5.3 beta1 kernel.generic missing from /bo o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi o [2004/10/30] kern/73313 simokawa Maxtor Onetouch drivers hang or corrupt d o [2004/12/20] alpha/75317 alpha [ata] [busdma] ATA DMA broken on PCalpha o [2005/01/05] kern/75844 phk gbde causes disk write errors and subsequ s [2005/01/26] threads/76690threads fork hang in child for (-lc_r & -lthr) o [2005/02/07] kern/77234 [udf] [patch] corrupted data is read from o [2005/05/11] threads/80887jeff [sched_ule] ULE with SMP broke libpthread o [2005/08/02] kern/84498 daichi [unionfs] [hang] file system hangs when j f [2005/08/09] amd64/84693 amd64 Keyboard not recognized during first step o [2005/08/10] usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_ f [2005/08/26] kern/85329 [vinum] vinum dumpconfig destroys openmas o [2005/09/19] i386/86317 i386 Kernel launch results in poweroff [HP zv5 o [2005/09/20] i386/86364 i386 [ata] ATA woes, SATA controller: failed w f [2005/10/07] i386/87026 i386 [hang] Bootup hang on atkbdc on Compaq 18 o [2005/10/10] kern/87191 scottl [aac] [patch] aac(4) panics immediately w o [2005/11/09] kern/88715 [kbd] [hang] new kbd driver in FreeBSD 6. o [2005/11/10] i386/88802 i386 [iwi] [cardbus] CARDBUS related kernel cr o [2005/11/12] bin/88872 [2TB] Error 36 while sysinstall tries to o [2005/11/17] amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing o [2005/12/04] kern/89926 [iwi] [panic] if_iwi : sleeping thread ow o [2005/12/16] kern/90512 [64-bit] Snapshot corruption after fs act o [2006/01/02] i386/91214 i386 [ata] Disk corruption with Asus K8S-LA: b o [2006/01/11] usb/91629 usb usbd_abort_pipe() may result in infinite o [2006/01/11] kern/91631 6.0-RELEASE freeze repetitively o [2006/02/02] kern/92742 cognet [pts] [panic] New pts code causes AMD64 p o [2006/02/27] kern/93903 [aac] aac driver cannot shutdown controll o [2006/03/01] i386/93963 acpi [panic] [patch] ACPI Panic with some ACPI f [2006/03/09] kern/94261 [ufs] deadlock between ffs_mksnap and mys o [2006/03/22] kern/94822 [kbd] [patch] Fix keyboard hang for IBM / o [2006/03/25] kern/94939 [acpi] [patch] reboot(8) fails on IBM / I o [2006/04/05] i386/95365 i386 stability problems: interface not reachab o [2006/04/28] ports/96468 lawrance www/jakarta-tomcat5: Jakarta Tomcat 5 is f [2006/05/23] ports/97693 ports-bugs [PATCH] [SECURITY] www/mod_frontpage2-rtr o [2006/06/22] ports/99325 pav maintainer-update: Update www/frontpage t o [2006/06/24] i386/99408 i386 arp 47 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1997/04/02] bin/3170 vi freaks and dump core if user doesn't e s [1997/10/01] bin/4672 rdist does not do hard links right when t a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/09/11] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme f [1999/09/30] ports/14048 des [patch] doscmd -r doesn't work a [1999/11/04] kern/14712 iedowse [nfs] root has access to NFS mounted dire s [1999/11/17] bin/14946 mjacob rmt - remote magtape protocol o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/02/21] kern/16879 tanimura [snd_csa] csa sound drivers seem to be us o [2000/02/24] bin/16948 qa [sysinstall] sysinstall/disklabel: bad pa o [2000/03/11] kern/17310 [nis] [patch] NIS host name resolving may o [2000/03/17] kern/17422 bde 4.0-STABLE: top: nlist failed s [2000/03/22] conf/17540 cel [nfs] NIS host lookups cause NFS mounts t o [2000/04/06] kern/17819 daichi [unionfs] Build ports on nfs & union moun p [2000/05/29] kern/18874 [2TB] 32bit NFS servers export wrong nega o [2000/06/13] i386/19245 obrien -fexpensive-optimizations buggy (even wit s [2000/06/20] bin/19405 markm telnetd sends DO AUTHENTICATION even if a s [2000/07/08] bin/19773 markm [PATCH] telnet infinite loop depending on o [2000/07/13] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/18] kern/20016 threads pthreads: Cannot set scheduling timer/Can o [2000/07/25] bin/20172 byacc 1.9 fails to generate $default tran o [2000/07/29] bin/20282 qa [sysinstall] sysinstall does not recover s [2000/08/10] bin/20521 mjacob /etc/rmt several problems o [2000/08/16] bin/20633 fdisk doesn't handle LBA correctly o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/29] bin/20912 marcel gdb does not recognise old executables. o [2000/08/31] kern/20958 mdodd [ep] ep0 lockup with ifconfig showing OAC o [2000/09/07] bin/21089 vi silently corrupt open file on SIGINT w o [2000/09/20] kern/21406 [boot] bootinst or booteasy overwrites se o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/22] kern/21463 emulation Linux compatability mode should not allow o [2000/09/29] kern/21642 Compaq Netelligent 10/100 card (TI Thunde a [2000/10/07] kern/21808 [msdosfs] [patch] msdosfs incorrectly han o [2000/10/15] kern/21998 green [socket] [patch] ident only for outgoing o [2000/10/25] bin/22291 cel [nfs] getcwd() fails on recently-modified s [2000/10/30] kern/22417 gibbs [adw] [patch] advansys wide scsi driver d a [2000/11/14] bin/22846 bms Routed does not reflect preference of Int s [2000/11/18] i386/22944 tegge [vm] [patch] isa_dmainit fails on machine o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] bin/23098 qa [sysinstall] [patch] if installing on a s o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/07] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 [patch] dumpon(8) should check its argume o [2001/01/19] bin/24461 Being able to increase the YP timeout wit s [2001/01/20] threads/24472threads libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/25] kern/24629 harti ng_socket failes to declare connected dat s [2001/01/25] threads/24632threads libc_r delicate deviation from libc in ha o [2001/02/10] kern/24982 stack gap usage o [2001/02/11] i386/24997 i386 [biosdisk] [patch] /boot/loader cannot ha o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/18] kern/25886 [libc] cgetset(3) doesn't get cleared whe o [2001/03/20] kern/25950 obrien [asr] Bad drives on asr look zero-length a [2001/03/22] kern/25986 andre Socket would hang at LAST_ACK forever. o [2001/03/24] kern/26048 obrien [asr] 4.3-RC: SMP and asr driver don't w a [2001/03/27] kern/26142 cel [nfs] Unlink fails on NFS mounted filesys o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/10] kern/26486 [libc] [patch] setnetgrent hangs when net o [2001/04/25] bin/26842 dump with h flag takes a very long time a [2001/04/26] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/27] bin/26897 qa [sysinstall] 4.3R sysinstall fails to cre o [2001/05/03] kern/27059 scsi [sym] SCSI subsystem hangs under heavy lo f [2001/05/11] kern/27275 kernel bug ? (negative sbsize) o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/24] docs/27605 doc [patch] Cross-document references ( 512 sybase ASE 11.9.2( o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/10] kern/32668 cel [nfs] NFS directory removal problems mani o [2001/12/11] bin/32686 wosch locate(1) dumps a core file with broken d o [2001/12/22] ports/33080 ume gkrellmvolume interferes with the ability a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea o [2001/12/24] kern/33138 [isa] [patch] pnp problem in 4.3, 4.4, 4. o [2001/12/30] kern/33344 davidxu memory leak in device resource config loa o [2001/12/31] bin/33370 qa [sysinstall] post-configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system s [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories o [2002/01/08] bin/33672 [patch] telnetd and mount_mfs signal hand o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/16] kern/33940 [ufs] [patch] quotactl allows compromise o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/25] bin/34270 man -k could be used to execute any comma o [2002/01/31] kern/34470 bde Modem gets sio1 interrupt-level buffer o s [2002/02/01] threads/34536threads accept() blocks other threads o [2002/02/03] kern/34568 [lpt] turning printer on and off hangs th o [2002/02/11] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] kern/34842 [nis] [patch] VmWare port + NIS causes "b o [2002/02/18] i386/35078 i386 [i386] [patch] Uninitialized pointer dere o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/28] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/03/01] kern/35442 [sis] [patch] Problem transmitting runts o [2002/03/03] kern/35506 jon [libc] innetgr() doesn't match wildcard f o [2002/03/03] kern/35511 [sis] sis(4) multicast filtering doesn't f [2002/03/07] kern/35645 bms Layer 2 switching using default router of o [2002/03/08] kern/35669 cel [nfs] NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/14] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/15] bin/35925 qa [sysinstall] fixit floppy cannot be mount a [2002/03/16] bin/35985 qa [sysinstall] s